home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmMain
- Caption = "XOR / ClipControls Example"
- ClientHeight = 1845
- ClientLeft = 2175
- ClientTop = 2205
- ClientWidth = 3885
- Height = 2250
- Left = 2115
- LinkTopic = "Form1"
- ScaleHeight = 1845
- ScaleWidth = 3885
- Top = 1860
- Width = 4005
- Begin VB.CommandButton cmdCopy
- Caption = "COPY Pen"
- Height = 615
- Left = 2040
- TabIndex = 1
- Top = 360
- Width = 1575
- End
- Begin VB.CommandButton cmdXOR
- Caption = "XOR Pen"
- Default = -1 'True
- Height = 615
- Left = 300
- TabIndex = 0
- Top = 360
- Width = 1635
- End
- Begin VB.Label Label1
- Caption = $"frmMain.frx":0000
- Height = 615
- Left = 120
- TabIndex = 2
- Top = 1200
- Width = 3675
- End
- Attribute VB_Name = "frmMain"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- ' Copyright
- 1997 by Desaware Inc. All Rights Reserved
- Private Sub cmdCopy_Click()
- frmCopy.Show 1
- End Sub
- Private Sub cmdXOR_Click()
- frmXOR.Show 1
- End Sub
-