My apologies, I re-read this an did not include the conc line. Here it is.
Me.txtProjectName = cboProjectClient.Column(1) & "-" &
Me.txtTicketNumber & "-" & Me.txtProjectType
I placed this in the OnCurrent event of the form but only the - - shows up.
What did I do wrong?
> To show it for existing data, you need the code in the form's Current event.
>
[quoted text clipped - 14 lines]
> > feedback.
> >>>> John
Is this a new record or an existing one? In other words, when you switch to
the new record, does it have values for the 3 controls or not?
If it doesn't, try check whether it's a new record or not:
Private Sub Form_Current()
If Me.NewRecord = False Then
' call your concatenation routine
End If
End Sub

Signature
Doug Steele, Microsoft Access MVP
http://I.Am/DougSteele
(no private e-mails, please)
> My apologies, I re-read this an did not include the conc line. Here it
> is.
[quoted text clipped - 31 lines]
>> > feedback.
>> >>>> John
JohnE - 11 Jun 2007 22:13 GMT
This would be an existing record. When adding a new record it should also be
showing it, which is the after_update events of the 3 fields. I just made
the change as you mentioned, still nothing. These fields are on a tab
control (no subform involved) which shouldn't make a difference as the tab
control is no different then the form.
Any further advice?
>>> John
> Is this a new record or an existing one? In other words, when you switch to
> the new record, does it have values for the 3 controls or not?
[quoted text clipped - 44 lines]
> >> > feedback.
> >> >>>> John
JohnE - 11 Jun 2007 22:21 GMT
I got it to work. Thanks for the help.
> Is this a new record or an existing one? In other words, when you switch to
> the new record, does it have values for the 3 controls or not?
[quoted text clipped - 44 lines]
> >> > feedback.
> >> >>>> John