- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
13 Posted Topics
I would like to recomend the the books [B]Core Java[/B] [I]Volume 1 and 2 [/I]. A really good set of books that covers the most areas you'll need.
Hi I've been working with Java for a while now but there's one basic thing I still don't understand. Java got 4 Access Modifiers [LIST] [*]Default [*]Public [*]Private [*]Protected [/LIST] I know the difference between them, the thing is I don't now why you should use different Modifiers. Wouldn't it …
This site seems to contain some useful information. [URL="http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/"]http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/[/URL]
It's actually nice to get something that looks something similliar to a discussion here in the java forum. So please don't flame his thread, tryh to support him instead.
I wouldn't say that malicious payload is a requirement for a virus. So I would just say that the opposite to a virus would be a program that tried to remove all copies of itself
Please describe your problem a bit more detailed. What are your current knowledge of Java, Should the forum be viewed in a browser or in a standalone app? What have you accomplished so far? Then you may get some help here.
Hello mates. I've made a basic cryptation program and I hoped that I could get some feedback from you guys. I know the cryptation algorithm ain't that secure but that something for a later version ;) And I also wonder what I can do to speed up the cryptation progress. …
I think it's something like this [CODE=Delphi] program ??; var test : array[0..4] of String; l : Integer; begin a[0] := '1'; a[1] := '2'; a[2] := '3'; a[3] := '4'; a[4] := '5'; writeLn('There are ',length(a),' elements in the array'); end. [/CODE]
Hello. I've recently started to explore the world of Java ME, and now ther's only one problem. Compiling. I've installed Java adk 1.6, Sony Ericsson SDK and even some tool I found under Suns Java ME section but the compiler still doesn't find the ME packages. Hope somone could post …
It's probobly a layout issue. Try to use something like this [CODE=Java] class MyFrame extends JFrame { public MyFrame() { setSize(800,600); setTitle("MyFrame"); JPanel panel1 = new JPanel(); JPanel panel2 = new JPanel(); Container cp = getContentPane(); [B][COLOR="Red"] cp.setLayout(new FlowLayout());[/COLOR][/B] cp.add(panel1); cp.add(panel2); } } [/CODE]
Hello. I'm studying Pascal in school atm and have come over a bit of a problem with a program I've been asked to write. The task is too make a calendar. My calendar uses an array with records too store data about the different days. The program uses a procedure …
This program will generate a random number between -20 and 20. [CODE] program RandomX; var x : Integer; begin Randomize; x := (Random(40)-20); [COLOR="Green"]// -20 <= x < 20[/COLOR] end. [/CODE] Hoped this helped. ~ Artmann
The End.
Artmann