Sign Up |  Live StatsLive Stats    Articles 35,345| Comments 159,788| Members 17,820, Newest waheguruhelpme| Online 214
Home Contact
 (Forgotten?): 
    Sikhism

   
                                                                     Your Banner Here!    

Sikh Philosophy Network » Sikh Philosophy Network » Current Affairs » Information Technology » Re: need date/time stamp on each line in memo field

Re: need date/time stamp on each line in memo field

Our Donation Goal : Why Donate? : Donate Today! : Donate Anonymously (ਗੁਪਤ) : Our Family of Supporters
Goal this month: 400 USD, Received: 35 USD (9%)
Please Donate...
Related Topics...
Thread Thread Starter Forum Replies Last Post
How do you make a date / time stamp while starting a new entry? Shawn Information Technology 9 28-Jul-2006 08:30 AM
Is it possible to time stamp a field and current user? JDJones Information Technology 2 28-Jul-2006 08:27 AM
count line in memo(multi line text) yousef Information Technology 2 28-Jul-2006 08:16 AM
How do I extract the AM/PM from a time date stamp? k Information Technology 3 28-Jul-2006 08:12 AM
Possible to archive tables in Access with Date/Time stamp? Ed Information Technology 1 11-Nov-2005 20:08 PM


Tags
date or time, datetime, each, field, line, memo, stamp
Reply Post New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!
  #1 (permalink)  
Old 28-Jul-2006, 08:18 AM
Maly's Avatar Maly
Guest
 
Posts: n/a
   
   
Re: need date/time stamp on each line in memo field

  Donate Today!   Email to Friend  Tell a Friend   Show Printable Version  Print   Contact sikhphilosophy.net Administraion for any Suggestions, Ideas, Feedback.  Feedback  

Register to Remove Advertisements
Allen, I have followed these instructions as I had the same issue. It was all
a great help, but now I need just a little more guidance. What can I do to
make sure that the record (it its entirety) is locked once data is entered?
i.e. after I enter the memo and tab to the next record, I want the previous
record locked (even if only on the form, but preferably on the query and/or
table as well)


"Allen Browne" wrote:

> Open the subform in design view.
> Open the Properties box (View menu).
> While looking at the properties of the Form (not a text box), on the Format
> tab, set the Default View to one of these:
> Continuous Form
> Datasheet.
> It will then show one record per row.
> --
> Allen Browne - Microsoft MVP. Perth, Western Australia.
> Tips for Access users - http://allenbrowne.com/tips.html
> Reply to group, rather than allenbrowne at mvps dot org.
>
> "Fatboymedic" wrote in message
> news:F7EFBC0D-11F8-4D31-8FAE-131829FE174D@microsoft.com...
> > thank you so much, Allen
> >
> > one last bit.. can i display all the values, date/time + note, for each
> > record, in a text box? I have successfully created the new table, with an
> > ID,
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/information-technology/11069-re-need-date-time-stamp-each.html
> > date, and note field,linked by ID, so each entry is associated with the
> > main
> > record, and i made a text box, with the "=[subfrm date/time
> > notes].Form!date
> > & " " & [subfrm date/time notes].Form!note" control.. but it only gives
> > the
> > data from the selected entry on the subform... i want to see ALL entries
> > for
> > the record - i will need this for the report i create as well....
> >
> > "Allen Browne" wrote:
> >
> >> Yes, typically the interface would be a main form for whatever you are
> >> making notes on, with a subform to show the many notes (one per line.)
> >>
> >> "Fatboymedic" wrote in message
> >> news:15FA02D1-45E8-4B1B-B952-63E50D2EF7F5@microsoft.com...
> >> >I think i get it...
> >> > the memo field is set up on the form to be a scrolling record of notes
> >> > added
> >> > (its a simple dispatching database), and displays on the form itself,
> >> > and
> >> > on
> >> > a report. If I set up a related table, I assume I would need a control
> >> > (ie
> >> > button) and an unbound display field, with the info concatenated? I
> >> > will
> >> > not
> >> > need to search for the updated notes, thats why i just wanted to have
> >> > it
> >> > stamp the memo field entries
> >> >
> >> > Thank You!!
> >> >
> >> > "Allen Browne" wrote:
> >> >
> >> >> It would be possible to use the KeyDown or Change events of the
> >> >> control
> >> >> to
> >> >> trap the Enter key, and replace it with the previous characters &
> >> >> Now() &
> >> >> the subsequent characters, using SelStart, SelLength, Len() and so on.
> >> >>
> >> >> However, if each line is intended to be dated, a better solution would
> >> >> be
> >> >> to
> >> >> create a related table of notations instead of trying to force all of
> >> >> this
> >> >> data into a single memo field, and still not be able to search on the
> >> >> dates,
> >> >> or manipulate their order, etc.
> >> >>
> >> >> Create a related table with a date field and a memo field. Set the
> >> >> Default
> >> >> Value of the date/time field to:
> >> >> =Now()
> >> >> and it will automatically populate whenever someone adds a new comment
> >> >> row
> >> >> to the related table.
> >> >>
> >> >> "Fatboymedic" wrote in message
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11069
> >> >> news:7192830A-189A-47E7-BD94-0FA47A41A467@microsoft.com...
> >> >> >I have a memo field, which needs to have a date/time stamp appended
> >> >> >to
> >> >> >the
> >> >> > end of each line, when the enter key is pressed
> >> >> >
> >> >> > ie: test line 1 0101 09/05/05
> >> >> > test line 2 0150 09/05/05

>
>
>






 
Do share your immediate thoughts or reactions on this issue? We value your views! Login Now! or Sign Up Today! to share your views with us.. Gurfateh!
Reply With Quote
Sponsored Links
  #2 (permalink)  
Old 28-Jul-2006, 08:18 AM
strive4peace's Avatar strive4peace
Guest
 
Posts: n/a
   
   
Re: need date/time stamp on each line in memo field

  Donate Today!  
Hi Maly,

put this on the form OnCurrent event for the form with your
memo field:

'~~~~~~~~~~~~~~~~~~~
me.AllowEdits = _
IIF(isnull(me.memo_controlname), true,false)
'~~~~~~~~~~~~~~~~~~~

Warm Regards,
Crystal
Microsoft Access MVP 2006

*
Have an awesome day

remote programming and training
strive4peace2006 at yahoo.com

*

Maly wrote:
> Allen, I have followed these instructions as I had the same issue. It was all
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11069
> a great help, but now I need just a little more guidance. What can I do to
> make sure that the record (it its entirety) is locked once data is entered?
> i.e. after I enter the memo and tab to the next record, I want the previous
> record locked (even if only on the form, but preferably on the query and/or
> table as well)
>
>
> "Allen Browne" wrote:
>
>
>>Open the subform in design view.
>>Open the Properties box (View menu).
>>While looking at the properties of the Form (not a text box), on the Format
>>tab, set the Default View to one of these:
>> Continuous Form
>> Datasheet.
>>It will then show one record per row.
>>--
>>Allen Browne - Microsoft MVP. Perth, Western Australia.
>>Tips for Access users - http://allenbrowne.com/tips.html
>>Reply to group, rather than allenbrowne at mvps dot org.
>>
>>"Fatboymedic" wrote in message
>>news:F7EFBC0D-11F8-4D31-8FAE-131829FE174D@microsoft.com...
>>
Reference:: Sikh Philosophy Network http://www.sikhphilosophy.net/showthread.php?t=11069
>>>thank you so much, Allen
>>>
>>>one last bit.. can i display all the values, date/time + note, for each
>>>record, in a text box? I have successfully created the new table, with an
>>>ID,
>>>date, and note field,linked by ID, so each entry is associated with the
>>>main
>>>record, and i made a text box, with the "=[subfrm date/time
>>>notes].Form!date
>>>& " " & [subfrm date/time notes].Form!note" control.. but it only gives
>>>the
>>>data from the selected entry on the subform... i want to see ALL entries
>>>for
>>>the record - i will need this for the report i create as well....
>>>
>>>"Allen Browne" wrote:
>>>
>>>
>>>>Yes, typically the interface would be a main form for whatever you are
>>>>making notes on, with a subform to show the many notes (one per line.)
>>>>
>>>>"Fatboymedic" wrote in message
>>>>news:15FA02D1-45E8-4B1B-B952-63E50D2EF7F5@microsoft.com...
>>>>
>>>>>I think i get it...
>>>>>the memo field is set up on the form to be a scrolling record of notes
>>>>>added
>>>>>(its a simple dispatching database), and displays on the form itself,
>>>>>and
>>>>>on
>>>>>a report. If I set up a related table, I assume I would need a control
>>>>>(ie
>>>>>button) and an unbound display field, with the info concatenated? I
>>>>>will
>>>>>not
>>>>>need to search for the updated notes, thats why i just wanted to have
>>>>>it
>>>>>stamp the memo field entries
>>>>>
>>>>>Thank You!!
>>>>>
>>>>>"Allen Browne" wrote:
>>>>>
>>>>>
>>>>>>It would be possible to use the KeyDown or Change events of the
>>>>>>control
>>>>>>to
>>>>>>trap the Enter key, and replace it with the previous characters &
>>>>>>Now() &
>>>>>>the subsequent characters, using SelStart, SelLength, Len() and so on.
>>>>>>
>>>>>>However, if each line is intended to be dated, a better solution would
>>>>>>be
>>>>>>to
>>>>>>create a related table of notations instead of trying to force all of
>>>>>>this
>>>>>>data into a single memo field, and still not be able to search on the
>>>>>>dates,
>>>>>>or manipulate their order, etc.
>>>>>>
>>>>>>Create a related table with a date field and a memo field. Set the
>>>>>>Default
>>>>>>Value of the date/time field to:
>>>>>> =Now()
>>>>>>and it will automatically populate whenever someone adds a new comment
>>>>>>row
>>>>>>to the related table.
>>>>>>
>>>>>>"Fatboymedic" wrote in message
>>>>>>news:7192830A-189A-47E7-BD94-0FA47A41A467@microsoft.com...
>>>>>>
>>>>>>>I have a memo field, which needs to have a date/time stamp appended
>>>>>>>to
>>>>>>>the
>>>>>>>end of each line, when the enter key is pressed
>>>>>>>
>>>>>>>ie: test line 1 0101 09/05/05
>>>>>>> test line 2 0150 09/05/05

