Connecting Tech Pros Worldwide Help | Site Map

Calendar in MS 2007

  #1  
Old November 9th, 2007, 11:35 AM
Alfred
Guest
 
Posts: n/a
HI
Using Access 2007
Can I open the calendar that automatically appears next to date fields with
a keyboard shortcut as I dont want to use the mouse
Thanks
Alfred


  #2  
Old November 9th, 2007, 12:35 PM
Allen Browne
Guest
 
Posts: n/a

re: Calendar in MS 2007


I don't see a built-in shortcut for the date picker.

You could create an AutoKeys macro, and assign a keystroke to RunCommand
with ShowDatePicker.

Alternatively, if you want this for one date box on one form, you could add
a shortcut key to SetFocus to the date field, and then RunCommand
acCmdShowDatePicker

--
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.

"Alfred" <adminnaar@gmail.comwrote in message
news:n-mdnd3LCa6u2anaRVnyvQA@saix.net...
Quote:
HI
Using Access 2007
Can I open the calendar that automatically appears next to date fields
with a keyboard shortcut as I dont want to use the mouse
Thanks
Alfred
  #3  
Old November 14th, 2007, 10:35 PM
ARC
Guest
 
Posts: n/a

re: Calendar in MS 2007


This is a good one, Allen, thanks! I didn't think to use code to force the
button to show for the date picker. I have an issue where, if I use a date
input mask, the date picker button won't show, so doing a got focus event
might be just the ticket. I'd get rid of the input mask, however, some users
do use that option, and would most likely complain if I removed it.

Andy

"Allen Browne" <AllenBrowne@SeeSig.Invalidwrote in message
news:4734526f$0$23950$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
Quote:
>I don't see a built-in shortcut for the date picker.
>
You could create an AutoKeys macro, and assign a keystroke to RunCommand
with ShowDatePicker.
>
Alternatively, if you want this for one date box on one form, you could
add a shortcut key to SetFocus to the date field, and then RunCommand
acCmdShowDatePicker
>
--
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.
>
"Alfred" <adminnaar@gmail.comwrote in message
news:n-mdnd3LCa6u2anaRVnyvQA@saix.net...
Quote:
>HI
>Using Access 2007
>Can I open the calendar that automatically appears next to date fields
>with a keyboard shortcut as I dont want to use the mouse
>Thanks
>Alfred
>
  #4  
Old November 15th, 2007, 12:35 AM
Allen Browne
Guest
 
Posts: n/a

re: Calendar in MS 2007


Okay, you have it sorted out.

There might be a reason why the MS Access team disabled the date picker when
input masks are used. I haven't tested, you probably want to check that it
interprets your mask correctly if the format is non-standard.

--
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.

"ARC" <PCESoft@PCESoft.invalidwrote in message
news:nEK_i.6858$TR5.5516@nlpi061.nbdc.sbc.com...
Quote:
This is a good one, Allen, thanks! I didn't think to use code to force the
button to show for the date picker. I have an issue where, if I use a date
input mask, the date picker button won't show, so doing a got focus event
might be just the ticket. I'd get rid of the input mask, however, some
users
do use that option, and would most likely complain if I removed it.
>
Andy
>
"Allen Browne" <AllenBrowne@SeeSig.Invalidwrote in message
news:4734526f$0$23950$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
Quote:
>>I don't see a built-in shortcut for the date picker.
>>
>You could create an AutoKeys macro, and assign a keystroke to RunCommand
>with ShowDatePicker.
>>
>Alternatively, if you want this for one date box on one form, you could
>add a shortcut key to SetFocus to the date field, and then RunCommand
>acCmdShowDatePicker
>>
>"Alfred" <adminnaar@gmail.comwrote in message
>news:n-mdnd3LCa6u2anaRVnyvQA@saix.net...
Quote:
>>HI
>>Using Access 2007
>>Can I open the calendar that automatically appears next to date fields
>>with a keyboard shortcut as I dont want to use the mouse
>>Thanks
>>Alfred
  #5  
Old November 15th, 2007, 12:45 AM
ARC
Guest
 
Posts: n/a

re: Calendar in MS 2007


Thanks, Allen. The mask that I use most is: "99/99/0099;0;_"


"Allen Browne" <AllenBrowne@SeeSig.Invalidwrote in message
news:473b9167$0$10702$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
Quote:
Okay, you have it sorted out.
>
There might be a reason why the MS Access team disabled the date picker
when input masks are used. I haven't tested, you probably want to check
that it interprets your mask correctly if the format is non-standard.
>
--
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.
>
"ARC" <PCESoft@PCESoft.invalidwrote in message
news:nEK_i.6858$TR5.5516@nlpi061.nbdc.sbc.com...
Quote:
>This is a good one, Allen, thanks! I didn't think to use code to force
>the
>button to show for the date picker. I have an issue where, if I use a
>date
>input mask, the date picker button won't show, so doing a got focus event
>might be just the ticket. I'd get rid of the input mask, however, some
>users
>do use that option, and would most likely complain if I removed it.
>>
>Andy
>>
>"Allen Browne" <AllenBrowne@SeeSig.Invalidwrote in message
>news:4734526f$0$23950$5a62ac22@per-qv1-newsreader-01.iinet.net.au...
Quote:
>>>I don't see a built-in shortcut for the date picker.
>>>
>>You could create an AutoKeys macro, and assign a keystroke to RunCommand
>>with ShowDatePicker.
>>>
>>Alternatively, if you want this for one date box on one form, you could
>>add a shortcut key to SetFocus to the date field, and then RunCommand
>>acCmdShowDatePicker
>>>
>>"Alfred" <adminnaar@gmail.comwrote in message
>>news:n-mdnd3LCa6u2anaRVnyvQA@saix.net...
>>>HI
>>>Using Access 2007
>>>Can I open the calendar that automatically appears next to date fields
>>>with a keyboard shortcut as I dont want to use the mouse
>>>Thanks
>>>Alfred
>
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Access 2003 v/s Access 2007 prakashwadhwani@gmail.com answers 9 June 27th, 2008 08:24 PM
Interfaces to MS Exchange/Outlook to add Calendar appointments or =?Utf-8?B?RU1jQ2FydGh5?= answers 2 March 13th, 2008 01:25 PM
office 2007 / Access 2000 David B answers 1 February 28th, 2008 12:55 AM
2007 Office / IE 7 - speed Lyle Fairfield answers 0 December 21st, 2006 05:05 AM