I have a database open and i set each of the text box up with a field.
But there is one that i want to set up with two fields i.e.
I want to add Last Name and First Name from the database into the text box Name.
I don't know if this makes any sense.
Printable View
I have a database open and i set each of the text box up with a field.
But there is one that i want to set up with two fields i.e.
I want to add Last Name and First Name from the database into the text box Name.
I don't know if this makes any sense.
You can do this in a Sub:
TXTBox.Text = Rst!FirstName & Rst!LastName
Hope this helps
Don't forget the space between them :DQuote:
You can do this in a Sub:
TXTBox.Text = Rst!FirstName & " " & Rst!LastName
Hope this helps
I get an error it says object required.