>>
>>
>>

Reply With Quote
   Click Here to Donate Now!

Support Us!
Become a Promoter!
Gurfateh ji, you can become a SPN Promoter by Donating as little as $10 each month. With limited resources & high operational costs, your donations make it possible for us to deliver a quality website and spread the teachings of the Sri Guru Granth Sahib Ji, to serve & uplift humanity. Every contribution counts. Donate Generously. Gurfateh!
ReplyPost New Topic In This Forum Stay Connected to Sikhism, Click Here to Register Now!

Bookmarks


(View-All Members who have read this thread : 0
There are no names to display.

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Tools Search
Search:

Advanced Search
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

BB code is On
Smilies are On
[IMG] code is On
HTML code is On
Trackbacks are On
Pingbacks are On
Refbacks are On

» Gurbani Jukebox
Listen to Gurbani while surfing SPN!
» Active Discussions
sikhism Who is "Mohan"?
Today 06:52 AM
21 Replies, 319 Views
sikhism need urgent advice.......
Today 06:46 AM
6 Replies, 72 Views
sikhism ਨਾਮਾ
Today 06:37 AM
2 Replies, 45 Views
sikhism Sikh Diamonds Video...
Today 04:23 AM
6 Replies, 112 Views
sikhism Are Creator and Creation...
Today 01:30 AM
44 Replies, 2,833 Views
sikhism Herman Hesse,...
Today 00:54 AM
13 Replies, 225 Views
sikhism On a Scale of Most...
Yesterday 21:42 PM
30 Replies, 1,277 Views
sikhism I became victim by...
Yesterday 19:50 PM
0 Replies, 39 Views
sikhism How important is Matha...
By Ishna
Yesterday 19:05 PM
58 Replies, 1,026 Views
sikhism Sikh Books downloads
Yesterday 15:39 PM
2 Replies, 62 Views
sikhism Salok Sheikh Farid ji...
Yesterday 09:35 AM
0 Replies, 43 Views
sikhism In Punjab, three farmers...
Yesterday 05:36 AM
0 Replies, 45 Views
sikhism Supernatural Sikhs, what...
Yesterday 03:45 AM
19 Replies, 408 Views
sikhism Sukhmani Sahib Astpadi...
26-May-2012 22:57 PM
0 Replies, 46 Views
Do You Think You Are...
26-May-2012 09:59 AM
94 Replies, 8,258 Views
» Books You Should Read...
Powered by vBadvanced CMPS v3.2.2

All times are GMT +6.5. The time now is 07:15 AM.
Powered by vBulletin® Version 3.8.6
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.5.2 Copyright © 2004-12, All Rights Reserved. Sikh Philosophy Network


Page generated in 0.39853 seconds with 30 queries