home *** CD-ROM | disk | FTP | other *** search
- VERSION 5.00
- Object = "{6C2E24E1-2EC0-11D1-85D3-00805F2ADE08}#1.0#0"; "beans.ocx"
- Begin VB.Form Form1
- Caption = "Form1"
- ClientHeight = 5055
- ClientLeft = 60
- ClientTop = 345
- ClientWidth = 4935
- LinkTopic = "Form1"
- ScaleHeight = 5055
- ScaleWidth = 4935
- StartUpPosition = 3 'Windows Default
- Begin TickTockCtl.TickTock TickTock1
- Left = 1320
- Top = 1080
- Interval = 5
- BeginProperty Class
- PersistedArray = "Invisible.frx":0000
- EndProperty
- Seconds = 874434316
- End
- Begin VB.TextBox Text1
- Height = 615
- Left = 1560
- TabIndex = 0
- Text = "Text1"
- Top = 4080
- Width = 1695
- End
- Begin VB.Label Label2
- Caption = "This text should be refreshed with the ticker value in running mode"
- Height = 855
- Left = 360
- TabIndex = 2
- Top = 3000
- Width = 4215
- End
- Begin VB.Label Label1
- Caption = "Example of an invisible bean forwarding the PropertyChangeEvent and does nothing else"
- Height = 495
- Left = 240
- TabIndex = 1
- Top = 240
- Width = 4575
- End
- Attribute VB_Name = "Form1"
- Attribute VB_GlobalNameSpace = False
- Attribute VB_Creatable = False
- Attribute VB_PredeclaredId = True
- Attribute VB_Exposed = False
- Private Sub TickTock1_propertyChange(ByVal PropertyChangeEvent1 As Object)
- Text1.Text = PropertyChangeEvent1.getNewValue
- End Sub
-