Hello,
I have first used visual editor for eclipse (3.3).
I have done : file -> new -> java -> AWT -> dialog,
and then try to run the application.
What shall I do :
Run as eclipse application, Java applet, Java application, OSGi framework.
None of the above work.
What should I consider or declare in order to run a simple dialog box ?
Should I declare the main class that runs first ?
Need a simple example to do so, please.
Thanks :)
Steve Sobol - 15 Jan 2008 22:35 GMT
> Hello,
> I have first used visual editor for eclipse (3.3).
> I have done : file -> new -> java -> AWT -> dialog,
> and then try to run the application.
Use "run as Java application" and make sure a method exists,
public static void main(String[] args)
This method would need to display your dialog.

Signature
Steve Sobol, Victorville, CA PGP:0xE3AE35ED www.SteveSobol.com
Geek-for-hire. Details: http://www.linkedin.com/in/stevesobol
Mr. X. - 16 Jan 2008 08:11 GMT
O.K.
I will try so.
Thanks :)