home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 4935
- ClientLeft = 1095
- ClientTop = 1515
- ClientWidth = 6720
- Height = 5340
- Left = 1035
- LinkTopic = "Form1"
- ScaleHeight = 4935
- ScaleWidth = 6720
- Top = 1170
- Width = 6840
- Begin VB.TextBox Text3
- Height = 285
- Left = 2040
- TabIndex = 6
- Top = 4320
- Width = 2415
- End
- Begin VB.TextBox Text2
- Height = 285
- Left = 2040
- TabIndex = 2
- Top = 3720
- Width = 2415
- End
- Begin VB.TextBox Text1
- Height = 285
- Left = 2040
- TabIndex = 1
- Top = 3120
- Width = 2415
- End
- Begin CAL32Lib.Cal32 Cal321
- Height = 2175
- Left = 2055
- TabIndex = 0
- Top = 615
- Width = 2400
- _Version = 65536
- _ExtentX = 4233
- _ExtentY = 3836
- _StockProps = 33
- BackColor = 12632256
- BorderStyle = 1
- BeginProperty DaysOfWeekFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- BeginProperty DateCaptionFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- name = "MS Sans Serif"
- charset = 0
- weight = 700
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- BeginProperty DayFont {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 8.25
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- Draw3D = -1 'True
- SelectedDayTextColor= 16776960
- End
- Begin VB.Label Label4
- Caption = "Using String Format"
- Height = 255
- Left = 480
- TabIndex = 7
- Top = 4320
- Width = 1455
- End
- Begin VB.Label Label3
- Caption = "Try the right mouse button"
- Height = 615
- Left = 4800
- TabIndex = 5
- Top = 1560
- Width = 1335
- End
- Begin VB.Label Label2
- Caption = "Using String Date"
- Height = 255
- Left = 600
- TabIndex = 4
- Top = 3720
- Width = 1335
- End
- Begin VB.Label Label1
- Caption = "Using Date"
- Height = 255
- Left = 960
- TabIndex = 3
- Top = 3120
- Width = 975
- End
- Attribute VB_Name = "Form1"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Private Sub Cal321_DateChanged(ByVal NewDate As Date)
- Text1.Text = NewDate
- Text3.Text = Cal321.GetDateAsFormat("%m/%d/%Y")
- End Sub
- Private Sub Cal321_DateStringChanged(ByVal NewStringDate As String)
- Text2.Text = NewStringDate
- End Sub
- Private Sub Command1_Click()
- 'Unload Form1
- 'Dim NewForm As New Form2
- Form2.Show
- End Sub
- Private Sub Text1_Change()
- End Sub
- Private Sub Text2_Change()
- End Sub
- Private Sub Text3_Change()
- End Sub
-