No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
I'm finishing a masters in human computer interaction and enjoy developing interfaces.
- Interests
- Drums, C#, Psycology, Graphic Design, Gaming
12 Posted Topics
Re: C++ and Perl. Perl can be a really powerful language for networking especially server administration. Although it's mainly used for scripting actual application uses are also possible. My main language is JAVA although I know it's not the best one to know it's what I've done the most work in. | |
I'm trying to write a Btree remove method in JAVA I'm having trouble combining my nodes and then recursing up through the parent does anyone know where I can get some info about this online? | |
Re: I know you fixed it but I recall that C# doesn't allow for boolean values like true and false I'm thinking that was it am I correct? | |
Re: I'm not too sure if this will work but, you can try some crazy casting. double hms = (si / 3600); int remainder = (int)hms; double remainder2 = hms - (double)remainder; Note: it's 4 a.m. so don't quote me on this. My linux machine with java on it is down … | |
Re: To start you'll want to script out the flow of your program. Maybe with a drawing. You have to get a feel for how the block structure will go. For instance: >variables >ask user for dollar input - store dollar input as type double >ask user for cents input - … | |
Re: yea your comparison is badly coded. Your code: if ( number1 == number2 ) if ( number1 > number2 ); this won't work. if(number1 == number2) { string comparison = "your string here"; } elseif(number1 > number2) { string comparison = "your string here"; } that code should work alot … | |
Re: What exactly is this program supposed to do? Please post how the data should look in it's correct form. | |
Re: update your virus scanner and your CWShredder. Run Ad Aware then run SpyBot S&D. Run them Both. Finally run the CWShredder. I think it's Mejin.org for the newest one or just click the update button in the program. You may be getting it from a dropper trojan like Inor which … | |
Re: there seems to be some bad code although I only caught one thing that really stood out. public JTextField[] getFields() { return fields; } your comment said you're returning to the text field but your return type is an array. It doesn't make sense. that should be done with a … | |
Re: did you chmod the executable? chmod o+x I believe is the command. if not chmod x will do it. | |
Re: I don't believe you can do that without getting into system commands that change your background or running an applet all the time on your desktop. You might be able to make an applet on a webpage and use that webpage as an active desktop. although I'm a linux user … | |
Re: I'm not sure what your program design is but it sounds like you'll need to make a seperate class to hold the data within a structure like a tree. So as your tokenizer seperates each token check to see if it's a word or a number then store them in … |
The End.