📄 openbank.frm
字号:
VERSION 5.00
Begin VB.Form frmOpen
BorderStyle = 3 'Fixed Dialog
Caption = "自动取款机 (A.T.M.)"
ClientHeight = 3720
ClientLeft = 1455
ClientTop = 2745
ClientWidth = 5070
Icon = "openbank.frx":0000
LinkTopic = "Form1"
MaxButton = 0 'False
MinButton = 0 'False
ScaleHeight = 3720
ScaleWidth = 5070
Begin VB.Frame Label2
Caption = "请选择一种语言:"
Height = 2175
Left = 240
TabIndex = 10
Top = 1320
Width = 4575
Begin VB.CommandButton Command1
Caption = "English"
Height = 375
Left = 840
TabIndex = 0
Top = 480
Width = 1095
End
Begin VB.CommandButton Command2
Caption = "Fran鏰is"
Height = 375
Left = 840
TabIndex = 1
Top = 960
Width = 1095
End
Begin VB.CommandButton Command3
Caption = "Deutsch"
Height = 375
Left = 840
TabIndex = 2
Top = 1440
Width = 1095
End
Begin VB.CommandButton Command4
Caption = "Italiano"
Height = 375
Left = 3000
TabIndex = 3
Top = 480
Width = 1095
End
Begin VB.CommandButton Command5
Caption = "Espa駉l"
Height = 375
Left = 3000
TabIndex = 4
Top = 960
Width = 1095
End
Begin VB.CommandButton Command6
Caption = "汉语"
Height = 375
Left = 3000
TabIndex = 5
Top = 1440
Width = 1095
End
Begin VB.Image Image
Height = 375
Index = 0
Left = 360
Picture = "openbank.frx":000C
Stretch = -1 'True
Top = 480
Width = 375
End
Begin VB.Image Image
Height = 375
Index = 1
Left = 360
Picture = "openbank.frx":0316
Stretch = -1 'True
Top = 960
Width = 375
End
Begin VB.Image Image
Height = 375
Index = 2
Left = 360
Picture = "openbank.frx":0620
Stretch = -1 'True
Top = 1440
Width = 375
End
Begin VB.Image Image
Height = 375
Index = 3
Left = 2520
Picture = "openbank.frx":092A
Stretch = -1 'True
Top = 480
Width = 375
End
Begin VB.Image Image
Height = 375
Index = 4
Left = 2520
Picture = "openbank.frx":0C34
Stretch = -1 'True
Top = 960
Width = 375
End
Begin VB.Image Image
Height = 375
Index = 5
Left = 2520
Picture = "openbank.frx":0F3E
Stretch = -1 'True
Top = 1440
Width = 375
End
End
Begin VB.Line Line1
X1 = 0
X2 = 5280
Y1 = 0
Y2 = 0
End
Begin VB.Label Label5
Alignment = 2 'Center
Caption = """全球用户服务"""
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 240
TabIndex = 9
Top = 840
Width = 4695
End
Begin VB.Label Label4
Alignment = 2 'Center
Caption = "自动取款机"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 240
TabIndex = 8
Top = 600
Width = 4695
End
Begin VB.Label Label3
Alignment = 2 'Center
Caption = "欢迎使用"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 240
TabIndex = 7
Top = 120
Width = 4695
End
Begin VB.Label Label1
Alignment = 2 'Center
Caption = "世界旅行者银行"
BeginProperty Font
Name = "宋体"
Size = 9.75
Charset = 134
Weight = 700
Underline = 0 'False
Italic = 0 'False
Strikethrough = 0 'False
EndProperty
Height = 240
Left = 360
TabIndex = 6
Top = 360
Width = 4695
End
Begin VB.Menu mnufiles
Caption = "文件(&F)"
Begin VB.Menu mnuaboutitem
Caption = "关于……"
End
Begin VB.Menu mnulineitem
Caption = "-"
End
Begin VB.Menu mnuquititem
Caption = "退出"
Shortcut = ^Q
End
End
End
Attribute VB_Name = "frmOpen"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
' 每个命令按钮表示一种语言。
' 如果用户选择英语,应用程序将加载从 16 到 47 的 ID 号参数
Sub Command1_Click()
i = 16 ' 用户选择“英语”
frmInput.Show 1
End Sub
Sub Command2_Click()
i = 48 ' 用户选择“法语”
frmInput.Show 1
End Sub
Sub Command3_Click()
i = 80 ' 用户选择“德语”
frmInput.Show 1
End Sub
Sub Command4_Click()
i = 112 ' 用户选择“意大利语”
frmInput.Show 1
End Sub
Sub Command5_Click()
i = 144 ' 用户选择“西班牙语”
frmInput.Show 1
End Sub
Sub Command6_Click() ' 汉语仅在 DBCS 系统中可用
i = 176 ' 用户选择“汉语”
frmInput.Show 1
End Sub
Private Sub Form_Load()
' 初始化货币转换表
ConversionTable_Initialize
' 初始化按钮的鼠标图标光标
Cursor_Initialize
SetCursor Command1
SetCursor Command2
SetCursor Command3
SetCursor Command4
SetCursor Command5
SetCursor Command6
End Sub
Private Sub mnuaboutitem_Click()
Load Form1
Form1.Show
End Sub
Private Sub mnuquititem_Click()
End
End Sub
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -