Forum: Java Apr 25th, 2008 |
| Replies: 1 Views: 6,111 This site seems to contain some useful information.
http://java.sun.com/developer/technicalArticles/J2SE/Desktop/javase6/splashscreen/ |
Forum: Java Mar 4th, 2008 |
| Replies: 6 Views: 1,893 Can you define hack?
Do you mean that someone can access the class during runtime? Can you please be abit more specific. |
Forum: Java Mar 1st, 2008 |
| Replies: 6 Views: 1,893 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
Default
Public
Private
Protected |
Forum: Java Jan 23rd, 2008 |
| Replies: 2 Views: 635 Is no one intressed in helping me with this ? |
Forum: Java Jan 23rd, 2008 |
| Replies: 2 Views: 528 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... |
Forum: Java Jan 13th, 2008 |
| Replies: 2 Views: 635 |
Forum: Java Jan 11th, 2008 |
| Replies: 2 Views: 635 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... |
Forum: IT Professionals' Lounge Jan 7th, 2008 |
| Replies: 32 Views: 4,084 MS Windows isn't a virus. A virus does something. |
Forum: IT Professionals' Lounge Jan 6th, 2008 |
| Replies: 32 Views: 4,084 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 |
Forum: Pascal and Delphi Dec 19th, 2007 |
| Replies: 2 Views: 905 I think it's something like this
program ??;
var test : array[0..4] of String;
l : Integer;
begin |
Forum: Java Dec 7th, 2007 |
| Replies: 36 Views: 26,907 I would like to recomend the the books Core Java Volume 1 and 2 . A really good set of books that covers the most areas you'll need. |
Forum: Java Dec 7th, 2007 |
| Replies: 1 Views: 619 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... |
Forum: Java Nov 23rd, 2007 |
| Replies: 17 Views: 4,292 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. |
Forum: Java Nov 14th, 2007 |
| Replies: 5 Views: 901 My Example will show two panels.
I just wanted to show him how to add a layout to the frame.
If he hasn't done that he will only see one panel. |
Forum: Java Nov 14th, 2007 |
| Replies: 9 Views: 3,192 |
Forum: Java Nov 13th, 2007 |
| Replies: 5 Views: 901 It's probobly a layout issue. Try to use something like this
class MyFrame extends JFrame
{
public MyFrame()
{ |
Forum: Pascal and Delphi Nov 12th, 2007 |
| Replies: 2 Views: 4,059 Thanks for your help, this will help me out a lot. I think I've read a simular example earlier somewhere but I had totally forgot about that. |
Forum: Pascal and Delphi Nov 12th, 2007 |
| Replies: 2 Views: 4,059 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... |
Forum: Pascal and Delphi Nov 12th, 2007 |
| Replies: 4 Views: 1,282 This program will generate a random number between -20 and 20.
program RandomX;
var x : Integer;
begin
Randomize; |