home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{9973B72E-F1FF-4E96-AA76-225706910672}#3.0#0"; "FlatStrip5.ocx"
- Begin VB.Form frmFlatTabObject
- BorderStyle = 3 'Fixed Dialog
- Caption = "FlatTab Object Demonstration"
- ClientHeight = 6720
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 6630
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "FlatTabObject.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 448
- ScaleMode = 3 'Pixel
- ScaleWidth = 442
- StartUpPosition = 2 'CenterScreen
- Begin PropertyGridCtl.PropertyGrid pgrFlatTab
- Height = 2670
- Left = 270
- TabIndex = 0
- Top = 1665
- Width = 6090
- _ExtentX = 10742
- _ExtentY = 4710
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- End
- Begin FlatStripDemonstration.pucEventList evlDemo
- Height = 1995
- Left = 270
- TabIndex = 1
- Top = 4500
- Width = 6135
- _ExtentX = 10821
- _ExtentY = 3519
- ExitVisible = -1 'True
- End
- Begin FlatStripCtl.FlatStrip ftsDemo
- Height = 285
- Left = 270
- Top = 945
- Width = 6090
- _ExtentX = 10742
- _ExtentY = 503
- ShowClientArea = 0 'False
- ActiveTab = 1
- BeginProperty Font {0BE35203-8F91-11CE-9DE3-00AA004BB851}
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- TabCount = 4
- Tab1Caption = "FlatStrip"
- Tab1ToolTipText = "Tab 1"
- Tab1Selected = -1 'True
- Tab2Caption = "Demonstration"
- Tab2ToolTipText = "Tab 2"
- Tab3Caption = "Sample"
- Tab3ToolTipText = "Tab 3"
- Tab4Caption = "Tabs"
- Tab4ToolTipText = "Tab 4"
- End
- Begin FlatStripDemonstration.pucLogoPane pucLogoPane1
- Align = 1 'Align Top
- Height = 750
- Left = 0
- Top = 0
- Width = 6630
- _ExtentX = 11695
- _ExtentY = 1323
- Picture = "FlatTabObject.frx":014A
- End
- Begin VB.Label lblHdr
- AutoSize = -1 'True
- Caption = "&Properties:"
- Height = 195
- Left = 270
- TabIndex = 2
- Top = 1440
- Width = 795
- End
- Attribute VB_Name = "frmFlatTabObject"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub evlDemo_ExitClicked()
- Unload Me
- End Sub
- Private Sub Form_Load()
- 'force a click for populate routines
- ftsDemo.ForceAction fsfaTabClick, 1
- End Sub
- Private Sub Form_QueryUnload(Cancel As Integer, UnloadMode As Integer)
- Set pgrFlatTab.ClientObject = Nothing
- End Sub
- Private Sub ftsDemo_TabClick(FlatTab As FlatStripCtl.FlatTab)
- Set pgrFlatTab.ClientObject = FlatTab
- evlDemo.Add "TabClick", FlatTab.Index
- End Sub
- Private Sub ftsDemo_TabDblClick(FlatTab As FlatStripCtl.FlatTab)
- evlDemo.Add "TabDblClick", FlatTab.Index
- End Sub
- Private Sub ftsDemo_TabMouseEnter(FlatTab As FlatStripCtl.FlatTab)
- evlDemo.Add "TabMouseEnter", FlatTab.Index
- End Sub
- Private Sub ftsDemo_TabMouseLeave(FlatTab As FlatStripCtl.FlatTab)
- evlDemo.Add "TabMouseLeave", FlatTab.Index
- End Sub
- Private Sub ftsDemo_TabRightClick(FlatTab As FlatStripCtl.FlatTab)
- evlDemo.Add "TabRightClick", FlatTab.Index
- End Sub
-