📄 frmcusclass.frm
字号:
VERSION 5.00
Begin VB.Form frmCusclass
Caption = "客户分类"
ClientHeight = 1950
ClientLeft = 4365
ClientTop = 5310
ClientWidth = 4365
LinkTopic = "Form1"
ScaleHeight = 1950
ScaleWidth = 4365
Begin VB.CommandButton cmdok
Caption = "保存"
Default = -1 'True
Height = 375
Left = 1440
TabIndex = 3
Top = 1215
Width = 1215
End
Begin VB.CommandButton cmdcancel
Cancel = -1 'True
Caption = "取消"
Height = 375
Left = 2880
TabIndex = 2
Top = 1215
Width = 1215
End
Begin VB.TextBox txtText
DataField = "username"
Height = 285
Left = 1200
TabIndex = 1
Top = 585
Width = 2895
End
Begin VB.TextBox txtMID
DataField = "userid"
Height = 285
Left = 3120
TabIndex = 0
Top = 2535
Width = 3375
End
Begin VB.Label lblLabels
Caption = "客户分类:"
Height = 255
Index = 2
Left = 120
TabIndex = 5
Top = 600
Width = 1095
End
Begin VB.Label lblLabels
Caption = "User ID:"
Height = 255
Index = 1
Left = 1320
TabIndex = 4
Top = 2535
Width = 1815
End
End
Attribute VB_Name = "frmCusclass"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public ok As String
Public value As m_cusclass
Private Sub Cmdcancel_Click()
ok = False
Me.Hide
'Unload Me
End Sub
Private Sub CmdOk_Click()
value.cname = Me.txtText
value.ccid = Me.txtMID
ok = True
Me.Hide
'Unload Me
End Sub
Private Sub Form_Load()
Me.txtMID = value.ccid
Me.txtText = value.cname
End Sub
Private Sub Form_Unload(Cancel As Integer)
ok = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -