📄 取款.frm
字号:
VERSION 5.00
Begin VB.Form Form5
BorderStyle = 0 'None
Caption = "Form5"
ClientHeight = 5505
ClientLeft = 0
ClientTop = 0
ClientWidth = 7005
LinkTopic = "Form5"
Picture = "取款.frx":0000
ScaleHeight = 5505
ScaleWidth = 7005
ShowInTaskbar = 0 'False
StartUpPosition = 2 '屏幕中心
Begin VB.CommandButton Command2
Caption = "返回"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 3960
Picture = "取款.frx":5927
Style = 1 'Graphical
TabIndex = 4
Top = 4080
Width = 1215
End
Begin VB.CommandButton Command1
Caption = "确定"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 495
Left = 1560
Picture = "取款.frx":B24E
Style = 1 'Graphical
TabIndex = 3
Top = 4080
Width = 1215
End
Begin VB.TextBox Text1
BeginProperty Font
Name = "宋体"
Size = 15.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 500
Left = 1200
TabIndex = 2
Top = 2520
Width = 5000
End
Begin VB.Label Label2
AutoSize = -1 'True
BackStyle = 0 'Transparent
Caption = "请输入取款金额"
BeginProperty Font
Name = "隶书"
Size = 18
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 360
Left = 120
TabIndex = 1
Top = 1800
Width = 2520
End
Begin VB.Label Label1
BackStyle = 0 'Transparent
Caption = "注意:本取款机只能提供50,100元面植的钞票"
BeginProperty Font
Name = "隶书"
Size = 15
Charset = 134
Weight = 400
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
ForeColor = &H00800000&
Height = 795
Left = 120
TabIndex = 0
Top = 720
Width = 6765
End
End
Attribute VB_Name = "Form5"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
Call TakeMoney
Call InsertDatabase
End Sub
Private Sub Command2_Click()
Unload Form5
Form4.Show
End Sub
Private Sub Form_Load()
'用户选择的是英语
If i = 1 Then
Label1.Caption = "This ATM provided money which value is 50 or 100"
Label2.Caption = "Please Input The Amount Of The Money"
Command1.Caption = "OK"
Command2.Caption = "Back"
End If
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -