text box

  • Thread starter Thread starter martin placek
  • Start date Start date
M

martin placek

Hello
I would like to equate the contents of a text box to a
variable. Dirk told me that i should use the value
property for this, but it is not an option in VBA. Am i
missing something?

Thanks in advance

Martin
 
martin placek said:
Hello
I would like to equate the contents of a text box to a
variable. Dirk told me that i should use the value
property for this, but it is not an option in VBA. Am i
missing something?

You must be missing something? An Access text box always has a Value
property. You are working in Access, not VB, right? Please show the
code you're trying to execute, and describe the background details a
little.
 
many thanks. I obviously wasnt looking hard enough
-----Original Message-----
dim varYourVariable as variant 'for example purposes
varYourVariable = Text1.Value


.
 
Back
Top