一个用vb谢的编辑文本的工具

源代码在线查看: date-time.frm

软件大小: 160 K
上传用户: ASD___1234
关键词: 编辑
下载地址: 免注册下载 普通下载 VIP

相关代码

				VERSION 5.00
				Begin VB.Form form7 
				   BorderStyle     =   1  'Fixed Single
				   Caption         =   "Insert Date - Time"
				   ClientHeight    =   2865
				   ClientLeft      =   45
				   ClientTop       =   330
				   ClientWidth     =   4185
				   Icon            =   "Date-Time.frx":0000
				   LinkTopic       =   "Form1"
				   MaxButton       =   0   'False
				   MinButton       =   0   'False
				   ScaleHeight     =   2865
				   ScaleWidth      =   4185
				   ShowInTaskbar   =   0   'False
				   StartUpPosition =   1  'CenterOwner
				   Begin VB.CommandButton Command2 
				      Caption         =   "&Cancel"
				      Height          =   375
				      Left            =   2880
				      TabIndex        =   3
				      Top             =   600
				      Width           =   1215
				   End
				   Begin VB.CommandButton Command1 
				      Caption         =   "&OK"
				      Height          =   375
				      Left            =   2880
				      TabIndex        =   1
				      Top             =   120
				      Width           =   1215
				   End
				   Begin VB.ListBox Lsttime 
				      Height          =   2400
				      Left            =   120
				      TabIndex        =   0
				      Top             =   240
				      Width           =   2535
				   End
				   Begin VB.Frame Frame1 
				      Caption         =   "Formats"
				      Height          =   2775
				      Left            =   0
				      TabIndex        =   2
				      Top             =   0
				      Width           =   2775
				   End
				End
				Attribute VB_Name = "form7"
				Attribute VB_GlobalNameSpace = False
				Attribute VB_Creatable = False
				Attribute VB_PredeclaredId = True
				Attribute VB_Exposed = False
				Private Sub Command1_Click()
				ChildForms(frm).Text1.SelText = Lsttime.Text
				Unload Me
				End Sub
				
				Private Sub Command2_Click()
				form7.Hide
				End Sub
				
				Private Sub Form_Load()
				Lsttime.AddItem Format(Now, "long time")
				Lsttime.AddItem Format(Now, "short time")
				Lsttime.AddItem Format(Now, "medium time")
				Lsttime.AddItem Format(Now, "general date")
				Lsttime.AddItem Format(Now, "long date")
				Lsttime.AddItem Format(Now, "medium date")
				Lsttime.AddItem Format(Now, "short date")
				Lsttime.AddItem (Date)
				Lsttime.AddItem Format(Date, "dd - mm - yyyy")
				Lsttime.AddItem Format(Date, "dd-mm-yy")
				Lsttime.AddItem Format(Date, "dd/mm/yy")
				Lsttime.AddItem Format(Date, "dd/mm/yyyy")
				Lsttime.AddItem Format(Date, "dd/mm")
				Lsttime.AddItem Format(Date, "dd")
				Lsttime.AddItem Format(Time, "hh-mm-ss")
				Lsttime.AddItem Format(Time, "hh.mm.ss")
				Lsttime.AddItem Format(Time, "hh-mm")
				End Sub
				
				Private Sub Lsttime_DblClick()
				Command1_Click
				End Sub
							

相关资源