754 Posted Topics
Re: Tell us the wattage and we can tell you if thats the problem. I use a 400watt with my P4 and 5900FX card, 2cdroms, 4hdd. I had the same setup before with dual athlons instead, but 400 wasn't enough for it once I added the FX card. | |
Re: Java's executable files are .jar files instead of .exe. Different extension, but you can still double-click the file to run the program. | |
Re: [QUOTE] The META tags being properly set up is important [/QUOTE] I believe a lot of search engines are beginning to use other methods than the META tags. | |
Re: I use Java, but I feel it shouldn't be used on webpages for 99% of the time, there's just no reason to. | |
Re: You have several different types of loops while (condition is true) {} for(variable declaration;while condition is true;variable increment/decrement) { } for(int i=0; i<something; i++) | |
Re: You'll have to read the whole file into memory, make your changes, then rewrite it back out to the file, deleting the old one and recreating the new one. To be safe, recreate the file with a temporary name, then delete the old file, then rename the temp file. | |
Re: I would say c++ is a little harder to learn because of the lack of helpful docs. Java's API docs are the best when compared to other language help files. Aside from that, I don't see any real difficulty challenges, but it depends what you want to learn to do … | |
Re: That might not work. Windows would see you're not the right user for which those files belong to. You won't have permission. Even sticking the harddrive into another machine you won't be able to access them. You might be able to gain "ownership" of the files, but that doesn't always … | |
Re: [QUOTE]Better that than a virus[/QUOTE] I fail to see how that's a good thing? A virus I can kill for free. A new gfx card takes money. | |
Re: Just go to the store and say you need an IDE cable. | |
Re: You can network the two computers, but as far as share processing power, that's up to the software you're using. I know Studio Max has the capability, as with other major 3D modelling packages. I think with photoshop, you'd be able to do little more than use the PC for … | |
![]() | Re: my quietest would be the powerbook. My tower is pretty silent when its cool in the room. But when those fans kick in full blast, I can hear the hum downstairs. I'm so accustomed to the hum of a fan, I never cared much for making them silent. [QUOTE] less … |
Re: [url="http://java.sun.com/docs/books/tutorial/reflect/object/invoke.html"]http://java.sun.com/docs/books/tutorial/reflect/object/invoke.html[/url] | |
Do the g4 powerbooks require a specific brand? Or can I use just about any ddr333 so-dimm? | |
Re: Mac is a waste of money if you want to do games. I'd say save a $1k or two and build a PC if that's all you're going to use one for. But if you must, I'd go for the powerMac G5. | |
Re: If you [i]must[/i] get a laptop for movie editing, get the powerbook. But those only come with 100gb harddrive and 1.67mhz. My friend goes to school for movie editing, and he uses the dual G4 tower with close to a terabyte of harddrive space. If you're serious about movies, you'll … | |
I've had a machine lying around for awhile now and recently decided to install Fedora on it. It used to run redhat fine, but I haven't used the pc in over a year. Sometimes, the computer just sits at a black screen with no signal being sent to the monitor. … | |
Re: I had that issue once, a long long time ago. In my case, it was a memory issue. I either didn't have enough, or had a bad stick, can't remember for sure. | |
i just recently bought my first mac, a powerbook running tiger. Naturally, the laptop keyboard has no print screen key, so how can I take a screenshot into the clipboard? | |
Re: just remember that you'd probably have to code your own jvm into the OS somehow | |
Re: For first time users, I recommend downloading BlueJ. Install JRE 1.4(or 5) SDK into its default directory. Make some class in BlueJ then hit "compile". Right-click and run your main method. | |
Re: See if you can borrow a cpu for testing before you spend the cash. If you still get the error, then you know it just might be only the motherboard. I've also seen ppl install cpu's rotated the wrong way. And yes, the pins only line up one way, which … | |
Re: That's because "parameteManager" doesn't contain anything. "parameteManager" is a panel, that's what you're adding inside of "Chart". The panel is technically still blank, you must add your scrollbars and other panels to it first. Simply stated, add [code]this.add(pane);[/code] at the end of the "parameteManager" contructor. Also, the size of the … | |
Re: You should try here: [url="http://www.j3d.org"]http://www.j3d.org[/url] Or for game related questions in java, [url="http://gamedev.net"]http://gamedev.net[/url] | |
Friend's Dell Dimension 4600 (piece of over-priced junk) what to sh*t and so now I'm trying to fix it. The recovery discs that Dell provides only work within Windows. (defeats the purpose if you ask me) On bootup, it gives me an error about accessing the System folder, on safe … | |
Re: you need to be a little more specific of what you're trying to do. [QUOTE] i want to name a item and give it a color[/QUOTE] that could mean something as simple as this: [code] class Item { String name; Color color; public Item(String name, Color color) { this.name = … | |
Re: Make a class of Quadrilateral, which is any shape with 4 sides. It will have an X and Y for 4 different points. Any shape having 4 sides will have those variables in common. You could then make your Rectangle class which extends the Quadrilateral class. By extending the class, … | |
Is there a way I could create a variable that belongs to a table much like a static variable belongs to a class? So it "thing=1, person=2" were variables belonging to the table structure (not each row), then I could do something like this: SELECT * FROM table WHERE type … | |
Re: If you just have simple, axis-aligned walls, then just compare the distance between the enemy and wall with the size of the enemy. If the distance becomes less, then it has hit the wall. After that, just reverse the direction of the enemy. That's the most simple of collision methods. … | |
Re: it's pretty simple to do. I started php a week ago and already got more than that running. But if you need help, we're all here at daniweb! | |
When running IIS on 2k pro, is there a way to show the current connections, and which files are being accessed? | |
Re: I believe I just saw this on javaboutique.com as well. | |
Re: you're trying to compile the mysql server yourself? huh? | |
Re: Applets do not allow access outside of there local domain. This link might help. [url="http://java.sun.com/sfaq/"]http://java.sun.com/sfaq/[/url] | |
Re: I don't believe you can insert a JTable object into a textPane like that. I could be wrong, but I've never tried to use tables like that. | |
Re: String thing = "asdfasdfadf" thing.replace(thing, "new text"); | |
Re: select votes, rating, votes/sum(votes) as percentage if that doesn't work, then you may need to do a nested select statement, where the inner one gets the sum() first. and whats client code? | |
Re: Sounds like Huffman compression to me. Also sounds like a homework problem. I'd still try to help since it looks like you've tried the problem at least, but its too hard to read without code tags | |
Re: [code] try { PrintWriter out = new PrintWriter(new FileOutputStream(new File(filename))); String text = myTextField.getText(); out.print(text); out.close() } catch(Exception e) {System.out.println(e);} [/code] | |
Re: you'll need a record of all zip codes with their associated city and state. There's a lot. If customers don't have a password or anything to log in with and this just keeps track of them temporarily like a shopping cart or something, then look into sessions. Good tutorials on … | |
Re: [code] numGuesses = 0 while (start) { boolean carryOn = true; String s; int guess = Integer.parseInt(JOptionPane.showInputDialog(null,"pick a number between 1 and 100")); int num = Random.nextInt(UPPER_EASY-LOWER_EASY)+LOWER_EASY; //range between LOWER_EASY and UPPER_EASY System.out.println("For testing purposes the num generated is: "+num); numGuesses++; } [/code] | |
Re: You can store images in a mysql db using blob type, but you shouldn't do that. Instead, store the path of the image. Determine which picture to load based on the search. (many ways to go about that) Say your search engine brings up any results that are similar to … | |
Re: [code]for(RegNumberFound = false; (!RegNumberFound) & ((s = InputAddresses.readLine()) != null);)[/code] Perhaps your loop is working as you want because of this "&". I believe that's the bitwise AND operator and you probably want "&&". | |
Re: The card is rather old and has not had updates in the Drivers for a few versions now. There really is no point in updating them for that card so rollback to the older version as suggested. | |
Re: I got started with php very quickly by using this site. [url="http://phpfreaks.com"]http://phpfreaks.com[/url] | |
Does anyone know of a Highlighter class I can use with JTextArea for HTML code? | |
Re: Depending on the application of your sort, a radix sort might also be considered. Though not the most efficient for smaller arrays, I hear its the fastest for very large arrays. The quick sort works pretty well and fast, and its rather easy to understand so its probably your best … | |
I installed PHPDev5 and can run my php files no problem on localhost. However, since I'm the only who can seem them, I wanted to setup IIS so that my site could be seen by others on the internet. (until i move to an actual dedicated server) I believe the … |
The End.