Search found 323 matches

by jeffy
Mon Mar 03, 2003 9:44 am
Forum: Java
Topic: Debugger Recommendation?
Replies: 2
Views: 483

Re: Debugger Recommendation?

I love TextPad, but at times I need a debugger. Can anyone recommend a good debugger that doesn't cost an arm and a leg? Try this: http://www.google.com/search?sourceid=navclient&q=%2B%22java+debugger%22+%2Bdownload+%2Bfree I don't have a specific recommendation, but this should be a good start.
by jeffy
Mon Mar 03, 2003 9:40 am
Forum: Java
Topic: Java file to .exe
Replies: 3
Views: 591

Re: Java file to .exe

Garrett wrote:Short answer:

...

Long answer:

...
Just wanted to say how impressed I was with your reply. :' )
by jeffy
Mon Mar 03, 2003 9:36 am
Forum: Java
Topic: javac.exe and appletviewer.exe
Replies: 2
Views: 458

Re: javac.exe and appletviewer.exe

Don't tell me to check the path set-up. I can do the work in Command-Window, but have the problem with those two commands in the Textpad, so there is nothing wrong with the path. Okay, well then try calling "C:/bla/whatever/appletviewer.exe" directly, instead of just "appletviewer.ex...
by jeffy
Mon Mar 03, 2003 9:33 am
Forum: Java
Topic: no syntax highlighting with dot ?
Replies: 1
Views: 391

Re: no syntax highlighting with dot ?

Please repost and check that it says what/looks like you intend.
by jeffy
Mon Mar 03, 2003 9:31 am
Forum: Java
Topic: Debugger Recommendation?
Replies: 2
Views: 483

Re: Debugger Recommendation?

Larry Rose wrote:I love TextPad, but at times I need a debugger. Can anyone recommend a good debugger that doesn't cost an arm and a leg?
Sure:

Code: Select all

System.out.println("XXX");
Just kidding. :' )
by jeffy
Mon Mar 03, 2003 9:22 am
Forum: Java
Topic: No javac.exe
Replies: 4
Views: 715

Re: No javac.exe

Randall wrote:Looks like you'll have to edit your classpath.
Actually, CLASSES are searched via the classpath. javac.exe is searched via the PATH. Follow the instructions just as listed above, but do so for the PATH environment variable, not CLASSPATH.
by jeffy
Mon Mar 03, 2003 9:18 am
Forum: Java
Topic: Use Jikes, not Sun
Replies: 2
Views: 490

Can I just TELL you how fast Jikes is, in comparison to Javac?!

Wow.
by jeffy
Mon Mar 03, 2003 9:16 am
Forum: Java
Topic: Classes
Replies: 3
Views: 941

Re: Classes

Randall wrote:how can I make textpad read different classes outside the file?
Try adding "." to your classpath, which makes Windows--and therefore TextPad--recognize classes that exist in the "present working directory".

Does that work for you?