SendKeys runs twice

DavidB

Active Member
Joined
Oct 21, 2002
Messages
253
Office Version
  1. 365
  2. 2013
Platform
  1. Windows
Hello there

I have written a wee program to extract the contents of a cell one character at a time and write them to the Immediate window along with the character position and the ASCII value. The purpose of this code is to determine what any invisible characters in the cell are.

At the start of the code I clear the contents of the immediate window using Application.SendKeys.

The code works perfectly if I step through the code using F8. If I run the code using F5 the table displays briefly in the immediate window but then disappears.

It appears that the SendKeys buffer needs to be flushed to stop it running a second time as the subroutine terminates but I cannot find a way to do this.

I tried forcing an ABEND by putting a deliberate mathematical error (x = x/0) into the code before the End Sub but this resulted in the code window being cleared, however, it did leave the contents of the Immediate window intact.

Here is my code:
Sub ReadCellByCharacter()

Dim NumChars As Single

' Clear the immediate window
' https://social.msdn.microsoft.com/F...-to-clear-the-immediate-window?forum=exceldev
Application.SendKeys "^g ^a {DEL} {backspace}", False ' *** This line appears to execute a second time before end sub. ***

' Determine the number of characters in a cell
NumChars = Len(ActiveCell.Value)

' Print header
Debug.Print Now
Debug.Print "Character#", "Character", "ASCII Value"

' Read Cell a character at a time then write to debug window.
For x = 1 To NumChars
Debug.Print x, Mid(ActiveCell.Value, x, 1), Asc(Mid(ActiveCell.Value, x, 1))
Next x

End Sub


Any ideas how to overcome this problem?

Thanks DavidB
 

Excel Facts

Control Word Wrap
Press Alt+Enter to move to a new row in a cell. Lets you control where the words wrap.
I would never use send keys to delete anything in the VBA window
- SendKeys is unpredictable and therefore risky
- one false move and your code is deleted instead of the immediate window :eek:

If you are simply after some clear space after previous Debug.Print

Try replacing
Code:
Application.SendKeys "^g ^a {DEL} {backspace}", False

with
Code:
Application.SendKeys "^g^{END}", True
DoEvents
Debug.Print String(200, vbCrLf)
 
Upvote 0
Thanks Yongle

Yes that the revised code seems to work thank you.

I note your comments concerning SendKeys and thoroughly agree. SendKeys must be used with extreme caution. I would go so far as to say one must clear the SendKeys Buffer on not use at all.

I found that my simple code closed Excel if the ActiveCell was vacant. Most undesireable.

I have not used SendKeys before today and am surprised how unpredictable it is.

Cheers DavidB
 
Upvote 0

Forum statistics

Threads
1,214,542
Messages
6,120,116
Members
448,945
Latest member
Vmanchoppy

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top