Question : Auto Populate an unbound textbox on an unbound form

access 2003

I have a textbox called "txtLookup"

When the form is loaded I want it to populate with the value "SearchBox"

I was trying:

me.txtLookUp.setfocus
me.txtLookup.text = "SearcBox"

Thanks
fordraiders

Answer : Auto Populate an unbound textbox on an unbound form

Private Sub Form_Load()

me.txtLookUp = "SearchBox"

End Sub

mx
Random Solutions  
 
programming4us programming4us