home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Micrsoft
/
VJ
/
VJ98
/
WIZARDS
/
TEMPLATE
/
AW3.TEM
< prev
Wrap
Text File
|
1998-02-12
|
955b
|
55 lines
//%FILENAME%.java
import cor.*;
import cor.event.*;
public class %FILENAME% extends cor.Form
{
public %FILENAME%()
{
//Required for Visual J++ Form Designer support
initForm();
//TODO: Add any constructor code after initForm call
}
public static void main(String args[])
{
Application.run(new %FILENAME%());
}
/**
* If an error occurred in initForm(), handle it here
*/
void initError(Exception e)
{
//TODO: Add initForm() error handling code here.
}
/**
* NOTE: The following code is required by the Visual J++ form
* designer. It can be modified using the form editor. Do not
* modify it using the code editor.
*/
//@designer begin
void initForm()
{
try
{
this.setSize(new cor.Point( 300, 300));
}
catch (Exception e)
{
initError(e);
}
}
//NOTE: End of form designer support code.
}