754 Posted Topics

Member Avatar for Chao

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.

Member Avatar for Willis
0
433
Member Avatar for aripaka

Java's executable files are .jar files instead of .exe. Different extension, but you can still double-click the file to run the program.

Member Avatar for freesoft_2000
0
176
Member Avatar for sabata

[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.

Member Avatar for Phaelax
0
266
Member Avatar for ayk-retail

I use Java, but I feel it shouldn't be used on webpages for 99% of the time, there's just no reason to.

Member Avatar for Phaelax
0
262
Member Avatar for nishad

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++)

Member Avatar for NPH
0
116
Member Avatar for vps

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.

Member Avatar for jwenting
0
171
Member Avatar for ayk-retail

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 …

Member Avatar for Phaelax
0
101
Member Avatar for hashi

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 …

Member Avatar for MartyMcFly
0
126
Member Avatar for eball8

[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.

Member Avatar for MartyMcFly
0
224
Member Avatar for cargenius42
Member Avatar for roskav

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 …

Member Avatar for roskav
0
96
Member Avatar for ingeborgdot@yah

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 …

Member Avatar for newtocustompc
0
200
Member Avatar for Rete

[url="http://java.sun.com/docs/books/tutorial/reflect/object/invoke.html"]http://java.sun.com/docs/books/tutorial/reflect/object/invoke.html[/url]

Member Avatar for Phaelax
0
101
Member Avatar for Phaelax

Do the g4 powerbooks require a specific brand? Or can I use just about any ddr333 so-dimm?

Member Avatar for Cain
0
65
Member Avatar for alex_extreme

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.

Member Avatar for Zachery
0
170
Member Avatar for Skipper O Shiel

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 …

Member Avatar for Phaelax
0
110
Member Avatar for Phaelax

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. …

Member Avatar for JANINE
0
296
Member Avatar for bossfrog

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.

Member Avatar for rockinghorse
0
120
Member Avatar for Phaelax

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?

Member Avatar for kc0arf
0
202
Member Avatar for mmiikkee12

just remember that you'd probably have to code your own jvm into the OS somehow

Member Avatar for Sauce
0
692
Member Avatar for asatrujesus

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.

Member Avatar for asatrujesus
0
443
Member Avatar for mad_butler

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 …

Member Avatar for JANINE
0
295
Member Avatar for mgdz

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 …

Member Avatar for Phaelax
0
180
Member Avatar for ultimate_fusion

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]

Member Avatar for Phaelax
0
132
Member Avatar for Phaelax

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 …

Member Avatar for MartyMcFly
0
109
Member Avatar for ultimate_fusion

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 = …

Member Avatar for Phaelax
0
81
Member Avatar for NewbyChic

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, …

Member Avatar for Phaelax
0
217
Member Avatar for Phaelax

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 …

Member Avatar for Phaelax
0
157
Member Avatar for ultimate_fusion

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. …

Member Avatar for ultimate_fusion
0
179
Member Avatar for JoesToe

wouldn't this question be better asked in the phpbb forums on their website?

Member Avatar for chizy2
0
269
Member Avatar for GR Web FX

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!

Member Avatar for Royalty Hosting
0
247
Member Avatar for Phaelax

When running IIS on 2k pro, is there a way to show the current connections, and which files are being accessed?

Member Avatar for CSharper
0
126
Member Avatar for igf1
Member Avatar for fsn812
Member Avatar for server_crash

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]

Member Avatar for Phaelax
0
143
Member Avatar for freesoft_2000

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.

Member Avatar for Phaelax
0
104
Member Avatar for server_crash
Member Avatar for Paul.Esson
0
332
Member Avatar for rsaicrag

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?

Member Avatar for Phaelax
0
142
Member Avatar for moonduke

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

Member Avatar for Phaelax
0
223
Member Avatar for SyLk

[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]

Member Avatar for Phaelax
0
140
Member Avatar for tenoran
Member Avatar for mrkumar

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 …

Member Avatar for robbyd
0
174
Member Avatar for shak187

[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]

Member Avatar for shak187
0
1K
Member Avatar for probeach424

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 …

Member Avatar for Phaelax
0
80
Member Avatar for sensi

[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 "&&".

Member Avatar for Phaelax
0
245
Member Avatar for 1337p0$3r

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.

Member Avatar for Phaelax
0
207
Member Avatar for IceColdMan

I got started with php very quickly by using this site. [url="http://phpfreaks.com"]http://phpfreaks.com[/url]

Member Avatar for Phaelax
0
164
Member Avatar for Phaelax
Member Avatar for dakkar
0
144
Member Avatar for nabil1983

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 …

Member Avatar for jwenting
0
156
Member Avatar for Phaelax

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 …

Member Avatar for blud
0
86

The End.