?? txl.frm
字號:
VERSION 5.00
Begin VB.Form Form1
Caption = "Form1"
ClientHeight = 5400
ClientLeft = 60
ClientTop = 345
ClientWidth = 6525
LinkTopic = "Form1"
ScaleHeight = 5400
ScaleWidth = 6525
StartUpPosition = 3 '窗口缺省
Begin VB.TextBox Text2
Height = 495
Left = 360
TabIndex = 7
Top = 3240
Width = 2295
End
Begin VB.TextBox Text1
Height = 495
Left = 360
TabIndex = 6
Top = 2040
Width = 2295
End
Begin VB.ListBox List1
Height = 600
ItemData = "TXL.frx":0000
Left = 360
List = "TXL.frx":0002
TabIndex = 5
Top = 600
Width = 2295
End
Begin VB.CommandButton Command1
Caption = "退出"
Height = 495
Left = 3960
TabIndex = 4
Top = 4200
Width = 1215
End
Begin VB.Image Image1
BorderStyle = 1 'Fixed Single
Height = 3015
Left = 3360
Top = 960
Width = 2655
End
Begin VB.Label Label4
Caption = " 照 片"
Height = 255
Left = 3720
TabIndex = 3
Top = 480
Width = 1575
End
Begin VB.Label Label3
Caption = "E-Mail地址"
Height = 375
Left = 600
TabIndex = 2
Top = 2640
Width = 1335
End
Begin VB.Label Label2
Caption = "電話號碼"
Height = 375
Left = 600
TabIndex = 1
Top = 1440
Width = 1335
End
Begin VB.Label Label1
Caption = "姓名"
Height = 375
Left = 600
TabIndex = 0
Top = 240
Width = 1335
End
End
Attribute VB_Name = "Form1"
Attribute VB_GlobalNameSpace = False
Attribute VB_Creatable = False
Attribute VB_PredeclaredId = True
Attribute VB_Exposed = False
Private Sub Command1_Click()
End
End Sub
Private Sub Form_Load()
List1.AddItem "劉保全"
List1.AddItem "阮宏政"
List1.AddItem "郭金龍"
List1.AddItem "王景山"
End Sub
Private Sub List1_Click()
If List1.ListIndex = 0 Then
Text1.Text = "0566-2029708"
Text2.Text = "lbq@ah163.com"
Image1.Stretch = True
Image1.Picture = LoadPicture("c:\program files\common files" & "\microsoft shared\clipart\cagcat50\Bd06784_.wmf")
End If
If List1.ListIndex = 1 Then
Text1.Text = "0566-2029416"
Text2.Text = "yuanhongcheng@ah163.com"
Image1.Stretch = True
Image1.Picture = LoadPicture("c:\program files\common files" & "\microsoft shared\clipart\cagcat50\Bd07175_.wmf")
End If
If List1.ListIndex = 2 Then
Text1.Text = "0566-2029123"
Text2.Text = "thzx@ah163.com"
Image1.Stretch = True
Image1.Picture = LoadPicture("c:\program files\common files" & "\microsoft shared\clipart\cagcat50\Bd04956_.wmf")
End If
If List1.ListIndex = 3 Then
Text1.Text = "0566-2029412"
Text2.Text = "liming@ah163.com"
Image1.Stretch = True
Image1.Picture = LoadPicture("c:\program files\common files" & "\microsoft shared\clipart\cagcat50\Bd05552_.wmf")
End If
End Sub
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -