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

13 Posted Topics

Member Avatar for ~s.o.s~

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.

Member Avatar for ~s.o.s~
46
6K
Member Avatar for newbieGirl
Member Avatar for Artmann

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 …

Member Avatar for Ezzaral
0
159
Member Avatar for toomuchfreetime

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]

Member Avatar for rahul4/69
0
480
Member Avatar for NickyPhun

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.

Member Avatar for Rahul Bhat
0
187
Member Avatar for technogeek_42

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

Member Avatar for Jx_Man
0
280
Member Avatar for chitra1

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.

Member Avatar for chitra1
0
109
Member Avatar for Artmann

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. …

Member Avatar for Artmann
0
81
Member Avatar for spockenheit

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]

Member Avatar for Duoas
0
131
Member Avatar for Artmann

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 …

Member Avatar for peter_budo
0
160
Member Avatar for enes

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]

Member Avatar for masijade
0
102
Member Avatar for Artmann

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 …

Member Avatar for Artmann
0
1K
Member Avatar for pukepuke

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

Member Avatar for Artmann
0
190

The End.