home *** CD-ROM | disk | FTP | other *** search
/ Chip 1997 October / Chip_1997-10_cd.bin / tema / sybase / powerj / samples.z / Form3.wxf < prev    next >
Text File  |  1997-01-28  |  2KB  |  127 lines

  1. Save Format v2.0(1)
  2. @begin Form "Form3"
  3.  Exported 0;
  4.  Abstract 0;
  5.  Interface 0;
  6.  PackageName "";
  7.  
  8.  @begin Object "powersoft.jcm.ui.ModelessDialog"
  9.   Font "Dialog-Plain-8";
  10.   ControlScope "Private";
  11.   BackColor "Color.lightGray";
  12.   ForeColor "Color.black";
  13.   Text "Modeless Dialog";
  14.   Visible "0";
  15.   DataSource "NULL";
  16.   DataColumns "";
  17.   BoundControl "0";
  18.   @begin Event "powersoft.jcm.event.Close"
  19.    GencodeSrcLine 68;
  20.    FunctionName "Form3_Close";
  21.   @end;
  22.   @begin UserFunction "Form3()"
  23.    Compiler 1;
  24.    GencodeSrcLine 63;
  25.    FunctionName "Form3::Form3()";
  26.   @end;
  27.   ResID 104;
  28.   DesignName Form3;
  29.   TabIndex 0;
  30.   DesignRect 63,293,209,52;
  31.  @end;
  32.  
  33.  @begin Object "powersoft.jcm.ui.TextBox"
  34.   WTextBoxReadOnly 1;
  35.   Font "<Inherited>";
  36.   PasswordCharacter "0";
  37.   BackColor "Color.lightGray";
  38.   ForeColor "Color.black";
  39.   Text "This is a Modeless Dialog";
  40.   Visible "1";
  41.   DataSource "NULL";
  42.   DataColumns "";
  43.   BoundControl "0";
  44.   ResID 100;
  45.   DesignName textb_1;
  46.   TabIndex 0;
  47.   DesignRect 5,5,120,25;
  48.  @end;
  49.  
  50.  @begin Object "powersoft.jcm.ui.CommandButton"
  51.   Font "<Inherited>";
  52.   BackColor "Color.lightGray";
  53.   ForeColor "Color.black";
  54.   Text "OK";
  55.   Visible "1";
  56.   DataSource "NULL";
  57.   DataColumns "";
  58.   BoundControl "0";
  59.   @begin Event "powersoft.jcm.event.Click"
  60.    GencodeSrcLine 74;
  61.    FunctionName "cb_1_Click";
  62.   @end;
  63.   ResID 101;
  64.   DesignName cb_1;
  65.   TabIndex 1;
  66.   DesignRect 130,5,40,15;
  67.  @end;
  68.  
  69.  @begin HPPPrefixBlock
  70. @begin-code HPPPrefix
  71.  
  72. // add your custom import statements here
  73.  
  74. @end-code;
  75.   GencodeSrcLine 13;
  76.  @end;
  77.  
  78.  @begin ClassContentsBlock
  79. @begin-code ClassContents
  80.  
  81.     // add your data members here
  82.  
  83. @end-code;
  84.   GencodeSrcLine 88;
  85.  @end;
  86.  
  87. @begin-code BaseClassList
  88.  
  89. extends powersoft.jcm.ui.ModelessDialog
  90.  
  91. @end-code;
  92.  
  93. @begin-code GeneratedClassContents
  94.  
  95.  
  96. @end-code;
  97.  
  98. @begin-code Code "Form3::Form3()"
  99.  
  100.     public @CLASSNAME@()
  101.     {
  102.         super();
  103.     }
  104.  
  105. @end-code;
  106.  
  107. @begin-code Code "Form3_Close"
  108.  
  109.     public boolean Form3_Close(powersoft.jcm.event.CloseEvent event)
  110.     {
  111.         setVisible( false );              
  112.         return false;
  113.     }
  114.  
  115. @end-code;
  116.  
  117. @begin-code Code "cb_1_Click"
  118.  
  119.     public boolean cb_1_Click(powersoft.jcm.event.ClickEvent event)
  120.     {
  121.         setVisible( false );
  122.         return false;
  123.     }
  124.  
  125. @end-code;
  126. @end;
  127.