Link to home
Start Free TrialLog in
Avatar of ljcor
ljcorFlag for United States of America

asked on

VB6 - Can' get text into StatusBar

This code receives a runtime error 438: Object does not support this property or method.  Error is in the StatusBar1 line of code.  The passed control is a textbox with info in the Tag.

Private Sub ShowTag(ctl As Control)
    Dim TagMsg As String
    TagMsg = ctl.Tag
    StatusBar1 =  TagMsg
End Sub
ASKER CERTIFIED SOLUTION
Avatar of Jorge Paulino
Jorge Paulino
Flag of Portugal image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of ljcor

ASKER

Thanks jp.  I appreciate that.
Glad I could help and thanks for the grade.
jpaulino