home *** CD-ROM | disk | FTP | other *** search
/ Dan Appleman's Visual Bas…s Guide to the Win32 API / Dan.Applmans.Visual.Basic.5.0.Programmers.Guide.To.The.Win32.API.1997.Ziff-Davis.Press.CD / VB5PG32.mdf / vbpg32 / samples5 / ch08 / frmmain.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1996-11-27  |  1.4 KB  |  49 lines

  1. VERSION 5.00
  2. Begin VB.Form frmMain 
  3.    Caption         =   "XOR / ClipControls Example"
  4.    ClientHeight    =   1845
  5.    ClientLeft      =   2175
  6.    ClientTop       =   2205
  7.    ClientWidth     =   3885
  8.    LinkTopic       =   "Form1"
  9.    PaletteMode     =   1  'UseZOrder
  10.    ScaleHeight     =   1845
  11.    ScaleWidth      =   3885
  12.    Begin VB.CommandButton cmdCopy 
  13.       Caption         =   "COPY Pen"
  14.       Height          =   615
  15.       Left            =   2040
  16.       TabIndex        =   1
  17.       Top             =   360
  18.       Width           =   1575
  19.    End
  20.    Begin VB.CommandButton cmdXOR 
  21.       Caption         =   "XOR Pen"
  22.       Default         =   -1  'True
  23.       Height          =   615
  24.       Left            =   300
  25.       TabIndex        =   0
  26.       Top             =   360
  27.       Width           =   1635
  28.    End
  29.    Begin VB.Label Label1 
  30.       Caption         =   $"frmMain.frx":0000
  31.       Height          =   615
  32.       Left            =   120
  33.       TabIndex        =   2
  34.       Top             =   1200
  35.       Width           =   3675
  36.    End
  37. Attribute VB_Name = "frmMain"
  38. Attribute VB_GlobalNameSpace = False
  39. Attribute VB_Creatable = False
  40. Attribute VB_PredeclaredId = True
  41. Attribute VB_Exposed = False
  42. Option Explicit
  43. Private Sub cmdCopy_Click()
  44.     frmCopy.Show 1
  45. End Sub
  46. Private Sub cmdXOR_Click()
  47.     frmXOR.Show 1
  48. End Sub
  49.