home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1994 March / Source_Code_CD-ROM_Walnut_Creek_March_1994.iso / win3 / programr / vbasic / receipt.exe / ABOUTDLG.FRM (.txt) next >
Encoding:
Visual Basic Form  |  1993-07-22  |  1.2 KB  |  46 lines

  1. VERSION 2.00
  2. Begin Form Form9 
  3.    AutoRedraw      =   -1  'True
  4.    Caption         =   "Pen Windows Demo"
  5.    ClientHeight    =   1530
  6.    ClientLeft      =   1695
  7.    ClientTop       =   1530
  8.    ClientWidth     =   4530
  9.    FontBold        =   0   'False
  10.    FontItalic      =   0   'False
  11.    FontName        =   "Arial"
  12.    FontSize        =   9.75
  13.    FontStrikethru  =   0   'False
  14.    FontUnderline   =   0   'False
  15.    Height          =   1935
  16.    Left            =   1635
  17.    LinkMode        =   1  'Source
  18.    LinkTopic       =   "Form9"
  19.    ScaleHeight     =   6.375
  20.    ScaleMode       =   4  'Character
  21.    ScaleWidth      =   37.75
  22.    Top             =   1185
  23.    Width           =   4650
  24.    Begin CommandButton Command1 
  25.       Caption         =   "OK"
  26.       Height          =   375
  27.       Left            =   3720
  28.       TabIndex        =   0
  29.       Top             =   120
  30.       Width           =   615
  31.    End
  32. Sub Command1_Click ()
  33.    Unload Form9
  34. End Sub
  35. Sub Command1_GotFocus ()
  36.    Print "Demo for Microsoft Windows"
  37.    Print "with Pen Support!!!"
  38.    Print
  39.    Print "This demo was developed by"
  40.    Print "the Basic Languages Product"
  41.    Print "Support Unit."
  42. End Sub
  43. Sub Form_Click ()
  44.    Unload Form9
  45. End Sub
  46.