Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
100% Quality Score
Upvotes Received
2
Posts with Upvotes
2
Upvoting Members
2
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
0 Endorsements
Ranked #2K
~2K People Reached
Favorite Tags

12 Posted Topics

Member Avatar for moonstar3910
Member Avatar for roxin_phoenix
0
123
Member Avatar for Eagle4Ever

Hmm, I think hacker is a person who enjoys exploring the details of programmable systems and stretching their capabilities, as opposed to most users, who prefer to learn only the minimum necessary. But, cracker is a bad hacker who breaks security for his own profit.

Member Avatar for WaltP
0
220
Member Avatar for LianaN

I think the extension doesn't matter. The program just see the encoding of your file. You can use a simple CSV (Comma Separated Value) to do it. It's an example from my homework: [CODE]Rectangle;40;9;86;78;true;0;0;0 Oval;136;56;279;126;true;0;0;0 Rectangle;60;139;117;203;true;255;51;51 Line;343;174;385;226;true;255;51;51[/CODE] The first value is object type, and the next value is the coordinates, …

Member Avatar for LianaN
0
162
Member Avatar for Nagaratna
Member Avatar for WolfShield

Do you mean open a new window of your application? Hmm, I think you can use this: [CODE=java]Form2 frm = new Form2(); frm.setVisible(true);[/CODE]

Member Avatar for roxin_phoenix
0
149
Member Avatar for eikal

Add: [CODE=java] String[] nameSegment = name.split(); [/CODE] You can access the first, middle, and last name using the array index. For example to print the middle name you can use: [CODE=java] System.out.println(nameSegment[1]);[/CODE]

Member Avatar for privinpt
0
116
Member Avatar for Katana24
Member Avatar for masijade
0
167
Member Avatar for fairy1992224
Member Avatar for scobi

Costumize layout with JPanel. Put a group of radio button on JPanel and add all JPanel in form. Go here for more detail of Layout: [url]http://download.oracle.com/javase/tutorial/uiswing/layout/visual.html[/url]

Member Avatar for scobi
0
222
Member Avatar for roxin_phoenix

Hi all. I'm new in .NET programming. I want to make an application using C# and Microsoft Access. I cannot found any good tutorial about C# and Access. I just want to know how to connect, insert, delete, edit, and update database. Any suggestion for a good site to learn …

Member Avatar for roxin_phoenix
0
459
Member Avatar for mangopearapples

Hi, mangopearapples. I think you have a mistake on your code. Here: [CODE]private title s;[/CODE] is still null. And you make a new variable with the same name here: [CODE=java] public void run(DisplayMode dm){ . . . title s = new title(); setFocusTraversalKeysEnabled(true); moveball.start();[/CODE] You should remove the variable type …

Member Avatar for roxin_phoenix
0
186
Member Avatar for purna501

Well, there's a lot of job for computer science graduate. If you like networking and hacking, you can be a security expert or network expert. Just follow your passion. :D

Member Avatar for roxin_phoenix
0
157

The End.