home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Developing Visio Solutions"
- ClientHeight = 1935
- ClientLeft = 1140
- ClientTop = 1515
- ClientWidth = 7950
- Height = 2340
- Left = 1080
- LinkTopic = "Form1"
- ScaleHeight = 1935
- ScaleWidth = 7950
- Top = 1170
- Width = 8070
- Begin VB.CommandButton cmdClose
- Caption = "Close"
- Height = 495
- Left = 2760
- TabIndex = 2
- Top = 1200
- Width = 1215
- End
- Begin VB.TextBox txtArgs
- Enabled = 0 'False
- Height = 495
- Left = 120
- TabIndex = 0
- Top = 480
- Width = 6735
- End
- Begin VB.Label Label1
- Caption = "Arguments passed:"
- Height = 255
- Left = 120
- TabIndex = 1
- Top = 240
- Width = 1815
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub cmdClose_Click()
- End
- End Sub
- Private Sub Text1_Change()
- End Sub
- Private Sub Form_Load()
- txtArgs.Text = Command$
- Form_Resize
- End Sub
- Private Sub Form_Resize()
- txtArgs.Width = Width - 400
- cmdClose.Left = Width / 2 - cmdClose.Width / 2
- End Sub
-