home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frmOpen
- BorderStyle = 3 'Fixed Dialog
- Caption = "Automated Teller Machine (A.T.M.)"
- ClientHeight = 3765
- ClientLeft = 1455
- ClientTop = 2460
- ClientWidth = 5070
- Height = 4140
- Icon = "OPENBANK.frx":0000
- Left = 1410
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 3765
- ScaleWidth = 5070
- Top = 2130
- Width = 5160
- Begin VB.Frame Label2
- Caption = "Please select a language:"
- 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
- 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
- Height = 375
- Left = 3000
- TabIndex = 4
- Top = 960
- Width = 1095
- End
- Begin VB.CommandButton Command6
- Caption = "Japan"
- Height = 375
- Left = 3000
- TabIndex = 5
- Top = 1440
- Visible = 0 'False
- 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
- Visible = 0 'False
- Width = 375
- End
- End
- Begin VB.Label Label5
- Alignment = 2 'Center
- Caption = """Custom service around the world"""
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 240
- Left = 135
- TabIndex = 9
- Top = 840
- Width = 4700
- End
- Begin VB.Label Label4
- Alignment = 2 'Center
- Caption = "Automated Teller Machine"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.6
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 240
- Left = 135
- TabIndex = 8
- Top = 600
- Width = 4700
- End
- Begin VB.Label Label3
- Alignment = 2 'Center
- Caption = "Welcome to the "
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.6
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 240
- Left = 135
- TabIndex = 7
- Top = 120
- Width = 4700
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Caption = "WORLD TRAVELER BANK"
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.6
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 240
- Left = 135
- TabIndex = 6
- Top = 360
- Width = 4700
- End
- Attribute VB_Name = "frmOpen"
- Attribute VB_Base = "0{E762988B-C849-11CF-90FB-00A0C9054348}"
- Attribute VB_Creatable = False
- Attribute VB_TemplateDerived = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Attribute VB_Customizable = False
- ' Each command button represents a language. If the user chooses English, the application
- ' will load arguments with ID numbers from 16 to 47.
- Sub command1_click()
- i = 16 ' User chose English.
- frmInput.Show 1
- End Sub
- Sub Command2_Click()
- i = 48 ' User chose French.
- frmInput.Show 1
- End Sub
- Sub Command3_Click()
- i = 80 ' User chose German.
- frmInput.Show 1
- End Sub
- Sub Command4_Click()
- i = 112 ' User chose Italian.
- frmInput.Show 1
- End Sub
- Sub Command5_Click()
- i = 144 ' User chose Spanish.
- frmInput.Show 1
- End Sub
- Sub Command6_Click() ' Japanese is only available on DBCS systems
- i = 176 ' User chose Japanese.
- frmInput.Show 1
- End Sub
- Private Sub Form_Load()
- ' Initialize the currency conversion table.
- ConversionTable_Initialize
- ' Initialize the mouse icon cursor for the button.
- Cursor_Initialize
- SetCursor Command1
- SetCursor Command2
- SetCursor Command3
- SetCursor Command4
- SetCursor Command5
- SetCursor Command6
- End Sub
-