⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 txl.frm

📁 本程序是用vb语言实现的具有通讯录功能的
💻 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 + -