home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form fNolabels
- Caption = "There are no labels on this form"
- Height = 2520
- Left = 1155
- LinkTopic = "Form2"
- ScaleHeight = 2055
- ScaleWidth = 5475
- Top = 1230
- Width = 5655
- Begin VideoSoftElastic VSElastic1
- AccessKey = -1 'True
- Align = 5 'Fill Container
- AutoSizeChildren= 3 'Even Vertical
- BackColor = &H00C0C0C0&
- BevelOuter = 1 'Raised
- BevelOuterWidth = 1
- Height = 1455
- Left = 0
- TabIndex = 0
- TagWidth = 1500
- Top = 0
- Width = 5475
- Begin TextBox Text3
- Height = 360
- Left = 1590
- TabIndex = 3
- Tag = "&Company"
- Text = "Text3"
- Top = 1005
- Width = 3795
- End
- Begin TextBox Text2
- Height = 360
- Left = 1590
- TabIndex = 2
- Tag = "&Last Name"
- Text = "Text2"
- Top = 555
- Width = 3795
- End
- Begin TextBox Text1
- Height = 375
- Left = 1590
- TabIndex = 1
- Tag = "&First Name"
- Text = "Text1"
- Top = 90
- Width = 3795
- End
- End
- Begin VideoSoftElastic VSElastic2
- Align = 2 'Align Bottom
- AutoSizeChildren= 1 'Even Horizontal
- BackColor = &H00C0C0C0&
- BevelOuter = 1 'Raised
- BevelOuterWidth = 1
- Height = 600
- Left = 0
- TabIndex = 4
- Top = 1455
- Width = 5475
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "&Hint"
- Height = 420
- Index = 2
- Left = 3690
- TabIndex = 7
- Top = 90
- Width = 1695
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "F&oreColor"
- Height = 420
- Index = 1
- Left = 1890
- TabIndex = 6
- Top = 90
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00C0C0C0&
- Caption = "Caption&Pos"
- Height = 420
- Index = 0
- Left = 90
- TabIndex = 5
- Top = 90
- Width = 1710
- End
- End
- Option Explicit
- Sub Command1_Click (Index As Integer)
- Select Case Index
- Case 0 'Change Caption Positions
- VSelastic1.CaptionPos = (VSelastic1.CaptionPos + 1) Mod 9
-
- Case 1 'Change to random colors
- VSelastic1.ForeColor = QBColor(Rnd * 15)
-
- Case 2
- MsgBox "Check the Tag property of the text boxes and the TagWidth property of the Elastic"
- End Select
- End Sub
-