Application creating JAR, haven't got a clue .
Ok I've made an application it runs fine, but i want to have a JAR so its portable. But I can't get it to work, when i try to make a jar it says "No main arguments" so i create a text.txt containing.
"Main-Class: myprojects.HusIP.HusIP"
So at the command prompt Program Files\Java\..\..\bin> i type in:
jar mcfv text.txt HusIP.jar HusIP/*class
But it doesn't work, here is the code (minimized) can someone please help me out.
If you need anymore info just say so, i'm using Jcreator LE 4.00
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
publicclass HusIPextends JFrame{
publicstaticvoid main(String[] args){
new HusIP();
}
public HusIP(){
}

