📄 frmid.frm
字号:
VERSION 5.00
Begin VB.Form frmID
Caption = "添加用户"
ClientHeight = 2010
ClientLeft = 60
ClientTop = 345
ClientWidth = 3345
LinkTopic = "Form1"
MDIChild = -1 'True
Moveable = 0 'False
ScaleHeight = 2010
ScaleWidth = 3345
Begin VB.CommandButton Command2
Caption = "取消"
Height = 375
Left = 1800
TabIndex = 3
Top = 1440
Width = 855
End
Begin VB.CommandButton Command1
Caption = "确定"
Height = 375
Left = 600
TabIndex = 2
Top = 1440
Width = 855
End
Begin VB.Frame Frame1
Caption = "--请输入新添加的用户名:--"
Height = 975
Left = 240
TabIndex = 0
Top = 240
Width = 2895
Begin VB.TextBox Text1
Height = 375
Left = 240
TabIndex = 1
Text = "Text1"
Top = 360
Width = 2415
End
End
End
Attribute VB_Name = "frmID"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
id = Text1.Text
frmuser.Show
Call frmuser.addid
Unload Me
End Sub
Private Sub Form_Load()
'askn.ApplySkin Me.hWnd
Me.Top = 3700
Me.Width = 3400
Me.Height = 2700
Me.Left = 6000
Text1.Text = ""
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -