home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Intro
- Caption = "DataAwareCollection - Supporting an Integrated OO Architecture for VB4"
- ClientHeight = 2595
- ClientLeft = 255
- ClientTop = 855
- ClientWidth = 7470
- Height = 3000
- Left = 195
- LinkTopic = "Form2"
- ScaleHeight = 2595
- ScaleWidth = 7470
- Top = 510
- Width = 7590
- Begin VB.CommandButton Command3
- Cancel = -1 'True
- Caption = "Cancel"
- Height = 375
- Left = 5520
- TabIndex = 4
- Top = 2160
- Width = 1815
- End
- Begin VB.CommandButton Command2
- Caption = "Begin Demo"
- Height = 375
- Left = 2880
- TabIndex = 3
- Top = 2160
- Width = 1815
- End
- Begin VB.CommandButton Command1
- Caption = "Create Demo Objects"
- Height = 375
- Left = 120
- TabIndex = 2
- Top = 2160
- Width = 1815
- End
- Begin VB.Label Label3
- Caption = $"Intro.frx":0000
- Height = 615
- Left = 120
- TabIndex = 5
- Top = 840
- Width = 7335
- End
- Begin VB.Label Label2
- Caption = $"Intro.frx":012B
- Height = 495
- Left = 120
- TabIndex = 1
- Top = 1560
- Width = 7335
- End
- Begin VB.Label Label1
- Caption = $"Intro.frx":01B2
- Height = 615
- Left = 120
- TabIndex = 0
- Top = 120
- Width = 7335
- End
- Attribute VB_Name = "Intro"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Me.MousePointer = vbArrowHourglass
- CreateTestData
- Me.MousePointer = vbArrow
- Command2.SetFocus
- End Sub
- Private Sub Command2_Click()
- Me.MousePointer = vbArrowHourglass
- publicCompany.Persons.Refresh
- CustomersAndAddresses.Show
- Me.MousePointer = vbArrow
- End Sub
- Private Sub Command3_Click()
- End
- End Sub
-