A Microsoft Office (Excel, Word) forum. OfficeFrustration

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » OfficeFrustration forum » Microsoft Access » Using Forms
Site Map Home Register Authors List Search Today's Posts Mark Forums Read  

Append data to memo field



 
 
Thread Tools Display Modes
  #1  
Old January 22nd, 2006, 09:16 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Append data to memo field

Hello .. I have a number of different fields on a form that I would like
(sometimes) to append (their content) to data already in a Memo type field.
My idea is to create a command button to do the work, but would like some
help on the code for same.

Any help would be much appreciated.

Thanks!
Abay


  #2  
Old January 22nd, 2006, 09:50 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Append data to memo field

Abay,

The equivalent of this...
Me.NameOfMemo = Me.NameOfMemo & " " & Me.NameOfTextbox

Or, if it's going onto a new line in the memo field, like this...
Me.NameOfMemo = Me.NameOfMemo & vbCrLf & Me.NameOfTextbox

--
Steve Schapel, Microsoft Access MVP


Abay wrote:
Hello .. I have a number of different fields on a form that I would like
(sometimes) to append (their content) to data already in a Memo type field.
My idea is to create a command button to do the work, but would like some
help on the code for same.

Any help would be much appreciated.

Thanks!
Abay


  #3  
Old January 22nd, 2006, 10:40 PM posted to microsoft.public.access.forms
external usenet poster
 
Posts: n/a
Default Append data to memo field

Many thanks, very much appreciated . ... Abay

"Steve Schapel" wrote in message
...
Abay,

The equivalent of this...
Me.NameOfMemo = Me.NameOfMemo & " " & Me.NameOfTextbox

Or, if it's going onto a new line in the memo field, like this...
Me.NameOfMemo = Me.NameOfMemo & vbCrLf & Me.NameOfTextbox

--
Steve Schapel, Microsoft Access MVP


Abay wrote:
Hello .. I have a number of different fields on a form that I would like
(sometimes) to append (their content) to data already in a Memo type
field. My idea is to create a command button to do the work, but would
like some help on the code for same.

Any help would be much appreciated.

Thanks!
Abay



 




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is Off
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
PST file has reached maximum size Jeff C General Discussion 2 October 6th, 2005 01:35 PM
Help with relationship plase Rock General Discussion 5 July 4th, 2005 03:54 AM
Help with relationship plase Rock Database Design 5 July 4th, 2005 03:54 AM
Unable to have multiple queries feeding a single report PZ Straube Setting Up & Running Reports 15 June 15th, 2005 08:16 AM
Design help, please SillySally Using Forms 27 March 6th, 2005 05:11 AM


All times are GMT +1. The time now is 03:19 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 OfficeFrustration.
The comments are property of their posters.