- Upvotes Received
- 2
- Posts with Upvotes
- 2
- Upvoting Members
- 2
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
12 Posted Topics
Re: Connect2listener is a variable name. You have to write the variable type. | |
Re: 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. | |
Re: 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, … | |
Re: 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] | |
Re: 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] | |
Re: Yups, thats right. I have no idea how to do that without looping or recursion... | |
| |
Re: 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] | |
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 … | |
Re: 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 … | |
Re: 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 |
The End.