home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmMain
- Caption = "XOR / ClipControls Example"
- ClientHeight = 1845
- ClientLeft = 2175
- ClientTop = 2205
- ClientWidth = 3885
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1845
- ScaleWidth = 3885
- 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_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdCopy_Click()
- frmCopy.Show 1
- End Sub
- Private Sub cmdXOR_Click()
- frmXOR.Show 1
- End Sub
-