Advertisement
If you have a new account but are having problems posting or verifying your account, please email us on hello@boards.ie for help. Thanks :)
Hello all! Please ensure that you are posting a new thread or question in the appropriate forum. The Feedback forum is overwhelmed with questions that are having to be moved elsewhere. If you need help to verify your account contact hello@boards.ie
Hi all! We have been experiencing an issue on site where threads have been missing the latest postings. The platform host Vanilla are working on this issue. A workaround that has been used by some is to navigate back from 1 to 10+ pages to re-sync the thread and this will then show the latest posts. Thanks, Mike.
Hi there,
There is an issue with role permissions that is being worked on at the moment.
If you are having trouble with access or permissions on regional forums please post here to get access: https://www.boards.ie/discussion/2058365403/you-do-not-have-permission-for-that#latest

Downloading External Tools in Textpad?

  • 13-10-2009 6:08pm
    #1
    Registered Users Posts: 112 ✭✭


    Hey there, I'm a brandy shiney new beginner at programming.

    I'm just starting to write a few programs but I'm doing it at home as opposed to college and the textpad I have doesn't have the complile and run external tools.

    I tried to download them, but it likes like I may have to edit something in java....

    Any suggestions?

    I tried to create a class file using the general run command, but for some reason /javac doesn't seem to register with my computer. It doesn't like it :B
    Tagged:


Comments

  • Registered Users, Registered Users 2 Posts: 2,009 ✭✭✭lynchie


    You need to add the java executables to the the environment path in windows. Check out the install instructions on Sun's website. Point 4 is what you need to do

    http://java.sun.com/javase/6/webnotes/install/jdk/install-windows.html


  • Registered Users Posts: 19 kilomike31


    Yunalesca wrote: »
    Hey there, I'm a brandy shiney new beginner at programming.

    I'm just starting to write a few programs but I'm doing it at home as opposed to college and the textpad I have doesn't have the complile and run external tools.

    I tried to download them, but it likes like I may have to edit something in java....

    Any suggestions?

    I tried to create a class file using the general run command, but for some reason /javac doesn't seem to register with my computer. It doesn't like it :B

    TextPad is a just a text editor and as such doesn't compile code. You can get it to highlight Java code correctly and get it to call the compiler provided javac.exe is in the execution path of your PC. However, I'd suggest you take a look at Eclipse (http://www.eclipse.org/). This is the development environment that many Java programmers use and may support what you are doing better than TextPad. TextPad is a brilliant editor but this is a case of "horses for courses".


  • Registered Users, Registered Users 2 Posts: 2,009 ✭✭✭lynchie


    kilomike31 wrote: »
    TextPad is a just a text editor and as such doesn't compile code. You can get it to highlight Java code correctly and get it to call the compiler provided javac.exe is in the execution path of your PC. However, I'd suggest you take a look at Eclipse (http://www.eclipse.org/). This is the development environment that many Java programmers use and may support what you are doing better than TextPad. TextPad is a brilliant editor but this is a case of "horses for courses".

    OP said they are using it in college which is the correct thing to do starting off so as to learn the basics without code assist etc..


Advertisement