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
~1K People Reached
Favorite Tags

8 Posted Topics

Member Avatar for Khiladi420

help.. i also have the same problem here. it happened after a power failure. the cdrom sometimes work.

Member Avatar for harleyd
0
164
Member Avatar for babyfrostie

hello, how can I display a data (ex. course) in a drop-down list whenever I add a data? thanks!

Member Avatar for ahmksssv
0
105
Member Avatar for babyfrostie
Member Avatar for babyfrostie
Member Avatar for eena75

can someone teach me how to get the running time of this program?[code] import java.io.*; public class ArrauSample { public static void main(String args[]){ BufferedReader console = new BufferedReader(new InputStreamReader(System.in)); int x=0; int max= 5; int myNum[] = new int[max]; String myString[] = new String[max]; try{ for(x=0; x<max; x++) { …

Member Avatar for mickinator
0
209
Member Avatar for babyfrostie

[CODE] class Queue { int front, rear, max, size; int items[]; public Queue (int s) { front = rear = -1; max=5; size=0; items = new int [max]; } // should we still include the "front" in this section? public boolean enqueue (int x) { if (size==max) return false; else …

Member Avatar for Narue
0
143
Member Avatar for babyfrostie

how can i bubble sort a txt file with some text in it? and then an output txt file should be created to show how much time the bubble sort took to finish the job... thanks..

Member Avatar for PoovenM
0
162
Member Avatar for babyfrostie

need help with the GUI of my program... i want it to be like this: [URL=http://img256.imageshack.us/my.php?image=faceeq9.jpg][IMG]http://img256.imageshack.us/img256/8919/faceeq9.th.jpg[/IMG][/URL] but this is what it shows.. hehe [URL=http://img440.imageshack.us/my.php?image=caym9.jpg][IMG]http://img440.imageshack.us/img440/8486/caym9.th.jpg[/IMG][/URL] im having a hard time with the GridLayout coz i think ie. GridLayout 3,4 doesnt appear to be 3,4.. thankss... [CODE]import java.awt.*; import java.awt.event.*; public class …

Member Avatar for babyfrostie
0
330

The End.