home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 9 / IOPROG_9.ISO / soft / java / axbridge.exe / _SETUP.1 / Invisible.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1997-09-16  |  1.7 KB  |  54 lines

  1. VERSION 5.00
  2. Object = "{6C2E24E1-2EC0-11D1-85D3-00805F2ADE08}#1.0#0"; "beans.ocx"
  3. Begin VB.Form Form1 
  4.    Caption         =   "Form1"
  5.    ClientHeight    =   5055
  6.    ClientLeft      =   60
  7.    ClientTop       =   345
  8.    ClientWidth     =   4935
  9.    LinkTopic       =   "Form1"
  10.    ScaleHeight     =   5055
  11.    ScaleWidth      =   4935
  12.    StartUpPosition =   3  'Windows Default
  13.    Begin TickTockCtl.TickTock TickTock1 
  14.       Left            =   1320
  15.       Top             =   1080
  16.       Interval        =   5
  17.       BeginProperty Class 
  18.          PersistedArray  =   "Invisible.frx":0000
  19.       EndProperty
  20.       Seconds         =   874434316
  21.    End
  22.    Begin VB.TextBox Text1 
  23.       Height          =   615
  24.       Left            =   1560
  25.       TabIndex        =   0
  26.       Text            =   "Text1"
  27.       Top             =   4080
  28.       Width           =   1695
  29.    End
  30.    Begin VB.Label Label2 
  31.       Caption         =   "This text should be refreshed with the ticker value in running mode"
  32.       Height          =   855
  33.       Left            =   360
  34.       TabIndex        =   2
  35.       Top             =   3000
  36.       Width           =   4215
  37.    End
  38.    Begin VB.Label Label1 
  39.       Caption         =   "Example of an invisible bean forwarding the PropertyChangeEvent and does nothing else"
  40.       Height          =   495
  41.       Left            =   240
  42.       TabIndex        =   1
  43.       Top             =   240
  44.       Width           =   4575
  45.    End
  46. Attribute VB_Name = "Form1"
  47. Attribute VB_GlobalNameSpace = False
  48. Attribute VB_Creatable = False
  49. Attribute VB_PredeclaredId = True
  50. Attribute VB_Exposed = False
  51. Private Sub TickTock1_propertyChange(ByVal PropertyChangeEvent1 As Object)
  52.     Text1.Text = PropertyChangeEvent1.getNewValue
  53. End Sub
  54.