onclick event

moose

c'mon Chelsea
Local time
Today, 15:37
Joined
May 18, 2001
Messages
139
i have the following code behind a comand button

Private Sub Command154_Click()
Image153.Visible = True
Text155.Visible = True
Text155.Text = "Canceled"
End Sub

text155.text = "Canceled" doesn't seem to work.
what i want it to do is when clicked, add text into a text box.
can anyone tell me where i am going wrong please?
 
Or try text155.setfocus
text155.text = "Canceled"

This should work.

Greetings,

Albert
 
You can also just say Text155 = 'Canceled'

Cheers,
SteveA

[This message has been edited by SteveA (edited 12-22-2001).]
 
Thanks everyone, it works a treat.
!! Happy New Year !!
 

Users who are viewing this thread

Back
Top Bottom