📄 frmemail.frm
字号:
VERSION 5.00
Begin VB.Form frmemail
Caption = "选择人员"
ClientHeight = 3990
ClientLeft = 60
ClientTop = 345
ClientWidth = 4680
LinkTopic = "Form1"
ScaleHeight = 3990
ScaleWidth = 4680
StartUpPosition = 3 '窗口缺省
Begin VB.CommandButton Command1
Caption = "添加"
Height = 495
Left = 1200
TabIndex = 1
Top = 3240
Width = 1575
End
Begin VB.ListBox List1
Height = 2760
Left = 360
TabIndex = 0
Top = 240
Width = 3375
End
End
Attribute VB_Name = "frmemail"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command2_Click()
frmmaif.Text1.Text = List1.Text
End Sub
Private Sub Command1_Click()
Unload Me
End Sub
Private Sub Form_Load()
Dim rs As New ADODB.Recordset
rs.Open "Select 姓名 from 系统管理", CN, 1, 3
Do While Not rs.EOF
List1.AddItem rs(0)
rs.MoveNext
Loop
End Sub
Private Sub List1_Click()
Command2_Click
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -