📄 frmsearchcustomers.frm
字号:
VERSION 5.00
Begin VB.Form frmSearchCustomers
Caption = "客户信息模糊查询"
ClientHeight = 1815
ClientLeft = 60
ClientTop = 345
ClientWidth = 3480
KeyPreview = -1 'True
LinkTopic = "Form1"
ScaleHeight = 1815
ScaleWidth = 3480
StartUpPosition = 2 '屏幕中心
Begin VB.Frame Frame2
Caption = "--操作提示符--"
Height = 840
Left = 0
TabIndex = 2
Top = 850
Width = 3375
Begin VB.CommandButton Command2
Caption = "退出"
Height = 375
Left = 1800
TabIndex = 4
Top = 240
Width = 1335
End
Begin VB.CommandButton Command1
Caption = "查找"
Height = 375
Left = 240
TabIndex = 3
Top = 240
Width = 1215
End
End
Begin VB.Frame Frame1
Caption = "--客户姓名或卡号或联系电话:--"
Height = 735
Left = 0
TabIndex = 0
Top = 120
Width = 3375
Begin VB.TextBox Text1
Height = 375
Left = 150
TabIndex = 1
Top = 240
Width = 3015
End
End
End
Attribute VB_Name = "frmSearchCustomers"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Option Explicit
Private Sub Command1_Click()
scustomers = Text1.Text
frmCustomers.com4
End Sub
Private Sub Command2_Click()
Unload Me
End Sub
Private Sub Form_KeyPress(KeyAscii As Integer)
If KeyAscii = 13 Then Command1_Click
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -