home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Basic 6 Unleashed…sional Reference Edition)
/
Visual_Basic_6_Unleashed_Professional_Reference_Edition_Sams_1999.iso
/
Source
/
CHAP05
/
309X0508.TXT
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
UTF-8
Wrap
Text File
|
1998-05-27
|
430 bÂ
|
19 lines
Public Property Get Caption() As String
' The Caption property comes directly from
' lblCaption's Caption property.
Caption = lblCaption.Caption
End Property
Public Property Let Caption(ByVal NewValue As String)
' Caption's new value is passed directly to
' lblCaption's Caption property.
lblCaption.Caption = NewValue
UserControl.PropertyChanged "Caption"
End Property