home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Komputer 1998 July & August
/
Pcwk78a98.iso
/
Micrsoft
/
VJ
/
VJ98
/
PROJITEM
/
FORM
/
CONTROL.JAV
next >
Wrap
Text File
|
1998-02-11
|
874b
|
40 lines
// %FILENAME%.java
import wfc.core.*;
import wfc.ui.*;
/**
* This class is a visual component. The entry point for class execution
* is the constructor.
*/
public class %FILENAME% extends UserControl
{
public %FILENAME%()
{
// Required for Visual J++ Form Designer support
initForm();
// TODO: Add any constructor code after initForm call
}
/**
* 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.
*/
Container components = new Container();
private void initForm()
{
this.setSize(new Point(300, 300));
this.setText("%FILENAME%");
}
// NOTE: End of form designer support code
public static class ClassInfo extends UserControl.ClassInfo
{
// TODO: Add your property and event infos here
}
}