home *** CD-ROM | disk | FTP | other *** search
- VERSION 2.00
- Begin Form fMenu
- BackColor = &H00C0C0C0&
- Caption = "Resize me and see buttons size and elastic caption"
- ClientHeight = 4140
- ClientLeft = 525
- ClientTop = 1710
- ClientWidth = 7965
- Height = 4605
- Left = 435
- LinkTopic = "Form2"
- ScaleHeight = 4140
- ScaleWidth = 7965
- Top = 1335
- Width = 8145
- Begin VideoSoftElastic VSElastic1
- Align = 5 'Fill Container
- AutoSizeChildren= 7 'Proportional
- BackColor = &H00C0C0C0&
- BevelInner = 7 'Shadow
- BevelInnerWidth = 8
- BevelOuter = 0 'None
- BevelOuterWidth = 3
- BorderWidth = 0
- CaptionPos = 4 'Center Center
- FontBold = -1 'True
- FontItalic = -1 'True
- FontName = "Arial"
- FontSize = 18
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H0000FFFF&
- Height = 3615
- Index = 0
- Left = 0
- ShadowColor = &H00404040&
- TabIndex = 4
- Top = 0
- Width = 3825
- Begin VideoSoftElastic VSElastic2
- BackColor = &H00C0C0C0&
- BevelInnerWidth = 0
- BevelOuter = 5 'Fillet
- BorderWidth = 4
- Caption = "Welcome to VSVBX 4.0 Demo"
- CaptionPos = 4 'Center Center
- FontBold = -1 'True
- FontItalic = -1 'True
- FontName = "Arial"
- FontSize = 18
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H000000FF&
- Height = 2835
- Left = 420
- ShadowColor = &H00404040&
- TabIndex = 12
- Top = 375
- Width = 3120
- End
- End
- Begin VideoSoftElastic VSElastic1
- Align = 4 'Align Right
- AutoSizeChildren= 3 'Even Vertical
- BackColor = &H00C0C0C0&
- BevelInner = 7 'Shadow
- BevelInnerWidth = 3
- BevelOuter = 0 'None
- BevelOuterWidth = 1
- BorderWidth = 12
- ChildSpacing = 8
- Height = 3615
- Index = 1
- Left = 3825
- ShadowColor = &H00404040&
- TabIndex = 6
- Top = 0
- Width = 2070
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&Splitter bars"
- Height = 735
- Index = 0
- Left = 180
- TabIndex = 0
- Top = 180
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&Resizing/Flood"
- Height = 720
- Index = 1
- Left = 180
- TabIndex = 1
- Top = 1035
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&IndexTab"
- Height = 720
- Index = 2
- Left = 180
- TabIndex = 2
- Top = 1875
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&AWK Formulas"
- Height = 720
- Index = 3
- Left = 180
- TabIndex = 3
- Top = 2715
- Width = 1710
- End
- End
- Begin VideoSoftElastic VSElastic1
- Align = 4 'Align Right
- AutoSizeChildren= 3 'Even Vertical
- BackColor = &H00C0C0C0&
- BevelInner = 7 'Shadow
- BevelInnerWidth = 3
- BevelOuter = 0 'None
- BevelOuterWidth = 1
- BorderWidth = 12
- ChildSpacing = 8
- Height = 3615
- Index = 2
- Left = 5895
- ShadowColor = &H00404040&
- TabIndex = 7
- Top = 0
- Width = 2070
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&Fake Buttons"
- Height = 720
- Index = 7
- Left = 180
- TabIndex = 11
- Top = 2715
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&MultiTabs"
- Height = 720
- Index = 6
- Left = 180
- TabIndex = 10
- Top = 1875
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&No Labels"
- Height = 720
- Index = 5
- Left = 180
- TabIndex = 9
- Top = 1035
- Width = 1710
- End
- Begin CommandButton Command1
- BackColor = &H00808080&
- Caption = "&Proportional"
- Height = 735
- Index = 4
- Left = 180
- TabIndex = 8
- Top = 180
- Width = 1710
- End
- End
- Begin VideoSoftElastic StatusBar
- Align = 2 'Align Bottom
- BackColor = &H00C0C0C0&
- BevelInner = 0 'None
- BevelOuter = 1 'Raised
- BevelOuterWidth = 1
- BorderWidth = 2
- Caption = "VideoSoft, 2625 Alcatraz Avenue, Suite 271, Berkeley, California (510) 547-7295"
- CaptionPos = 4 'Center Center
- FontBold = 0 'False
- FontItalic = 0 'False
- FontName = "MS Sans Serif"
- FontSize = 8.25
- FontStrikethru = 0 'False
- FontUnderline = 0 'False
- ForeColor = &H00000000&
- Height = 525
- Left = 0
- TabIndex = 5
- Top = 3615
- Width = 7965
- WordWrap = 0 'False
- End
- Option Explicit
- Sub Command1_Click (Index As Integer)
- mousepointer = 11
- Select Case Index
- Case 0
- Splitter.Show 1
- Case 1
- fFlood.Show 1
- Case 2
- IndexTab.Show 1
- Case 3
- calculator.Show 1
- Case 4
- fProp.Show 1
- Case 5
- fnolabels.Show 1
- Case 6
- fMultiTabs.Show 1
- Case 7
- fbuttons.Show 1
- End Select
- mousepointer = 0
- End Sub
-