Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #11.1K
Ranked #2K
~14.3K People Reached
Favorite Forums
Favorite Tags

14 Posted Topics

Member Avatar for cpsusie

[QUOTE=BestJewSinceJC;733775]The person who posted above me is completely wrong. Assembly is faster than any other code if you use/code it correctly. It could be that the optimizations the compiler made for the C++ code were good optimizations, whereas the code you wrote was poorly designed and written.[/QUOTE] Best Jew: you …

Member Avatar for Zack_7
0
12K
Member Avatar for BestJewSinceJC

If you make your object Serializable then you can store information about the object in String form. It won't be as readable as "germanShepard" but you could store objects serials somewhere to enter. Doesn't sound too practical. Another thing you can do is make a factory class. The class would …

Member Avatar for ~s.o.s~
0
199
Member Avatar for sudon

[QUOTE=sudon;733135]Greetings to anyone who reads this post. Actually I needed a help. I need to write a program for the Internet Browser application but don't know where to begin at. Could anyone please help me providing the information on topics that I will have to know about. I intend to …

Member Avatar for Jimmy88
0
129
Member Avatar for new_2_java

Try using bigger numbers in set size. 10x20 pixels will give you a really small window.

Member Avatar for BestJewSinceJC
0
236
Member Avatar for Achupa
Member Avatar for jayjaysam0441

It looks like you don't save the input anywhere other than in displayMenu(). None of the other methods can see that input variable. You could have displayMenu() return the character that the user input and then pass that to a printing method. It'll look like: [code] public static String displayMenu(){ …

Member Avatar for jayjaysam0441
-1
146
Member Avatar for flash121

I'd be willing to bet that printf changes the eax register... Have you looked into that?

Member Avatar for flash121
0
144
Member Avatar for mikeregas
Member Avatar for ArkM
0
174
Member Avatar for atman

You don't reassign amount when you call AmountValidate from the main method. [code] amount_c=GetAmount(); amount_c=AmountValidate(amount_c); [/code]

Member Avatar for bionicseraph
0
158
Member Avatar for hajjo

Are you using the fd array to communicate between the two? If so (and I don't see how it works) you are writing using fd[1] and reading using fd[0], could that be it?

Member Avatar for bionicseraph
0
198
Member Avatar for NycNessyness

You could restrict the length of the text field to to chars. Then you could set up a listener event to validate the text field when it looses focus or when they try to submit the form. I can't think of a way to validate the JTextField other than that

Member Avatar for destin
0
105
Member Avatar for Trades
Member Avatar for thebiff

What exactly are you stuck on? Make sure to put your code in [code][/code] tags...

Member Avatar for PoovenM
0
126
Member Avatar for atman

The problem is that your outer loop is checking for 0 to exit. So when you have an error condition you are exiting the loop. Is there a char you enter to exit the program? That's the value that you'll want to use in that loop. I think you'll want …

Member Avatar for bionicseraph
0
150

The End.