home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- BackColor = &H00FFFF00&
- Caption = "Form Loader"
- ClientHeight = 3195
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4680
- LinkTopic = "Form1"
- ScaleHeight = 3195
- ScaleWidth = 4680
- StartUpPosition = 3 'Windows Default
- Begin VB.CommandButton Command2
- Caption = "Show Form3"
- BeginProperty Font
- Name = "MS Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 435
- Left = 2520
- TabIndex = 3
- Top = 2505
- Visible = 0 'False
- Width = 2025
- End
- Begin VB.CommandButton Command1
- Caption = "Show Form2"
- BeginProperty Font
- Name = "MS Serif"
- Size = 13.5
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 435
- Left = 315
- TabIndex = 2
- Top = 2505
- Visible = 0 'False
- Width = 2025
- End
- Begin VB.Label Label1
- BackStyle = 0 'Transparent
- Caption = "Initializing application"
- BeginProperty Font
- Name = "Tahoma"
- Size = 18
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- ForeColor = &H000000FF&
- Height = 525
- Left = 135
- TabIndex = 1
- Top = 255
- Width = 3945
- End
- Begin VB.Label Label2
- BackStyle = 0 'Transparent
- Caption = "Please wait ..."
- BeginProperty Font
- Name = "Tahoma"
- Size = 15.75
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 765
- Left = 1470
- TabIndex = 0
- Top = 1275
- Width = 3030
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub Command1_Click()
- Form2.Show
- End Sub
- Private Sub Command2_Click()
- Form3.Show
- End Sub
- Private Sub Form_Load()
- Form1.Show
- Form1.MousePointer = vbHourglass
- DoEvents
- Form1.Caption = "Loading Form2..."
- Load Form2
- Form1.Caption = "Loading Form3..."
- Load Form3
-
- Form1.Caption = "Form Loader"
- Command1.Visible = True
- Command2.Visible = True
- Label1.Caption = "Application Loaded"
- Label2.Caption = "Click on the buttons to load a Form"
- Form1.MousePointer = vbDefault
- DoEvents
- End Sub
-