No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
14 Posted Topics
Re: [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 … | |
Re: 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 … | |
Re: [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 … | |
Re: Try using bigger numbers in set size. 10x20 pixels will give you a really small window. | |
Re: All this talk of passing limbs around is somewhat creepy :p | |
Re: 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(){ … | |
Re: I'd be willing to bet that printf changes the eax register... Have you looked into that? | |
Re: What are the errors? I bet you are in the same class as me :p | |
Re: You don't reassign amount when you call AmountValidate from the main method. [code] amount_c=GetAmount(); amount_c=AmountValidate(amount_c); [/code] | |
Re: 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? | |
Re: 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 | |
Re: Are you printing this out to the command line? | |
Re: What exactly are you stuck on? Make sure to put your code in [code][/code] tags... | |
Re: 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 … |
The End.