Posts
 
Reputation
Joined
Last Seen
Ranked #10
Strength to Increase Rep
+17
Strength to Decrease Rep
-4
90% Quality Score
Upvotes Received
944
Posts with Upvotes
777
Upvoting Members
279
Downvotes Received
73
Posts with Downvotes
63
Downvoting Members
49
399 Commented Posts
38 Endorsements
Ranked #29
Ranked #19
~1.92M People Reached
Favorite Tags
Member Avatar for samaru
Member Avatar for Duki

Ham sandwich and chips at work - same as yesterday... and the day before... and the day before... and, yeah, well you get the picture.

Member Avatar for Dani
22
17K
Member Avatar for Lardmeister
Member Avatar for LevelSix

You might want to elaborate a little on "can't get this to work". That's a bit vague.

Member Avatar for Rosayu
0
3K
Member Avatar for makmuhefe
Member Avatar for K3haled
0
9K
Member Avatar for redZERO

Check the [URL="http://java.sun.com/javase/6/docs/api/javax/swing/JOptionPane.html"]API doc for JOptionPane[/URL]. The dialogs have several constructors you can choose from depending on how much you want to specify on it. The docs describe the constants you can supply for each of the parameters.

Member Avatar for Samukelo
0
18K
Member Avatar for Debby0424

He isn't referring to the space between the type and the variable name.[code]String name;[/code]is just fine. It is these[code] int item number; int number of units; int price per unit;[/code]that are not allowed. Generally they would instead be written[code] int itemNumber; int numberOfUnits; int pricePerUnit;[/code]

Member Avatar for Batha
0
7K
Member Avatar for Archenemie

Netbeans does allow you to work in GridBagLayout (or several others) from the designer if you set it yourself. It defaults to GroupLayout though, which is hideous to read.

Member Avatar for dotxyteam
0
2K
Member Avatar for CB8379

Take another look at the calls in those error messages. Does your ProdArray have a getFee() method?

Member Avatar for Kandapatrick19
0
672
Member Avatar for yangyang
Member Avatar for g89

So post your code and actually ask a question. This isn't a homework completion service and no one is going to write detailed instructions on how to complete this.

Member Avatar for Neel_4
0
1K
Member Avatar for kanebt

In your user control panel, choose Edit Options and deselect the email options. [url]http://www.daniweb.com/forums/profile.php?do=editoptions[/url]

Member Avatar for Олег_9
3
3K
Member Avatar for cookie19ks

Post your code within [noparse][code] [/code][/noparse] tags and specific questions regarding the parts that are troubling you. Also consider that your sample text file does not give any hint of a hierarchical relationship between those two entries.

Member Avatar for stultuske
0
9K
Member Avatar for dpaula
Member Avatar for john44
Member Avatar for yash_8
2
1K
Member Avatar for pranitha_dolls

Write an image editor. Java has an extensive image manipulation API :)

Member Avatar for Sharon_5
0
157
Member Avatar for k2k

I think you're probably having a resource location issue. Take a look through this info on loading images with getResource():[url]http://java.sun.com/docs/books/tutorial/uiswing/components/icon.html#getresource[/url]

Member Avatar for JamesCherrill
0
14K
Member Avatar for edcaryl

[url]http://msdn.microsoft.com/msdnmag/issues/07/02/DataPoints/default.aspx[/url] [url]http://www.vbdotnetheaven.com/UploadFile/mahesh/DBControlsVBNET04232005024802AM/DBControlsVBNET.aspx[/url] [url]http://www.developer.com/net/csharp/article.php/3670531[/url]

Member Avatar for vinod_10
0
7K
Member Avatar for WolfShield

You should not have to unzip the jar. Have you added it to the Compile libraries in your Project Properties > Libraries tab?

Member Avatar for Asif_12
0
2K
Member Avatar for jayfaj

[QUOTE=akeous]i need final year topc related to project management and networking or information technol;ogy as a whole[/QUOTE] That's a statement - not a question - and has nothing to do with the original poster. Don't hijack other peoples' threads.

Member Avatar for Nimric
0
959
Member Avatar for vickzbrit

Both operations are covered in the [URL="http://java.sun.com/docs/books/tutorial/jdbc/index.html"]JDBC Tutorial[/URL]. You'll read the values from a ResultSet object to populate the text fields. To update the database, use a PreparedStatement.

Member Avatar for Tri Setya
0
6K
Member Avatar for thenamenoonehas

Only the original poster can mark it solved, and since this was tacked on to the end of a two year old thread, I doubt that person is going to mark it solved for someone else.

Member Avatar for Neetu_1
0
3K
Member Avatar for thecoolman5
Member Avatar for vegaseat

[QUOTE=Salem;508403]Actually, they'll believe anything printed shoved in front of their noses and never bother to conduct even the slightest bit of independent research.[/QUOTE] I believe you. ...

Member Avatar for vegaseat
11
9K
Member Avatar for sciwizeh

Your caret is going to the end of the document because you're removing and re-inserting the entire content. The caret is just staying at the position of the last insert. You can fix that by changing these two lines in your SyntaxDocument2.insertString() method[code] String str2 = super.getText( 0, super.getLength() ); …

Member Avatar for reguieg
0
335
Member Avatar for game123

Are you just wanting it to update as the wait loop runs? Move it into the loop[CODE] private void waitForCompletePlayerSequence() { do { System.out.println("player sequence " + playerSequence); System.out.println("sequence length" + simonSequence.size()); System.out.println("player length " + playerSequence.size()); System.out.println("in waitForcompletePlayerSequence loop"); Utility.pause(500);//note this is in the main thread } while (playerSequence.size() …

Member Avatar for jwow
0
2K
Member Avatar for ~s.o.s~

One more very handy site for code snippet examples on many things: [url=http://www.exampledepot.com/]Java Examples from The Java Developers Almanac 1.4[/url]

Member Avatar for ~s.o.s~
46
6K
Member Avatar for jhamill

Look through the methods on the Character class as well. You may find something useful.

Member Avatar for stultuske
0
3K
Member Avatar for liltrig3

Post your code then and describe what problems you are having. Be sure to place code tags around the code you include.

Member Avatar for stultuske
0
4K
Member Avatar for dwel

This thread was put at the top of the forum for a reason: [url]http://www.daniweb.com/forums/thread99132.html[/url]

Member Avatar for Rajeev Kumar_1
0
468