VERSION 5.00 Begin VB.Form ChangeForm BorderStyle = 4 'Fixed ToolWindow Caption = "Change" ClientHeight = 1575 ClientLeft = 4590 ClientTop = 4335 ClientWidth = 5700 ControlBox = 0 'False LinkTopic = "Form1" MaxButton = 0 'False MinButton = 0 'False PaletteMode = 1 'UseZOrder ScaleHeight = 1575 ScaleWidth = 5700 ShowInTaskbar = 0 'False StartUpPosition = 2 'CenterScreen Begin VB.TextBox DateT Height = 285 Left = 720 TabIndex = 4 Top = 480 Width = 3615 End Begin VB.TextBox DescT Height = 285 Left = 720 TabIndex = 2 Top = 120 Width = 3615 End Begin VB.CommandButton Cancel Cancel = -1 'True Caption = "Cancel" Height = 495 Left = 2760 TabIndex = 1 Top = 960 Width = 1575 End Begin VB.CommandButton Ok Caption = "OK" Default = -1 'True Height = 495 Left = 720 TabIndex = 0 Top = 960 Width = 1575 End Begin VB.Label Label2 Alignment = 1 'Right Justify Caption = "Date:" Height = 255 Left = 120 TabIndex = 5 Top = 480 Width = 495 End Begin VB.Label Label1 Alignment = 1 'Right Justify Caption = "Desc:" Height = 255 Left = 120 TabIndex = 3 Top = 120 Width = 495 End End Attribute VB_Name = "ChangeForm" Attribute VB_GlobalNameSpace = False Attribute VB_Creatable = False Attribute VB_PredeclaredId = True Attribute VB_Exposed = False Public Item As Integer Dim Sel As Integer Private Sub Cancel_Click() Me.Hide End Sub Private Sub Ok_Click() CountDown.SetItem Item, CDate(DateT.Text), DescT.Text Me.Hide End Sub