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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Concatenate values of four TextBoxes into one TextBox

Status
Not open for further replies.

Oblvion

Programmer
Aug 24, 2009
8
CA
to concatenate first value from first 3 textboxes
and year value from fourth textbox
for LED1962 to display in MemberID textbox

L from Littlejohn (txtlastname textbox)
E from Eugene (firstname textbox)
D from Dale (middlename textbox)
1962 from Year (birthyear textbox)
 
i solved my own problem...

Private Sub cmdBirthDateAutoFill_Click()

MemberID = Left([Last], 1) & Left([First], 1) & Left([Middle], 1) & [BYear]

End Sub
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top