home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 5 / ctrom5b.zip / ctrom5b / PROGRAM / VISBASIC / READFRMS / FORM2.FRM < prev    next >
Text File  |  1994-11-20  |  2KB  |  59 lines

  1. VERSION 2.00
  2. Begin Form Form2 
  3.    BackColor       =   &H00800080&
  4.    Caption         =   "What it does...."
  5.    ClientHeight    =   3360
  6.    ClientLeft      =   5055
  7.    ClientTop       =   2730
  8.    ClientWidth     =   4110
  9.    Height          =   3765
  10.    Left            =   4995
  11.    LinkTopic       =   "Form2"
  12.    MaxButton       =   0   'False
  13.    MinButton       =   0   'False
  14.    ScaleHeight     =   3360
  15.    ScaleWidth      =   4110
  16.    Top             =   2385
  17.    Width           =   4230
  18.    Begin CommandButton Command1 
  19.       BackColor       =   &H00800080&
  20.       Caption         =   "&OK"
  21.       Height          =   495
  22.       Left            =   3240
  23.       TabIndex        =   1
  24.       Top             =   2640
  25.       Width           =   615
  26.    End
  27.    Begin Label Label1 
  28.       BackColor       =   &H00800080&
  29.       Caption         =   "This application reads all Visual Basic .FRM files located in any directory selected, then launches Word for Windows or Windows 'Write' to display the results of the search."
  30.       FontBold        =   -1  'True
  31.       FontItalic      =   0   'False
  32.       FontName        =   "MS Sans Serif"
  33.       FontSize        =   9.75
  34.       FontStrikethru  =   0   'False
  35.       FontUnderline   =   0   'False
  36.       ForeColor       =   &H0000FFFF&
  37.       Height          =   2055
  38.       Left            =   600
  39.       TabIndex        =   0
  40.       Top             =   360
  41.       Width           =   2775
  42.    End
  43. End
  44.  
  45. Sub Command1_Click ()
  46. Unload form2
  47. End Sub
  48.  
  49. Sub Form_Activate ()
  50. 'this keeps the windows on top....  (see .BAS module also)
  51. SetWindowPos form2.hWnd, -1, 0, 0, 0, 0, &H50
  52. End Sub
  53.  
  54. Sub Form_Load ()
  55. Left = (screen.Width - Width) / 2
  56. Top = (screen.Height - Height) / 4
  57. End Sub
  58.  
  59.