能给我写写注释吗?
VERSION 5.00
Object = "{5E9E78A0-531B-11CF-91F6-C2863C385E30}#1.0#0"; "MSFLXGRD.OCX"
Begin VB.Form Form1 
   Caption         =   "FindProcess"
   ClientHeight    =   3150
   ClientLeft      =   60
   ClientTop       =   345
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   3150
   ScaleWidth      =   4680
   StartUpPosition =   3  '窗口缺省
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   2280
      TabIndex        =   3
      Text            =   "Text1"
      Top             =   120
      Width           =   2295
   End
   Begin MSFlexGridLib.MSFlexGrid MSFlexGrid1 
      Height          =   2535
      Left            =   0
      TabIndex        =   2
      Top             =   600
      Width           =   4695
      _ExtentX        =   8281
      _ExtentY        =   4471
      _Version        =   393216
      Appearance      =   0
   End
   Begin VB.CommandButton Command2 
      Caption         =   "取消挂接"
      Height          =   375
      Left            =   1200
      TabIndex        =   1
      Top             =   120
      Width           =   975
   End
   Begin VB.CommandButton Command1 
      Caption         =   "挂接程序"
      Height          =   375
      Left            =   120
      TabIndex        =   0
      Top             =   120
      Width           =   975
   End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False

解决方案 »

  1.   

    上面的代码都窗体及窗体中控件的属性,意思如下
    窗体属性
        Name :Form1
     Caption :FindProcess
    ClientHeight    =   3150
       ClientLeft      =   60
       ClientTop       =   345
       ClientWidth     =   4680
       LinkTopic       =   "Form1"
       ScaleHeight     =   3150
       ScaleWidth      =   4680
       StartUpPosition =   3  '窗口缺省
    控件属性:
       文本框:name为Text  其他属性见上面
       表格近控件:Name为MSFlexGrid1  其他属性见上面
       两个命令按钮:Name分别为Command1和Command2   其他属性见上面你现在要做的就是把上面的控件拖到Form1上就行了