|
-
Jun 3rd, 2002, 04:20 PM
#1
Thread Starter
Lively Member
txtBox question
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.
-
Jun 3rd, 2002, 04:53 PM
#2
You can do this in a Sub:
TXTBox.Text = Rst!FirstName & Rst!LastName
Hope this helps
-
Jun 3rd, 2002, 08:36 PM
#3
You can do this in a Sub:
TXTBox.Text = Rst!FirstName & " " & Rst!LastName
Hope this helps
Don't forget the space between them
-
Jun 4th, 2002, 08:30 AM
#4
Thread Starter
Lively Member
I get an error it says object required.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|