home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1999 January / pcwk_01_1999.iso / Wtestowe / Vistdstd / Install / Data.Z / Showargs.FRM (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-05-23  |  1.5 KB  |  55 lines

  1. VERSION 4.00
  2. Begin VB.Form Form1 
  3.    Caption         =   "Developing Visio Solutions"
  4.    ClientHeight    =   1935
  5.    ClientLeft      =   1140
  6.    ClientTop       =   1515
  7.    ClientWidth     =   7950
  8.    Height          =   2340
  9.    Left            =   1080
  10.    LinkTopic       =   "Form1"
  11.    ScaleHeight     =   1935
  12.    ScaleWidth      =   7950
  13.    Top             =   1170
  14.    Width           =   8070
  15.    Begin VB.CommandButton cmdClose 
  16.       Caption         =   "Close"
  17.       Height          =   495
  18.       Left            =   2760
  19.       TabIndex        =   2
  20.       Top             =   1200
  21.       Width           =   1215
  22.    End
  23.    Begin VB.TextBox txtArgs 
  24.       Enabled         =   0   'False
  25.       Height          =   495
  26.       Left            =   120
  27.       TabIndex        =   0
  28.       Top             =   480
  29.       Width           =   6735
  30.    End
  31.    Begin VB.Label Label1 
  32.       Caption         =   "Arguments passed:"
  33.       Height          =   255
  34.       Left            =   120
  35.       TabIndex        =   1
  36.       Top             =   240
  37.       Width           =   1815
  38.    End
  39. Attribute VB_Name = "Form1"
  40. Attribute VB_Creatable = False
  41. Attribute VB_Exposed = False
  42. Private Sub cmdClose_Click()
  43.     End
  44. End Sub
  45. Private Sub Text1_Change()
  46. End Sub
  47. Private Sub Form_Load()
  48.     txtArgs.Text = Command$
  49.     Form_Resize
  50. End Sub
  51. Private Sub Form_Resize()
  52.     txtArgs.Width = Width - 400
  53.     cmdClose.Left = Width / 2 - cmdClose.Width / 2
  54. End Sub
  55.