home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 2670
- ClientLeft = 165
- ClientTop = 450
- ClientWidth = 4485
- LinkTopic = "Form1"
- ScaleHeight = 2670
- ScaleWidth = 4485
- StartUpPosition = 3 'Windows Default
- Begin VB.TextBox Text1
- Height = 375
- Left = 240
- TabIndex = 4
- Text = "Text1"
- Top = 2040
- Width = 2295
- End
- Begin VB.CommandButton Command2
- Caption = "Quit"
- Height = 375
- Left = 2880
- TabIndex = 2
- Top = 2160
- Width = 1335
- End
- Begin VB.Frame Frame1
- Caption = "Frame1"
- Height = 1095
- Left = 240
- TabIndex = 1
- Top = 720
- Width = 3975
- Begin VB.OptionButton Option1
- Caption = "Option1"
- Height = 375
- Left = 720
- TabIndex = 3
- Top = 360
- Width = 3015
- End
- End
- Begin VB.Timer Timer1
- Interval = 100
- Left = 3840
- Top = 0
- End
- Begin VB.Label Label1
- Alignment = 2 'Center
- Caption = "ActiveResizer OCX Demo....."
- BeginProperty Font
- Name = "MS Sans Serif"
- Size = 9.75
- Charset = 0
- Weight = 700
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Height = 372
- Left = 240
- TabIndex = 0
- Top = 120
- Width = 4092
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub Command2_Click()
- End
- End Sub
- Private Sub Form_Load()
- Set AutoControl1.parentForm = Form1
- End Sub
- Private Sub Form_Resize()
- AutoControl1.AutoSize 'in form resize event call AutoForm dll function
- End Sub
- Private Sub Timer1_Timer()
- Dim t As Integer
- Label1.Caption = Mid$(Label1.Caption, 2, Len(Label1.Caption) - 1) + Left$(Label1.Caption, 1)
- End Sub
-