home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / bp_3_94 / vbwin / makro / frmoutpu.frm < prev    next >
Text File  |  1994-04-19  |  1KB  |  45 lines

  1. VERSION 2.00
  2. Begin Form frmOutPut 
  3.    BackColor       =   &H8000000F&
  4.    BorderStyle     =   3  'Fixed Double
  5.    Caption         =   "Makroausgabe"
  6.    ClientHeight    =   3090
  7.    ClientLeft      =   3030
  8.    ClientTop       =   3885
  9.    ClientWidth     =   6315
  10.    ControlBox      =   0   'False
  11.    Height          =   3495
  12.    Left            =   2970
  13.    LinkTopic       =   "Form1"
  14.    MaxButton       =   0   'False
  15.    MinButton       =   0   'False
  16.    ScaleHeight     =   3090
  17.    ScaleWidth      =   6315
  18.    Top             =   3540
  19.    Width           =   6435
  20.    Begin ListBox lst_Output 
  21.       Height          =   2955
  22.       Left            =   60
  23.       TabIndex        =   0
  24.       Top             =   60
  25.       Width           =   6225
  26.    End
  27. End
  28.  
  29. Sub Form_Activate ()
  30. lst_Output.SetFocus
  31. End Sub
  32.  
  33. Sub Form_KeyPress (KeyAscii As Integer)
  34. Unload Me
  35. End Sub
  36.  
  37. Sub lst_Output_KeyPress (KeyAscii As Integer)
  38. Unload Me
  39. End Sub
  40.  
  41. Sub lst_Output_MouseDown (Button As Integer, Shift As Integer, X As Single, Y As Single)
  42. Unload Me
  43. End Sub
  44.  
  45.