Content Supported by Sourcelens Consulting
VERSION 5.00
Begin VB.Form frmCYOCC
Caption = "Creating Your Own Collection Classes"
ClientHeight = 3195
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form2"
ScaleHeight = 3195
ScaleWidth = 4680
StartUpPosition = 3
Begin VB.CommandButton cmdBricks
Caption = "House of Bricks"
Height = 375
Left = 240
TabIndex = 2
Top = 1200
Width = 3255
End
Begin VB.CommandButton cmdSticks
Caption = "House of Sticks"
Height = 375
Left = 240
TabIndex = 1
Top = 720
Width = 3255
End
Begin VB.CommandButton cmdStraw
Caption = "House of Straw"
Height = 375
Left = 240
TabIndex = 0
Top = 240
Width = 3255
End
End
Attribute VB_Name = "frmCYOCC"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub cmdStraw_Click()
frmStraw.Show vbModeless, Me
End Sub
Private Sub cmdSticks_Click()
frmSticks.Show vbModeless, Me
End Sub
Private Sub cmdBricks_Click()
frmBricks.Show vbModeless, Me
End Sub
Private Sub Form_Unload(Cancel As Integer)
If Not frmBricks Is Nothing Then
Unload frmBricks
Set frmBricks = Nothing
End If
If Not frmSticks Is Nothing Then
Unload frmBricks
Set frmBricks = Nothing
End If
If Not frmStraw Is Nothing Then
Unload frmBricks
Set frmBricks = Nothing
End If
Set frmCYOCC = Nothing
End Sub