Welcome to the { mindfrost82.com } forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

Go Back   { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Access

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1 (permalink)  
Old 08-14-2008, 09:19 PM
kimtorvinen@hotmail.com
 
Posts: n/a
Create a macro in a librabry database that emails reminders (Access2003-Outlook 2003)

I have created a Library database. I would like to be able to email
when borrowed material is due as a friendly reminder. So I have
created a Macro in Access 2003 that's an action of SendObject to
Outlook 2003.

Object Type: Form
Object Name: frmInvdb
Output Format: HTML
To: (not sure if I should leave this blank or link it to borrower's
email by date to be returned by an expression like
[Form]![frmb_email]![date_to_be_returned])

Do I also need a command button to trigger this or just go into
properties and once the date_to_be_returned field is filled in enter
in properties under "on exit" and link it back to macro created as
mcrEmailReminder. Thanks.

Kim

Reply With Quote
  #2 (permalink)  
Old 08-14-2008, 10:01 PM
Arvin Meyer [MVP]
 
Posts: n/a
Re: Create a macro in a librabry database that emails reminders (Access 2003-Outlook 2003)

You can have multiple Macro Actions under a single macro name. Make sure the
name column is turned on in the macro window and just put the actions in
order that you want them to be executed.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


<kimtorvinen@hotmail.com> wrote in message
news:3e63baa9-c842-490d-b59c-410cb7491669@d45g2000hsc.googlegroups.com...
>I have created a Library database. I would like to be able to email
> when borrowed material is due as a friendly reminder. So I have
> created a Macro in Access 2003 that's an action of SendObject to
> Outlook 2003.
>
> Object Type: Form
> Object Name: frmInvdb
> Output Format: HTML
> To: (not sure if I should leave this blank or link it to borrower's
> email by date to be returned by an expression like
> [Form]![frmb_email]![date_to_be_returned])
>
> Do I also need a command button to trigger this or just go into
> properties and once the date_to_be_returned field is filled in enter
> in properties under "on exit" and link it back to macro created as
> mcrEmailReminder. Thanks.
>
> Kim
>



Reply With Quote
  #3 (permalink)  
Old 08-15-2008, 04:56 AM
kimtorvinen@hotmail.com
 
Posts: n/a
Re: Create a macro in a librabry database that emails reminders(Access 2003-Outlook 2003)

On Aug 14, 3:01*pm, "Arvin Meyer [MVP]" <a...@m.com> wrote:
> You can have multiple Macro Actions under a single macro name. Make sure the
> name column is turned on in the macro window and just put the actions in
> order that you want them to be executed.
> --
> Arvin Meyer, MCP, MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com
>
> <kimtorvi...@hotmail.com> wrote in message
>
> news:3e63baa9-c842-490d-b59c-410cb7491669@d45g2000hsc.googlegroups.com...
>
>
>
> >I have created a Library database. *I would like to be able to email
> > when borrowed material is due as a friendly reminder. *So I have
> > created a Macro in Access 2003 that's an action of SendObject to
> > Outlook 2003.

>
> > Object Type: Form
> > Object Name: frmInvdb
> > Output Format: HTML
> > To: (not sure if I should leave this blank or link it to borrower's
> > email by date to be returned by an expression like
> > [Form]![frmb_email]![date_to_be_returned])

>
> > Do I also need a command button to trigger this or just go into
> > properties and once the date_to_be_returned field is filled in enter
> > in properties under "on exit" and link it back to macro created as
> > mcrEmailReminder. *Thanks.

>
> > Kim- Hide quoted text -

>
> - Show quoted text -


Thanks Arvin, can you tell me if my expression is correct to ensure
it's run on the specified due date as a reminder? Not sure if I
insert this in the condition column?
Reply With Quote
  #4 (permalink)  
Old 08-15-2008, 01:58 PM
Arvin Meyer [MVP]
 
Posts: n/a
Re: Create a macro in a librabry database that emails reminders (Access 2003-Outlook 2003)

The expression looks correct, but it won't run on the specified date because
you have nothing to trigger the event. Using VBA, a form would continuously
run a timer and when the correct condition was met, the timer would fire the
event. Another possibility is to check when you open the database within the
AutoExec macro.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


<kimtorvinen@hotmail.com> wrote in message
news:9120c96c-8ece-4b28-9921-59b9b1f9de60@i24g2000prf.googlegroups.com...
On Aug 14, 3:01 pm, "Arvin Meyer [MVP]" <a...@m.com> wrote:
> You can have multiple Macro Actions under a single macro name. Make sure
> the
> name column is turned on in the macro window and just put the actions in
> order that you want them to be executed.
> --
> Arvin Meyer, MCP,
> MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com
>
> <kimtorvi...@hotmail.com> wrote in message
>
> news:3e63baa9-c842-490d-b59c-410cb7491669@d45g2000hsc.googlegroups.com...
>
>
>
> >I have created a Library database. I would like to be able to email
> > when borrowed material is due as a friendly reminder. So I have
> > created a Macro in Access 2003 that's an action of SendObject to
> > Outlook 2003.

>
> > Object Type: Form
> > Object Name: frmInvdb
> > Output Format: HTML
> > To: (not sure if I should leave this blank or link it to borrower's
> > email by date to be returned by an expression like
> > [Form]![frmb_email]![date_to_be_returned])

>
> > Do I also need a command button to trigger this or just go into
> > properties and once the date_to_be_returned field is filled in enter
> > in properties under "on exit" and link it back to macro created as
> > mcrEmailReminder. Thanks.

>
> > Kim- Hide quoted text -

>
> - Show quoted text -


Thanks Arvin, can you tell me if my expression is correct to ensure
it's run on the specified due date as a reminder? Not sure if I
insert this in the condition column?


Reply With Quote
  #5 (permalink)  
Old 08-15-2008, 04:37 PM
kimtorvinen@hotmail.com
 
Posts: n/a
Re: Create a macro in a librabry database that emails reminders(Access 2003-Outlook 2003)

On Aug 15, 6:58*am, "Arvin Meyer [MVP]" <a...@m.com> wrote:
> The expression looks correct, but it won't run on the specified date because
> you have nothing to trigger the event. Using VBA, a form would continuously
> run a timer and when the correct condition was met, the timer would fire the
> event. Another possibility is to check when you open the database within the
> AutoExec macro.
> --
> Arvin Meyer, MCP, MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmvp.com
>
> <kimtorvi...@hotmail.com> wrote in message
>
> news:9120c96c-8ece-4b28-9921-59b9b1f9de60@i24g2000prf.googlegroups.com...
> On Aug 14, 3:01 pm, "Arvin Meyer [MVP]" <a...@m.com> wrote:
>
>
>
>
>
> > You can have multiple Macro Actions under a single macro name. Make sure
> > the
> > name column is turned on in the macro window and just put the actions in
> > order that you want them to be executed.
> > --
> > Arvin Meyer, MCP,
> > MVPhttp://www.datastrat.comhttp://www.mvps.org/accesshttp://www.accessmv...

>
> > <kimtorvi...@hotmail.com> wrote in message

>
> >news:3e63baa9-c842-490d-b59c-410cb7491669@d45g2000hsc.googlegroups.com....

>
> > >I have created a Library database. I would like to be able to email
> > > when borrowed material is due as a friendly reminder. So I have
> > > created a Macro in Access 2003 that's an action of SendObject to
> > > Outlook 2003.

>
> > > Object Type: Form
> > > Object Name: frmInvdb
> > > Output Format: HTML
> > > To: (not sure if I should leave this blank or link it to borrower's
> > > email by date to be returned by an expression like
> > > [Form]![frmb_email]![date_to_be_returned])

>
> > > Do I also need a command button to trigger this or just go into
> > > properties and once the date_to_be_returned field is filled in enter
> > > in properties under "on exit" and link it back to macro created as
> > > mcrEmailReminder. Thanks.

>
> > > Kim- Hide quoted text -

>
> > - Show quoted text -

>
> Thanks Arvin, can you tell me if my expression is correct to ensure
> it's run on the specified due date as a reminder? *Not sure if I
> insert this in the condition column?- Hide quoted text -
>
> - Show quoted text -


Sorry I'm pretty new to Access. Do I have to create an AutoExec
macro, save this separately from mcr.EmailReminder? VBA is pretty new
to me as well, do I give it an action of RunMacro, then enter the
Date_to_be_returned field?

Thanks again.

Kim
Reply With Quote
  #6 (permalink)  
Old 08-18-2008, 02:29 AM
Arvin Meyer [MVP]
 
Posts: n/a
Re: Create a macro in a librabry database that emails reminders (Access 2003-Outlook 2003)


<kimtorvinen@hotmail.com> wrote in message
news:52366036-b919-4b6b-943a-4f43d941190a@r66g2000hsg.googlegroups.com...
On Aug 15, 6:58 am, "Arvin Meyer [MVP]" <a...@m.com> wrote:
> The expression looks correct, but it won't run on the specified date
> because
> you have nothing to trigger the event. Using VBA, a form would
> continuously
> run a timer and when the correct condition was met, the timer would fire
> the
> event. Another possibility is to check when you open the database within
> the
> AutoExec macro.


Sorry I'm pretty new to Access. Do I have to create an AutoExec
macro, save this separately from mcr.EmailReminder? VBA is pretty new
to me as well, do I give it an action of RunMacro, then enter the
Date_to_be_returned field?
----------------------
Yes. The name: AutoExec tells Access to run what's inside when it starts up.
If your other macro works OK, a RunMacro action with the name of macro that
you want to run as the argument should do it.
--
Arvin Meyer, MCP, MVP
http://www.datastrat.com
http://www.mvps.org/access
http://www.accessmvp.com


Reply With Quote
Reply

  { mindfrost82.com } > Gadget Corner > Tech Newsgroups > Microsoft > MS Office > Access


Thread Tools Search this Thread
Search this Thread:

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

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



All times are GMT. The time now is 05:06 PM.


Powered by vBulletin, Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.1.0 ©2007, Crawlability, Inc.
© 1999-2008 mindfrost82.com v11.0


Sponsors:
Buy Shares | Ringtones | Loans | Personal Loans | Anime



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114