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 / samples4 / ch08 / frmmain.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-02-16  |  1.4 KB  |  52 lines

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