⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 addform.frm

📁 自己学VB时数据库编程的一个小程序
💻 FRM
字号:
VERSION 5.00
Begin VB.Form addform 
   Caption         =   "addform"
   ClientHeight    =   2370
   ClientLeft      =   60
   ClientTop       =   450
   ClientWidth     =   4680
   LinkTopic       =   "Form1"
   ScaleHeight     =   2370
   ScaleWidth      =   4680
   StartUpPosition =   3  '窗口缺省
   Begin VB.PictureBox Picture1 
      Height          =   735
      Left            =   120
      ScaleHeight     =   675
      ScaleWidth      =   555
      TabIndex        =   10
      Top             =   840
      Width           =   615
   End
   Begin VB.CommandButton Command2 
      Caption         =   "放弃"
      Height          =   375
      Left            =   2640
      TabIndex        =   9
      Top             =   1560
      Width           =   855
   End
   Begin VB.CommandButton Command1 
      Caption         =   "确定"
      Height          =   375
      Left            =   1320
      TabIndex        =   8
      Top             =   1560
      Width           =   855
   End
   Begin VB.ComboBox Combo1 
      Height          =   300
      Left            =   3360
      TabIndex        =   7
      Text            =   "已签合同"
      Top             =   960
      Width           =   1095
   End
   Begin VB.TextBox Text3 
      Height          =   375
      Left            =   1320
      TabIndex        =   2
      Text            =   "Text3"
      Top             =   960
      Width           =   975
   End
   Begin VB.TextBox Text2 
      Height          =   375
      Left            =   3120
      TabIndex        =   1
      Text            =   "Text2"
      Top             =   240
      Width           =   1335
   End
   Begin VB.TextBox Text1 
      Height          =   375
      Left            =   1320
      TabIndex        =   0
      Text            =   "Text1"
      Top             =   240
      Width           =   1215
   End
   Begin VB.Label Label4 
      Caption         =   "合同状态:"
      Height          =   255
      Left            =   2400
      TabIndex        =   6
      Top             =   1080
      Width           =   975
   End
   Begin VB.Label Label3 
      Caption         =   "名:"
      Height          =   255
      Left            =   840
      TabIndex        =   5
      Top             =   1080
      Width           =   375
   End
   Begin VB.Label Label2 
      Caption         =   "姓:"
      Height          =   255
      Left            =   2640
      TabIndex        =   4
      Top             =   360
      Width           =   375
   End
   Begin VB.Label Label1 
      Caption         =   "作者标识号:"
      Height          =   255
      Left            =   120
      TabIndex        =   3
      Top             =   360
      Width           =   1095
   End
End
Attribute VB_Name = "addform"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command2_Click()
Unload addform
End Sub

Private Sub Form_Load()
Combo1.AddItem "已签合同"
Combo1.AddItem "未签合同"
Text1.Text = ""
Text2.Text = ""
Text3.Text = ""

End Sub

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -