SendKeys Sort of Works - Having problem with ALT (%)

drmingle

Board Regular
Joined
Oct 5, 2009
Messages
229
At my home office this works fine, but in the office it is actually placing "F1" in the cell that is active. I generally despise using sendkeys, but this was the only solution that I came up with...

Thanks in advance for your help

Code:
'---------------------------------------------------------------------------------------
' Procedure : NewSessionLastFile
' Author    : XXXX
' Date      : 11/8/2012
' Purpose   : to open a new instance of Excel with the last opened file.
'---------------------------------------------------------------------------------------
'
Sub NewSessionLastFile()
'
   On Error GoTo NewSessionLastFile_Error


Application.SendKeys ("%")
Application.SendKeys ("F")
Application.SendKeys ("1")

   On Error GoTo 0
   Exit Sub

NewSessionLastFile_Error:

    MsgBox "Error " & Err.Number & " (" & Err.Description & ") in procedure NewSessionLastFile of Module APStools"

End Sub
 

Excel Facts

Enter current date or time
Ctrl+: enters current time. Ctrl+; enters current date. Use Ctrl+: Ctrl+; Enter for current date & time.
I'm sure I had this issue at some point. I think I resolved by adding the steps together:

Application.Sendkeys ("%F")

Hope that works!
 
Upvote 0

Forum statistics

Threads
1,223,942
Messages
6,175,544
Members
452,652
Latest member
eduedu

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