📄 change.frm
字号:
VERSION 5.00
Begin VB.Form Change
Caption = "转帐"
ClientHeight = 2895
ClientLeft = 60
ClientTop = 450
ClientWidth = 4680
LinkTopic = "Form4"
ScaleHeight = 2895
ScaleWidth = 4680
StartUpPosition = 2 'CenterScreen
Begin VB.CommandButton Command2
Caption = "返回"
Height = 495
Left = 2760
TabIndex = 3
Top = 2040
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "下一步"
Height = 495
Left = 840
TabIndex = 2
Top = 2040
Width = 1215
End
Begin VB.TextBox Text1
Height = 495
Left = 720
TabIndex = 1
Top = 1080
Width = 3375
End
Begin VB.Label Label1
Caption = "请输入您要转帐的帐号"
BeginProperty Font
Name = "幼圆"
Size = 12
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1080
TabIndex = 0
Top = 480
Width = 2775
End
End
Attribute VB_Name = "Change"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Public ip As String
Private Sub Command1_Click()
Dim SQL As String
If Text1.Text = "" Then
MsgBox "请输入您要转入的帐号,然后在进行转帐操作!", vbExclamation + vbOKOnly, "系统提示"
Text1.Text = ""
Text1.SetFocus
Exit Sub
End If
SQL = ""
SQL = "select count(*) from 银行表 where 帐号='" & Trim(Text1.Text) & "' "
Set adoRS = adoCon.Execute(SQL)
If adoRS(0) = 0 Then
MsgBox "您输入的帐号不存在,请重新输入!", vbExclamation + vbOKOnly, "系统提示"
Text1.Text = ""
Text1.SetFocus
Exit Sub
End If
ip = Trim(Text1.Text)
Unload Me
Change2.Show
End Sub
Private Sub Command2_Click()
Unload Me
Main.Show
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -