Posts
 
Reputation
Joined
Last Seen
Ranked #1K
Strength to Increase Rep
+6
Strength to Decrease Rep
-1
89% Quality Score
Upvotes Received
14
Posts with Upvotes
13
Upvoting Members
12
Downvotes Received
2
Posts with Downvotes
2
Downvoting Members
2
6 Commented Posts
0 Endorsements
Ranked #654
~59.4K People Reached
Favorite Forums
Favorite Tags
Member Avatar for jsefraijeen

You can always make a loop and add the the first operator to itself second operator times If you want to be fancier you can << the first operator the largest multiplier of 2 of the second operator and then use the initial loop for the reminder (not multiple of …

Member Avatar for JamesCherrill
0
9K
Member Avatar for mani_1991
Member Avatar for AndrewSD

So a basic question, you won't find any [i]polynomial[/i] library What is the probelm with the code you wrote ?

Member Avatar for George_1
0
1K
Member Avatar for harshInITworld
Member Avatar for diew
Member Avatar for marsangel
Member Avatar for marsangel
0
96
Member Avatar for otherdummy

The garbage collector won't free objects that have still a reference. If it does, and the hell if I know how you figure that out, it is because your code does not have any more links to these objects. Unless you show your code, there is not much we can …

Member Avatar for BestJewSinceJC
0
947
Member Avatar for ceyesuma

ArrayList are not synchronized while Vector are. No way Vactor will become obsolete. And yes you can use Vector of Vector. JTable use them

Member Avatar for ceyesuma
0
902
Member Avatar for nered

If you do not want to use standard Java JComponent and their look and feel why using Java ?

Member Avatar for JamesCherrill
0
104
Member Avatar for bhagawatshinde

JComboBox inside JComboBox ? Never seen that before. I have seen cascaded combobox where selecting an item in the first one will change wat the other one shows but never what you mentionned. Anxious to see your code

Member Avatar for bhagawatshinde
0
76
Member Avatar for 2blew2b

You do nothing with number1 and number2 generated in your actionPerformed() You defined them there. may be you want: number1 = rand.nextInt(10); number2 = rand.nextInt(10); so it will affect your instance variables not the ones created in your actionPerformed()

Member Avatar for pbl
0
146
Member Avatar for Jessurider

Never heard of the SqlConnection() class usually use con = DriverManager.getConnection(dbPath + bdName, "sa", ""); And NetBeans has nothing to do with your problem/ NetBeans is just a fancy GUI editor no need to mention it in your topic title

Member Avatar for pbl
0
278
Member Avatar for trivax

JTextField.getText() will always return a String. I might have a length() of 0 but will never be null

Member Avatar for Ezzaral
0
893
Member Avatar for winecoding

If, for your application, a null String and a zero size String are equivalent you can: [code] if(a == null || a.length() == 0) { } [/code]

Member Avatar for mKorbel
0
155
Member Avatar for curbster

A char can always be converted to an int char x = 'z'; int i = x; as far as basic datatype are concerned you cannot apply a method to them so intLetter = charLetter.parseInt(); is obviously wrong

Member Avatar for curbster
0
1K
Member Avatar for newbie14

cronjob is Unix related java System.currentTimeMillis(); will give you the actual time in millis

Member Avatar for newbie14
0
114
Member Avatar for sirlink99
Member Avatar for sirlink99
0
269
Member Avatar for jsefraijeen

And please a more descriptive topic title "Help" is kind of a completly useless topic title in this forum

Member Avatar for masijade
0
907
Member Avatar for alonewolf23

from System.out.println("\n" + var1,"\n" + var2); to System.out.println("\n" + var1 + "\n" + var2);

Member Avatar for alonewolf23
0
19K
Member Avatar for Feriscool
Member Avatar for tedelston
Member Avatar for tedelston
0
188
Member Avatar for VichuTheWizard

If you want to capture a keystroke it will be done through an ActionListener or a KeyboardListener or an EventListener of some kind all Java methods I am afraid off

Member Avatar for VichuTheWizard
0
194
Member Avatar for newbie14

make sure you put a System.out.println() statement in all your catch clause which will p[rint the error encountered

Member Avatar for newbie14
0
251
Member Avatar for deepakjainmit

Your question does no make sense You miss some basic concept(s) How to configure my car to use shis racks while using a trailer ?

Member Avatar for ~s.o.s~
0
81
Member Avatar for salmanrauf

[url]http://download.oracle.com/javase/tutorial/essential/exceptions/try.html[/url]

Member Avatar for JamesCherrill
0
131
Member Avatar for mani_1991

I'll bet your problem is somewhere else or you have a lot and lot and a lot of data in each of your pane. If it is the case, yes you can. Just add all your pane (JPanel I presume) empty Have a Listener to inform you when a Tab …

Member Avatar for vjcagay
0
162
Member Avatar for musikluver4
Member Avatar for musikluver4
0
59
Member Avatar for skitband

just open the .html file find where the Applet is coming from FTP it back to yoyr local file system jad it

Member Avatar for pbl
0
65
Member Avatar for Janu Sam

What in your terminoly is an "object name" tabbedPane.getSelectedIndex() will tell you which pane is visible

Member Avatar for Janu Sam
0
99
Member Avatar for rohit2

If each Tab has a JTextPane make an array of them then textPane[tabbedPane.getSelectedIndex()] will be the one in use

Member Avatar for pbl
0
100