📄 frmsmsm.frm
字号:
VERSION 5.00
Begin VB.Form frmSmsm
Caption = "短语维护"
ClientHeight = 2370
ClientLeft = 5445
ClientTop = 5295
ClientWidth = 5235
LinkTopic = "Form1"
ScaleHeight = 2370
ScaleWidth = 5235
Begin VB.TextBox txtMID
DataField = "userid"
Height = 285
Left = 3240
TabIndex = 3
Top = 2775
Width = 3375
End
Begin VB.TextBox txtText
DataField = "username"
Height = 1245
Left = 120
MultiLine = -1 'True
TabIndex = 2
Top = 480
Width = 4935
End
Begin VB.CommandButton cmdcancel
Cancel = -1 'True
Caption = "取消"
Height = 375
Left = 3840
TabIndex = 1
Top = 1935
Width = 1215
End
Begin VB.CommandButton cmdok
Caption = "保存"
Default = -1 'True
Height = 375
Left = 2400
TabIndex = 0
Top = 1935
Width = 1215
End
Begin VB.Label lblLabels
Caption = "User ID:"
Height = 255
Index = 1
Left = 1440
TabIndex = 5
Top = 2775
Width = 1815
End
Begin VB.Label lblLabels
Caption = "短语:"
Height = 255
Index = 2
Left = 120
TabIndex = 4
Top = 240
Width = 1815
End
End
Attribute VB_Name = "frmSmsm"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public ok As String
Public value As m_smsmodel
Private Sub Cmdcancel_Click()
ok = False
Me.Hide
'Unload Me
End Sub
Private Sub CmdOk_Click()
value.text = Me.txtText
value.mid = Me.txtMID
ok = True
Me.Hide
'Unload Me
End Sub
Private Sub Form_Load()
Me.txtMID = value.mid
Me.txtText = value.text
End Sub
Private Sub Form_Unload(Cancel As Integer)
ok = False
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -