Forum: Java Jan 4th, 2008 |
| Replies: 17 Views: 2,458 you might want to check if the error is in pryDialog() because to me, your code should not give you an error |
Forum: Windows NT / 2000 / XP Jan 4th, 2008 |
| Replies: 8 Views: 1,058 well i dont want to clone my HDD, the thing is that some how my OS was deleted from my computer and i dont have a recovery disk or a windows cd but i do have the windows key in the back of my... |
Forum: Windows NT / 2000 / XP Jan 1st, 2008 |
| Replies: 8 Views: 1,058 i m trying to make a windows xp cd, i want to know if there is anyway to copy the windows xp in my computer into a cd or IOS so i can use it to install windows xp in an other computer |
Forum: Windows NT / 2000 / XP Dec 28th, 2007 |
| Replies: 8 Views: 1,058 hi everyone, i just want to know if there is any way to create a windows xp cd from my computer with out the boot so i can run it in a computer with an old windows, thanks |
Forum: Java Nov 21st, 2007 |
| Replies: 14 Views: 1,331 if you need to match each digit or read each digit the best way i think is to make the whole number a string an go char by char just use the acsii value to get the exact char |
Forum: C Nov 21st, 2007 |
| Replies: 2 Views: 585 |
Forum: Java Nov 21st, 2007 |
| Replies: 9 Views: 975 to compare the 2nd number with the 3rd number you need to make the variable that equals the 1st number equals to the second number and the variable that equals the 2nd number equal to the new number,... |
Forum: Java Nov 21st, 2007 |
| Replies: 9 Views: 975 int num1=0,nnum,subvalue,addvalue,sum,counter;
i forgot on that line i think if you declare a variable you have to put a ';' after and if you dont declar it then you can do ','
int num = 0'... |
Forum: Java Nov 20th, 2007 |
| Replies: 9 Views: 975 you might wanna past the whole code and numerate each line and mark where you r getting the error |
Forum: Java Nov 20th, 2007 |
| Replies: 10 Views: 3,977 you migh wanna do a binary search and keep some parameters until you find the closest ones
house1: $10k
house2: $25k
house3: &50k and so on and then search through the array or binary tree... |
Forum: C Nov 20th, 2007 |
| Replies: 2 Views: 585 hi, i have to make a IM program with C and i was wondering if anyone knows a way to access dos commands with C, like net send i was thinking to use rpc (remote procedure call) for windows, so if... |
Forum: Java Nov 20th, 2007 |
| Replies: 9 Views: 975 make sure u are using the scanner class right, remember it reads until the first space is u do scanner.next() and if you do scanner.nextInt() will scan the next set of number until it gets to a... |
Forum: Java Oct 30th, 2007 |
| Replies: 5 Views: 2,005 yeah i just realize that i m doing more work than what i was thinking, but the problem that i have is that i have 16 arrays[][] in class and i need to access them individually from an other class and... |
Forum: Java Oct 27th, 2007 |
| Replies: 5 Views: 2,005 |
Forum: Java Oct 27th, 2007 |
| Replies: 5 Views: 2,005 hi, i just want to get some opinions on a queues homework project. i haven't written any code yet, but just want to know if it is possible to create an array[16] items and then that each item has an... |
Forum: Java Oct 27th, 2007 |
| Replies: 4 Views: 958 just remember that when you call a method with in a class you need to give the same number of variables that you declare on the method's name
{
int y = distance(x1, x2, ...., x(n-1), xn);... |
Forum: Java Oct 27th, 2007 |
| Replies: 9 Views: 5,088 if you are trying to exit the program if a condition is met if stop == false
boolean stop = false; //controls if loop below executed while (!stop)
{
have you try an if statement to... |