Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Keyboard key assignments change...

Hello,

The ~, ,@, # and | keys are assigned to other characters...

(~!@#$%^) becomes (¬!"£$%^) and the bar key changes to a tilde.

This occurs in the four Xl versions 97 thru 2003 that I have; if/when...

1. Add a button from the forms toolbar to a worksheet
or use a message box with an OK button.
2. Hold down the Alt and Shift keys and click the button.
(don't assign a macro to the button)

The keys are returned to their normal function by repeating the process.
Yes, OnKey will reset the keys, but just until the next time.
I also tried reinstalling XL 97 to no avail.
Am I alone in the wilderness having written too many lines of code? <g

Jim Cone
San Francisco, USA

  #2   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 747
Default Keyboard key assignments change...

Jim,

I replicated similar with <Alt + <Shift and left mouse click when I had an
alternate keyboard layout selected. The button or message box apparently are
not actually relavent. The key + mouse click sequence appears to toggle
between the keyboard layout selections. For alternate keyboard layout
selections see:
Control Panel / Keyboard / Input locales tab / Installed input locales window.

Note the Hot key option in this dialog. The key + mouse click sequence
likely activates the toggling behaviour by design. After unselecting the
alternate keyboard layout option leaving only "English (United States)....US"
and pressing the Apply button the behaviour was removed. You could probably
just unselect the checkbox re the Hot key option (not tested).

Above based on a quick test only.

Regards,
Greg



"Jim Cone" wrote:

Hello,

The ~, ,@, # and | keys are assigned to other characters...

(~!@#$%^) becomes (¬!"£$%^) and the bar key changes to a tilde.

This occurs in the four Xl versions 97 thru 2003 that I have; if/when...

1. Add a button from the forms toolbar to a worksheet
or use a message box with an OK button.
2. Hold down the Alt and Shift keys and click the button.
(don't assign a macro to the button)

The keys are returned to their normal function by repeating the process.
Yes, OnKey will reset the keys, but just until the next time.
I also tried reinstalling XL 97 to no avail.
Am I alone in the wilderness having written too many lines of code? <g

Jim Cone
San Francisco, USA


  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Keyboard key assignments change...

Greg,
Thanks for the information.
Looks like you figured it out as no button click is necessary to toggle the
"alternative" layout. However, I do not have the Input locales tab on
the Keyboard dialog/window. Two tabs only...Speed and Hardware.
I am using Windows XP with SP2.
I will now do some searches re windows/keyboard settings and/or
review the Windows installed settings.
Do you have any other suggestions?
Your help is much appreciated.
Regards,
Jim Cone


"Greg Wilson"
wrote in message
Jim,
I replicated similar with <Alt + <Shift and left mouse click when I had an
alternate keyboard layout selected. The button or message box apparently are
not actually relavent. The key + mouse click sequence appears to toggle
between the keyboard layout selections. For alternate keyboard layout
selections see:
Control Panel / Keyboard / Input locales tab / Installed input locales window.

Note the Hot key option in this dialog. The key + mouse click sequence
likely activates the toggling behaviour by design. After unselecting the
alternate keyboard layout option leaving only "English (United States)....US"
and pressing the Apply button the behaviour was removed. You could probably
just unselect the checkbox re the Hot key option (not tested).

Above based on a quick test only.
Regards,
Greg



"Jim Cone" wrote:

Hello,

The ~, ,@, # and | keys are assigned to other characters...

(~!@#$%^) becomes (¬!"£$%^) and the bar key changes to a tilde.

This occurs in the four Xl versions 97 thru 2003 that I have; if/when...

1. Add a button from the forms toolbar to a worksheet
or use a message box with an OK button.
2. Hold down the Alt and Shift keys and click the button.
(don't assign a macro to the button)

The keys are returned to their normal function by repeating the process.
Yes, OnKey will reset the keys, but just until the next time.
I also tried reinstalling XL 97 to no avail.
Am I alone in the wilderness having written too many lines of code? <g

Jim Cone
San Francisco, USA



  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 747
Default Keyboard key assignments change...

Try:
1. Control Panel
2. Regional and Languages Options
3. Details button in the Text services and input languages frame
4. Select the alternate language option displayed as a node in the treeview
5. Click Remove button
6. Alternatively, note the Change Key Sequence button
7. Unselect the checkboxes.

The above was from a laptop set up by our IT guy. I believe the current
settings are the default. I have the default key sequence to change between
English and French as "Left Alt + Shift". This is hardly a coincidence I
would think.

I'm rushed for time and took the above notes very quickly and didn't test. I
pretty sure you'll get it sorted.

All the best,
Greg

"Jim Cone" wrote:

Greg,
Thanks for the information.
Looks like you figured it out as no button click is necessary to toggle the
"alternative" layout. However, I do not have the Input locales tab on
the Keyboard dialog/window. Two tabs only...Speed and Hardware.
I am using Windows XP with SP2.
I will now do some searches re windows/keyboard settings and/or
review the Windows installed settings.
Do you have any other suggestions?
Your help is much appreciated.
Regards,
Jim Cone


"Greg Wilson"
wrote in message
Jim,
I replicated similar with <Alt + <Shift and left mouse click when I had an
alternate keyboard layout selected. The button or message box apparently are
not actually relavent. The key + mouse click sequence appears to toggle
between the keyboard layout selections. For alternate keyboard layout
selections see:
Control Panel / Keyboard / Input locales tab / Installed input locales window.

Note the Hot key option in this dialog. The key + mouse click sequence
likely activates the toggling behaviour by design. After unselecting the
alternate keyboard layout option leaving only "English (United States)....US"
and pressing the Apply button the behaviour was removed. You could probably
just unselect the checkbox re the Hot key option (not tested).

Above based on a quick test only.
Regards,
Greg



"Jim Cone" wrote:

Hello,

The ~, ,@, # and | keys are assigned to other characters...

(~!@#$%^) becomes (¬!"£$%^) and the bar key changes to a tilde.

This occurs in the four Xl versions 97 thru 2003 that I have; if/when...

1. Add a button from the forms toolbar to a worksheet
or use a message box with an OK button.
2. Hold down the Alt and Shift keys and click the button.
(don't assign a macro to the button)

The keys are returned to their normal function by repeating the process.
Yes, OnKey will reset the keys, but just until the next time.
I also tried reinstalling XL 97 to no avail.
Am I alone in the wilderness having written too many lines of code? <g

Jim Cone
San Francisco, USA




  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 3,290
Default Keyboard key assignments change...

Greg,
That was it, problem taken care of.
The layout and captions were slightly different however.

In the meantime I found Article ID 282599 which
discusses the Ctfmon.exe file and how to shut it down.
Ctfmon.exe activates the Alternative User Input Text Input Processor
and the Microsoft Office Language Bar.

I was able to avoid that step.
Thanks again.
Jim Cone
San Francisco, USA


"Greg Wilson"
wrote in message
Try:
1. Control Panel
2. Regional and Languages Options
3. Details button in the Text services and input languages frame
4. Select the alternate language option displayed as a node in the treeview
5. Click Remove button
6. Alternatively, note the Change Key Sequence button
7. Unselect the checkboxes.

The above was from a laptop set up by our IT guy. I believe the current
settings are the default. I have the default key sequence to change between
English and French as "Left Alt + Shift". This is hardly a coincidence I
would think.

I'm rushed for time and took the above notes very quickly and didn't test. I
pretty sure you'll get it sorted.

All the best,
Greg

"Jim Cone" wrote:

Greg,
Thanks for the information.
Looks like you figured it out as no button click is necessary to toggle the
"alternative" layout. However, I do not have the Input locales tab on
the Keyboard dialog/window. Two tabs only...Speed and Hardware.
I am using Windows XP with SP2.
I will now do some searches re windows/keyboard settings and/or
review the Windows installed settings.
Do you have any other suggestions?
Your help is much appreciated.
Regards,
Jim Cone


"Greg Wilson"
wrote in message
Jim,
I replicated similar with <Alt + <Shift and left mouse click when I had an
alternate keyboard layout selected. The button or message box apparently are
not actually relavent. The key + mouse click sequence appears to toggle
between the keyboard layout selections. For alternate keyboard layout
selections see:
Control Panel / Keyboard / Input locales tab / Installed input locales window.

Note the Hot key option in this dialog. The key + mouse click sequence
likely activates the toggling behaviour by design. After unselecting the
alternate keyboard layout option leaving only "English (United States)....US"
and pressing the Apply button the behaviour was removed. You could probably
just unselect the checkbox re the Hot key option (not tested).

Above based on a quick test only.
Regards,
Greg



"Jim Cone" wrote:

Hello,

The ~, ,@, # and | keys are assigned to other characters...

(~!@#$%^) becomes (¬!"£$%^) and the bar key changes to a tilde.

This occurs in the four Xl versions 97 thru 2003 that I have; if/when...

1. Add a button from the forms toolbar to a worksheet
or use a message box with an OK button.
2. Hold down the Alt and Shift keys and click the button.
(don't assign a macro to the button)

The keys are returned to their normal function by repeating the process.
Yes, OnKey will reset the keys, but just until the next time.
I also tried reinstalling XL 97 to no avail.
Am I alone in the wilderness having written too many lines of code? <g

Jim Cone
San Francisco, USA





Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

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


Similar Threads
Thread Thread Starter Forum Replies Last Post
@How to change worksheets with keyboard Sandeep Lohchab Excel Discussion (Misc queries) 1 January 9th 10 10:19 AM
How to I change worksheets in Excel with the keyboard? Nathan Burtch Excel Discussion (Misc queries) 1 May 23rd 09 08:07 PM
How to permanently change automatic color assignments in a pivot . consuelof Charts and Charting in Excel 1 April 23rd 09 09:29 PM
keyboard shortcut of change case arafin New Users to Excel 1 May 29th 06 11:14 AM
Change keyboard Regional setting Deer Hunter Excel Programming 2 August 12th 03 01:38 PM


All times are GMT +1. The time now is 09:49 AM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"