Hi, am wondering if someone knows the commands behind the keyboard shortcut
CTRL +APOSTROPHE. We're moving to Vista and cannot use Sendkeys to forward
these keystrokes.
We enter numerous timesheets and many of the fields have the same value as
the previous record. Using Autokeys/Sendkeys we set up the F11 function key
to send ^('){tab}, i.e. CTRL+APOSTROPHE (') then the TAB key. This worked
brillantly, we could just press F11 when we wanted to copy the same field
from the previous record and automatically move to the next field and in all
probability press F11 again. Now we have to type in CTRL+Apostrophe and
then the TAB key for each field - no where near as efficient. Would be very
grateful for help.
|
|
0
|
|
|
|
Reply
|
Di
|
4/1/2007 10:44:46 AM |
|
You could set the default value of each control after updating it. Use the
AfterUpdate event for the control....
ControlName.DefaultValue = chr(34) & ControlName.Value & chr(34)
If the data in the control is a number use
ControlName.DefaultValue = ControlName.Value
--
Joan Wild
Microsoft Access MVP
"Di Cook" <di@no.spam.cookscomputers.com.au> wrote in message
news:460f8d08$0$22843$afc38c87@news.optusnet.com.au...
> Hi, am wondering if someone knows the commands behind the keyboard
> shortcut CTRL +APOSTROPHE. We're moving to Vista and cannot use Sendkeys
> to forward these keystrokes.
>
> We enter numerous timesheets and many of the fields have the same value as
> the previous record. Using Autokeys/Sendkeys we set up the F11 function
> key to send ^('){tab}, i.e. CTRL+APOSTROPHE (') then the TAB key. This
> worked brillantly, we could just press F11 when we wanted to copy the same
> field from the previous record and automatically move to the next field
> and in all probability press F11 again. Now we have to type in
> CTRL+Apostrophe and then the TAB key for each field - no where near as
> efficient. Would be very grateful for help.
>
|
|
0
|
|
|
|
Reply
|
Joan
|
4/1/2007 12:42:16 PM
|
|
Hi Joan,
Thanks for your suggestion. Unfortunately we need the versatility of
deciding on each field for the particular record as we're entering data and
think it advisable that a new record only contains default values such as
today's date and the operator knows they have to fill in the blank fields.
Really appreciate you getting back to me.
Di
"Joan Wild" <jwild@nospamtyenet.com> wrote in message
news:eGJ9tsFdHHA.1508@TK2MSFTNGP06.phx.gbl...
> You could set the default value of each control after updating it. Use
> the AfterUpdate event for the control....
> ControlName.DefaultValue = chr(34) & ControlName.Value & chr(34)
> If the data in the control is a number use
> ControlName.DefaultValue = ControlName.Value
>
> --
> Joan Wild
> Microsoft Access MVP
> "Di Cook" <di@no.spam.cookscomputers.com.au> wrote in message
> news:460f8d08$0$22843$afc38c87@news.optusnet.com.au...
>> Hi, am wondering if someone knows the commands behind the keyboard
>> shortcut CTRL +APOSTROPHE. We're moving to Vista and cannot use Sendkeys
>> to forward these keystrokes.
>>
>> We enter numerous timesheets and many of the fields have the same value
>> as the previous record. Using Autokeys/Sendkeys we set up the F11
>> function key to send ^('){tab}, i.e. CTRL+APOSTROPHE (') then the TAB
>> key. This worked brillantly, we could just press F11 when we wanted to
>> copy the same field from the previous record and automatically move to
>> the next field and in all probability press F11 again. Now we have to
>> type in CTRL+Apostrophe and then the TAB key for each field - no where
>> near as efficient. Would be very grateful for help.
>>
>
>
|
|
0
|
|
|
|
Reply
|
Di
|
4/1/2007 12:55:38 PM
|
|
I don't use Vista, so I don't have any suggestions on this limitation.
Why doesn't your sendkeys work anymore?
--
Joan Wild
Microsoft Access MVP
"Di Cook" <di@no.spam.cookscomputers.com.au> wrote in message
news:460fabb6$0$16553$afc38c87@news.optusnet.com.au...
> Hi Joan,
>
> Thanks for your suggestion. Unfortunately we need the versatility of
> deciding on each field for the particular record as we're entering data
> and think it advisable that a new record only contains default values such
> as today's date and the operator knows they have to fill in the blank
> fields. Really appreciate you getting back to me.
> Di
> "Joan Wild" <jwild@nospamtyenet.com> wrote in message
> news:eGJ9tsFdHHA.1508@TK2MSFTNGP06.phx.gbl...
>> You could set the default value of each control after updating it. Use
>> the AfterUpdate event for the control....
>> ControlName.DefaultValue = chr(34) & ControlName.Value & chr(34)
>> If the data in the control is a number use
>> ControlName.DefaultValue = ControlName.Value
>>
>> --
>> Joan Wild
>> Microsoft Access MVP
>> "Di Cook" <di@no.spam.cookscomputers.com.au> wrote in message
>> news:460f8d08$0$22843$afc38c87@news.optusnet.com.au...
>>> Hi, am wondering if someone knows the commands behind the keyboard
>>> shortcut CTRL +APOSTROPHE. We're moving to Vista and cannot use
>>> Sendkeys to forward these keystrokes.
>>>
>>> We enter numerous timesheets and many of the fields have the same value
>>> as the previous record. Using Autokeys/Sendkeys we set up the F11
>>> function key to send ^('){tab}, i.e. CTRL+APOSTROPHE (') then the TAB
>>> key. This worked brillantly, we could just press F11 when we wanted to
>>> copy the same field from the previous record and automatically move to
>>> the next field and in all probability press F11 again. Now we have to
>>> type in CTRL+Apostrophe and then the TAB key for each field - no where
>>> near as efficient. Would be very grateful for help.
>>>
>>
>>
>
>
|
|
0
|
|
|
|
Reply
|
Joan
|
4/1/2007 3:43:18 PM
|
|
Hi Joan,
Sendkeys doesn't work when you transfer over to Vista. Anyone who used the
AutoKeys and Sendkeys setups will not be able to use them in Vista, even
though the Visual Basic Program Manager made this statement last July
on the MSDN blog:
http://blogs.msdn.com/davbosch/archive/2006/02/26/539470.aspx
# re: Vista To Support Legacy VB6 Apps @ Sunday, July 30, 2006 7:38 PM
Pasquale,
I'm the VB Program Manager responsible for Visual Basic 6 on Vista. The
SendKeys issues has been corrected and will be released in Vista RC1. The
calls to SendKeys that work under Windows XP will work the same way under
Vista.
Hope that helps.
Thanks,
Chris Mayo
Visual Basic Program Manager
cmayo
MS now say "it's a documented change that under most situations sendkeys
will not work in vista if User Access Control (UAC) is enabled this is
because the user has decided they don't want programs doing things with
other parts of their OS without their knowledge"
I appreciate your interest.
Di
"Joan Wild" <jwild@nospamtyenet.com> wrote in message
news:uIVb4RHdHHA.4172@TK2MSFTNGP05.phx.gbl...
>I don't use Vista, so I don't have any suggestions on this limitation.
>
> Why doesn't your sendkeys work anymore?
>
> --
> Joan Wild
> Microsoft Access MVP
> "Di Cook" <di@no.spam.cookscomputers.com.au> wrote in message
> news:460fabb6$0$16553$afc38c87@news.optusnet.com.au...
>> Hi Joan,
>>
>> Thanks for your suggestion. Unfortunately we need the versatility of
>> deciding on each field for the particular record as we're entering data
>> and think it advisable that a new record only contains default values
>> such as today's date and the operator knows they have to fill in the
>> blank fields. Really appreciate you getting back to me.
>> Di
>> "Joan Wild" <jwild@nospamtyenet.com> wrote in message
>> news:eGJ9tsFdHHA.1508@TK2MSFTNGP06.phx.gbl...
>>> You could set the default value of each control after updating it. Use
>>> the AfterUpdate event for the control....
>>> ControlName.DefaultValue = chr(34) & ControlName.Value & chr(34)
>>> If the data in the control is a number use
>>> ControlName.DefaultValue = ControlName.Value
>>>
>>> --
>>> Joan Wild
>>> Microsoft Access MVP
>>> "Di Cook" <di@no.spam.cookscomputers.com.au> wrote in message
>>> news:460f8d08$0$22843$afc38c87@news.optusnet.com.au...
>>>> Hi, am wondering if someone knows the commands behind the keyboard
>>>> shortcut CTRL +APOSTROPHE. We're moving to Vista and cannot use
>>>> Sendkeys to forward these keystrokes.
>>>>
>>>> We enter numerous timesheets and many of the fields have the same value
>>>> as the previous record. Using Autokeys/Sendkeys we set up the F11
>>>> function key to send ^('){tab}, i.e. CTRL+APOSTROPHE (') then the TAB
>>>> key. This worked brillantly, we could just press F11 when we wanted to
>>>> copy the same field from the previous record and automatically move to
>>>> the next field and in all probability press F11 again. Now we have to
>>>> type in CTRL+Apostrophe and then the TAB key for each field - no where
>>>> near as efficient. Would be very grateful for help.
>>>>
>>>
>>>
>>
>>
>
>
|
|
0
|
|
|
|
Reply
|
Di
|
4/1/2007 9:40:47 PM
|
|
|
4 Replies
482 Views
(page loaded in 0.059 seconds)
Similiar Articles: Insert the value from the same field in the previous record ...Hi, am wondering if someone knows the commands behind the keyboard shortcut CTRL +APOSTROPHE. We're moving to Vista and cannot use Sendkeys to forwa... Previous Value + 1 in a field - microsoft.public.access.forms ...Insert the value from the same field in the previous record ... Previous Value + 1 in a field - microsoft.public.access.forms ... Inserting the value from the previous ... Update blank/null fileds with value of previous row using update q ...Insert the value from the same field in the previous record ... Update blank/null fileds with value of previous row using update q ..... fill the blank fields with the ... Include a field from previous record on current form - microsoft ...Insert the value from the same field in the previous record ... Include a field from previous record on current form - microsoft ... Dynamically Update Field Of A Current ... Repeat data from previous records in a form - microsoft.public ...... of the same field from the previous record ... FROM PREVIOUS RECORD: access, previous ... i have a data entry form with 10 fields. four of the fields have the same value for ... How can I reference a value from a previous record? - microsoft ...Insert the value from the same field in the previous record ... How can I reference a value from a previous record? - microsoft ... Inserting the value from the previous ... Auto Filling Fields in Current Record from Previous Record ...Insert the value from the same field in the previous record ... Insert the value from the same field in the previous record ... Auto Filling Fields in Current Record from ... Repeating entries on form - microsoft.public.access.formscoding ...Insert the value from the same field in the previous record ... Insert the value from the same field in the previous record ... I want to write the same value into the ... automatically move to the next field - microsoft.public.access ...Insert the value from the same field in the previous record ... This worked brillantly, we could just press F11 when we wanted to copy the same field from the previous ... SendKeys Action doesn't work - microsoft.public.access ...Insert the value from the same field in the previous record ... Hi Joan, Sendkeys doesn't work when you transfer over to Vista. Anyone who used the AutoKeys and ... Inserting the value from the previous record in Access - Access ...Applies to Microsoft Access 97 and 2000 In Access, you can insert the value from the same field in the previous record when you create a new record. For example, you ... Insert the value from the same field in the previous recorddatabase.itags.org: Microsoft Access question: Insert the value from the same field in the previous record, created at:Sun, 01 Jun 2008 11:11:00 GMT with 1,306 bytes ... Repeat the value from the previous record Microsoft AccessMicrosoft Access: In a field in a record, you can insert the value that is in the same field in the previous record. Insert the value from the same field in the previous record ...Hi, am wondering if someone knows the commands behind the keyboard shortcut CTRL +APOSTROPHE. We're moving to Vista and cannot use Sendkeys to forwa... Insert the data from the same field in the previous record CTRL+'( Insert the data from the same field in the previous record CTRL+') no longer works and I ... Insert the value from the same field in the previous record: Di Cook: Microsoft ... 7/29/2012 12:47:08 AM
|