Adding text into a textbox

KevCB226

Registered User.
Local time
Today, 08:56
Joined
Oct 20, 2005
Messages
24
Hi

Is the following possible?

I have the code to add the text to a textbox, but what I would like to do is rather than to keep adding the text onto the end.
Make it so that it will add it before what I previously added, so that the newer data is always at the top.

Can I do this? The following is how I'm currently entering the data into the textbox:

Code:
If IsNull(Me.LastContact) Then
Me.LastContact = Me.List35.Value & " contacted " & Me.List38.Value & " by " & Me.cmboEngagement & " on " & Date & vbCrLf & _
    txtInput.Value
Else
If Not IsNull(Me.LastContact) Then
Me.LastContact = Me.LastContact & vbCrLf & Me.txtInput.Value
End If
End If

Thanks
 
Could it be so simple as to referse these 2 values?
Me.LastContact = Me.LastContact & vbCrLf & Me.txtInput.Value

oh... wait ... It is... ;)

Seasons greetings from Amsterdam

The Mailman
 

Users who are viewing this thread

Back
Top Bottom