home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1998 July & August / Pcwk78a98.iso / Micrsoft / VJ / VJ98 / WIZARDS / TEMPLATE / AW3.TEM < prev   
Text File  |  1998-02-12  |  955b  |  55 lines

  1. //%FILENAME%.java
  2.  
  3. import cor.*;
  4. import cor.event.*;
  5.  
  6. public class %FILENAME% extends cor.Form
  7. {
  8.         
  9.  
  10.     public %FILENAME%()
  11.     {
  12.         //Required for Visual J++ Form Designer support
  13.         initForm();        
  14.  
  15.         //TODO: Add any constructor code after initForm call
  16.         }
  17.  
  18.  
  19.  
  20.     public static void main(String args[])
  21.     {
  22.         Application.run(new %FILENAME%());
  23.     }
  24.  
  25.  
  26.     /**
  27.      * If an error occurred in initForm(), handle it here
  28.      */
  29.     void initError(Exception e)
  30.     {
  31.         //TODO: Add initForm() error handling code here.
  32.     }
  33.  
  34.     /**
  35.      * NOTE: The following code is required by the Visual J++ form
  36.      * designer.  It can be modified using the form editor.  Do not
  37.      * modify it using the code editor.
  38.      */
  39.  
  40.         //@designer begin
  41.  
  42.     void initForm()
  43.     {
  44.         try
  45.         {
  46.                         this.setSize(new cor.Point( 300, 300));
  47.         }
  48.         catch (Exception e)
  49.         {
  50.             initError(e);
  51.         }
  52.     }
  53.     //NOTE: End of form designer support code.
  54. }
  55.