home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmScaffold
- Caption = "Form1"
- ClientHeight = 4140
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 6690
- Height = 4545
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 4140
- ScaleWidth = 6690
- Top = 1170
- Width = 6810
- Begin VB.CommandButton cmdRun
- Caption = "&Run"
- Height = 735
- Left = 480
- TabIndex = 0
- Top = 660
- Width = 1875
- End
- Attribute VB_Name = "frmScaffold"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdRun_Click()
- Dim dlg As New dlgRun
- Dim success As Variant
- success = dlg.Display()
- MsgBox success
- If success Then
- MsgBox dlg.CommandLine
- success = dlg.Execute
- MsgBox success
- End If
- End Sub
-