Memo With Date
Sep 28, 2006
Seem to be having a brain fade here, I have spent all day trying to figure this out.
I am trying to add notes to one of my forms with a date stamp. The form will be viewed every week so new notes will be added with new date stamp any ideas of the best way to do this.
Thanks in advance Kim
View Replies
ADVERTISEMENT
May 17, 2005
I have an application that has a text box on a form that points to a memo data type.
On the form, I wish to allow the users to insert the system date with a short-cut key. (Trying to use Ctrl-D).
I have coded a Keypress Event that checks for the Ctrl-D. "Current" code is below:
===============================
Private Sub PM_Comments_KeyPress(KeyAscii As Integer)
Dim MyString As String
Dim MyDate As Variant
'Check to see if user pressed Ctrl-D
If KeyAscii = 4 Then
MyDate = Date
MyString = Format(MyDate, "Short Date") & ":"
SendKeys ("") ' Perhaps I need to dump the Ctrl-D in the buffer???
SendKeys (MyString)
End If
End Sub
==================================
I say current because I have tried MANY variations. The code is executing properly on the Ctrl-D. I have watched the variables in debug mode and they contain what I want, namely "mm/dd/yy:" for the current date. Problem is, it inserts the TIME in the memo field. And it is the system time, not the integer of the date formatted into the time.
Crazy thing is, in debug mode, the darn thing will do what I want and insert the date in the VB editor page. Just won't do it in the memo field on the form.
NCWalker
View 3 Replies
View Related
Sep 7, 2006
i'm wondering if anyone has a solution to date stamp a memo field every time information is added.
e.g.
9/7 11:03 AM>1st sample information added 9/8 10:30 AM>2nd sample information added 9/9 2:34 PM>3rd sample information added
Any suggestions?
Thanks in advance,
Mark
View 4 Replies
View Related
Dec 15, 2005
We have a memo field that we use for on going notes.
Each day they may type more notes.
Is there a shortcut key, a button, or a way to automatically enter the date
and time before the notes?
View 1 Replies
View Related
Jan 31, 2006
I have a memo field on a form. I am trying to autopopulate it when entered into. For example: I enter in clients info and then tab to the memo field and it automatically enters date and time. Then later when I go back to that same record to append to the memo field it adds the current date. This way I can go back and see all the dates and times when that person called. Any idea how to do this? Thank you
View 5 Replies
View Related
Oct 15, 2004
I would like to create a memo field which automatically enters the date prior to any text input from the user.
Also allow dated updates in the same field
Many thanks
View 2 Replies
View Related
Jul 21, 2014
Memo field is called [Notes] and data is like this...
5/05/14 - Perry was on another call. LM 2/05/14 - Perry only at centre in the mornings, need to speak to him before sending samples. 13/06/13 - Perry in a meeting. lm 30/05/13 - See Little Hampton Early Learning - s/w Perry, has already received sample and info 29/05/13 - s/w Aspi, said to cb tomorrow and speak to Perry
I want to find each date in the Notes field so I can split the memo field data into another table where the memo field will become multiple records that hold date, text and customer/prospect ID fields. The customer table was easy because there was a <Div> tag before each date. However in the Prospects table there are no tags so how to change my vba code to search for each date before I split off the data.
Here is the part of the VBA code I used to find the <Div> tag in the customer notes field. How to find each date in the memo field? The date is in d/mm/yy format?
If Not rst.EOF Then
Do
StrSplit = Split(rst![Notes], "<Div>")
For x = 1 To UBound(StrSplit)
View 6 Replies
View Related
Dec 7, 2006
I have a memo field which records the events that happen on a form. So for example when a user changes the assignment from one user to the next, a row is written to the memo field indicating date, time, windows logon and then a brief description
Basically I end up with :
07/12/06 11:16:34 kleaves : Assigned user changed from Joe Bloggs to John Doe
At present every new row is added to the memo field at the end, so the most recent action is at the bottom.
How can I sort this so that most recent is at the top.
View 8 Replies
View Related
Apr 28, 2014
We have a memo field that folks may add to on different days. Additionally, different users may add notes if the person who started to work on the transaction is out of the office. My manager would like to add a way to include the date and initials of the person that added a new memo automatically after they add a memo. Currently, we don't track user login so I'm assuming we would have to in order to get their initials.
View 3 Replies
View Related
Nov 28, 2006
Hi,
I create the table, and fieldname,
What is the datatype, memo?
Datatype: Text
Fieldsize : 255 (max char)
Datatype: Memo
For the memo datatype, what is the size for that?
Is it unlimited size?
Please let me know, thanks.
View 4 Replies
View Related
Jan 18, 2006
I have a field on a table that is a memo field. I am trying to write a query to include this field but get the "Can't group on memo or OLE object. Any ideas on why and how can I query with this memo field included?
View 2 Replies
View Related
Sep 21, 2006
Hi all
I've posted this in my usual Excel forum without any response so I figure someone here might be able to help. I'm using an SQL query in an Excel VBA macro to extract info from an Access table and dump it into an Excel worksheet, which works fine except for a Memo field, which is truncated to one character length - text fields are fine, just this one Memo field. I'm using the Microsoft DAO 3.6 library. Any ideas?
Cheers
Col
View 2 Replies
View Related
Aug 15, 2007
Hi All,
This is probably the simplest question to answer but alas I can't find the answer in any of my books!
I have a memo field which when made into the form is for a comments box (therefore has to be a memo box). However, the end user wants to be able to type in the comments and have this is paragraphs but of course the field doesn't want to do it.
I've tried various commands in the properties and also in the formats etc. and now I'm at a loss - can someone please give me some much needed guidance, and I really am sick of looking at this database and would like to get rid of it!
Thanks in advance guys.
Donna :eek:
View 2 Replies
View Related
Nov 1, 2005
ok, I have been searching for a while, and no luck. I think I have come close, but not experienced enought to adapt code. I have a memo field on my form. I want to append new comments to this field without erasing the current data in the field. I want to do this through code. Can this be done?
View 2 Replies
View Related
Sep 19, 2006
Is there a way to populate the value of a memo field with the push of a button. What I am trying to do is have a few default items that can be automatically entered into a memo field. When I attempt to change the value of the memo field either thru the wizard, macro or by using a simple code like me.[memofield]="test" I get the error that you cannot assign a value to this object or by using setvalue through a macro i get the error "Object doesnt support this property or method"
Any help with this would be greatly appreciated
Thanks
Ricky
View 4 Replies
View Related
Jan 18, 2005
How can you use a memo field in a combo box.
How can you edit a memo field used by the combo box once it has been selected in a form.
View 1 Replies
View Related
Nov 2, 2006
I have a memo field in my database, as the data is too long to be a text field. The data in this field has been pasted in from other sources, and somehow it seems to have remembered the original pasted formatting, which was like a newspaper column. So when I include this field on a report, I get a thin column of text, even though the text box on my report is much wider. Is there a way of getting the text from my memo field to wrap to fill the width of my text box, so I get a neat-looking report. Thanks.
View 3 Replies
View Related
Nov 7, 2006
Is there any way of making a comments box (memo) have the functionality to press return and start on a fresh line as it all seems to run into one 'indecipherable blob'
View 1 Replies
View Related
Dec 28, 2007
Using Access 2007 - My (Data Type) Memo field contains the following type of data ...
First Name: Jake
Last Name: Pies
Phone: 123-456-7899
Email: jakepies at apple dot com
Comments: Interested in all more information
How do I parse these records, about 400, located in the memo field column to multiple column fields: FirstName, LastName, PhoneN, Email, Comments.
Thanks, James
View 11 Replies
View Related
Apr 11, 2015
Just wanted to know if filtering a memo box was possible. I know it's not the best idea to do so but I could really find this feature for my database useful.
View 1 Replies
View Related
Jan 26, 2006
I am using
DoCmd.OutputTo to export a query but this truncates the memo fields, but in the db window,right clicking and choosing to export does not truncate the data.
How do I code to output all the data without truncating?
View 1 Replies
View Related
Jun 23, 2006
Hi guys and Girls
I have a txt box on a report which should show comments..
In the background table the field this txt box is bound to has a data type of memo. Yet the txt box on the report stops showing any more than 255 characters! any clues? I know 255 is the field size set for my Txt fields but memo fields should be able to display 65000000000000000 trillion characters with no problems.
When I look at the table the memo field has all the txt in it, it just wont display all the txt on the report.
Thanks for any help guys.
View 1 Replies
View Related
Dec 9, 2007
I have been asked if is possible to highlight some text in a memo field and make it a hypertext link.
A memo field can be changed to a hyperlink field, this is not what is wanted.
View 1 Replies
View Related
Feb 5, 2008
Can someone tell me if this can be done somehow.
I have a date field, ID field and a memo field (I have to have this memo field).
I want to compare the memo fields by two certain dates and find out what doesn't match and if the ID field is blank. I have been trying with quaries but no luck.
I am not sure what forum this would fall under so I put it in general. feel free to move.
View 7 Replies
View Related
Jul 18, 2005
I've read on this forum that memo fields can be a spot of bother. I only saw this after I put several memo data types in my tables. I wasn't going to do that much with them; it was intended as a electronic scratch pad of sorts for the user. Where does the trouble arise from with them? Should I just leave them or should I change them to text fields with 255 chars and hope that's good enough?
scratch
View 1 Replies
View Related
Jul 28, 2005
Are there any other advantages in using a text field verses a memo field other than memory allocation? Memory allocation seems like such a small issue these days.
View 3 Replies
View Related