home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{9973B72E-F1FF-4E96-AA76-225706910672}#3.0#0"; "FlatStrip5.ocx"
- Begin VB.Form frmCollectionString
- BorderStyle = 3 'Fixed Dialog
- Caption = "CollectionString Property Demonstration"
- ClientHeight = 7170
- ClientLeft = 45
- ClientTop = 330
- ClientWidth = 7875
- BeginProperty Font
- Name = "Tahoma"
- Size = 8.25
- Charset = 0
- Weight = 400
- Underline = 0 'False
- Italic = 0 'False
- Strikethrough = 0 'False
- EndProperty
- Icon = "CollectionString.frx":0000
- LinkTopic = "Form1"
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 478
- ScaleMode = 3 'Pixel
- ScaleWidth = 525
- StartUpPosition = 2 'CenterScreen
- Begin VB.CommandButton cmdUpdate
- Caption = "&Update"
- Height = 330
- Left = 5265
- TabIndex = 4
- Top = 6615
- Width = 1140
- End
- Begin VB.TextBox txtData
- Height = 1545
- Left = 180
- MultiLine = -1 'True
- ScrollBars = 2 'Vertical
- TabIndex = 3
- Top = 4905
- Width = 7440
- End
- Begin VB.CommandButton cmdClose
- Cancel = -1 'True
- Caption = "C&lose"
- Default = -1 'True
- Height = 330
- Left = 6480
- TabIndex = 0
- Top = 6615
- Width = 1140
- End
- Begin FlatStripDemonstration.pucTextTip pucTextTip1
- Height = 3120
- Left = 180
- TabIndex = 1
- Top = 900
- Width = 7440
- _ExtentX = 13123
- _ExtentY = 5503
- 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
- Text = $"CollectionString.frx":014A
- End
- Begin FlatStripCtl.FlatStrip ftsDemo
- Height = 285
- Left = 180
- Top = 4185
- Width = 7440
- _ExtentX = 13123
- _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"
- Tab1Selected = -1 'True
- Tab2Caption = "Demonstration"
- Tab3Caption = "Sample"
- Tab4Caption = "Tabs"
- End
- Begin VB.Label lblHdr
- AutoSize = -1 'True
- Caption = "&CollectionString:"
- Height = 195
- Left = 180
- TabIndex = 2
- Top = 4680
- Width = 1170
- End
- Begin FlatStripDemonstration.pucLogoPane pucLogoPane1
- Align = 1 'Align Top
- Height = 750
- Left = 0
- Top = 0
- Width = 7875
- _ExtentX = 13891
- _ExtentY = 1323
- Picture = "CollectionString.frx":048A
- End
- Attribute VB_Name = "frmCollectionString"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Option Explicit
- Private Sub cmdClose_Click()
- Unload Me
- End Sub
- Private Sub cmdUpdate_Click()
- 'set new collection data
- ftsDemo.CollectionString = txtData.Text
- 'and retrieve new value
- txtData.Text = ftsDemo.CollectionString
- End Sub
- Private Sub Form_Load()
- txtData.Text = ftsDemo.CollectionString
- End Sub
- Private Sub ftsDemo_Change(ByVal PreviousTab As Long, FlatTab As FlatStripCtl.FlatTab)
- txtData.Text = ftsDemo.CollectionString
- End Sub
-