home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form frm7_3_2
- ClientHeight = 1908
- ClientLeft = 1116
- ClientTop = 1488
- ClientWidth = 1584
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 7.8
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- LinkTopic = "Form1"
- PaletteMode = 1 'UseZOrder
- ScaleHeight = 1908
- ScaleWidth = 1584
- Begin VB.CommandButton cmdDigit
- Caption = "9"
- Height = 255
- Index = 9
- Left = 840
- TabIndex = 9
- Top = 840
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "8"
- Height = 255
- Index = 8
- Left = 480
- TabIndex = 8
- Top = 840
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "7"
- Height = 255
- Index = 7
- Left = 120
- TabIndex = 7
- Top = 840
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "6"
- Height = 255
- Index = 6
- Left = 840
- TabIndex = 6
- Top = 480
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "5"
- Height = 255
- Index = 5
- Left = 480
- TabIndex = 5
- Top = 480
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "4"
- Height = 255
- Index = 4
- Left = 120
- TabIndex = 4
- Top = 480
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "3"
- Height = 255
- Index = 3
- Left = 840
- TabIndex = 3
- Top = 120
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "2"
- Height = 255
- Index = 2
- Left = 480
- TabIndex = 2
- Top = 120
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "1"
- Height = 255
- Index = 1
- Left = 120
- TabIndex = 1
- Top = 120
- Width = 255
- End
- Begin VB.CommandButton cmdDigit
- Caption = "0"
- Height = 255
- Index = 0
- Left = 480
- TabIndex = 0
- Top = 1200
- Width = 255
- End
- Begin VB.Label lblPhoneNum
- BorderStyle = 1 'Fixed Single
- Height = 255
- Left = 120
- TabIndex = 10
- Top = 1560
- Width = 975
- End
- Attribute VB_Name = "frm7_3_2"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub cmdDigit_Click(index As Integer)
- lblPhoneNum.Caption = lblPhoneNum.Caption & Right(Str(index), 1)
- If Len(lblPhoneNum.Caption) = 3 Then
- lblPhoneNum.Caption = lblPhoneNum.Caption & "-"
- ElseIf Len(lblPhoneNum.Caption) = 8 Then
- MsgBox "Dialing ...", , ""
- lblPhoneNum.Caption = ""
- End If
- End Sub
-