Layout Problem
This is neer.........first of all i wanna say thanx to all u guys......
u all are really very helpful......and i am getting a great help in learning java with the help of u guys........thanx once again......
kk now i am trying Layout Program and it shows the following errors.......
my code is
import java.awt.*;
import java.applet.Applet;
public class Flow extends Applet
{
public Flow()
{
setLayout(new FlowLayout());
add(new Button("java"));
add(new Button("sql"));
add(new Button("C++"));
}
}
and command prompt shows the following error
D:\j2sdk1.4.2_08\bin>java Flow
Exception in thread "main" java.lang.NoSuchMethodError: main
D:\j2sdk1.4.2_08\bin>set CLASSPATH=D:\j2sdk1.4.2_08\bin
D:\j2sdk1.4.2_08\bin>java Flow
Exception in thread "main" java.lang.NoSuchMethodError: main
plz help me in fixing the problem
Thanx in Advance
Neer

