Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

set textbox value

Status
Not open for further replies.

citychap26

Programmer
Sep 19, 2004
144
GB
Hi All,

I want to set the value of a textbox at runtime using the reports open event.

I did the following

me.txtBox.value = "XXXX"

and it returned a 2448 error you can't assign a value to this control.

Is there a way of doing this without converting the textbox to a lable and doing

me.lable.caption = "XXXX"

Cheers

SK
 
Use a different event, Page, say, or Format for the section.
 
Hi

Thanks for the answer I used the format event, I actually found out a minute after posting (as per normal!!!)

Cheers

SK
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top