Simple Sendkeys alternative?

travisc

Board Regular
Joined
Oct 19, 2005
Messages
138
The application i'm trying to sendkeys to is only allowing standard text/numbers. Special characters such as (TAB, ALT, F7, etc) are not registering. Looking for another VBA alternative to try? All the program is doing is switching to the application, which works fine. And entering 2 [TAB]s and the number 1, and looping X amount of times.

VBA Code:
Sub CycleCount()
    Dim cycles As Integer
    Dim counter As Integer
    counter = 0
    cycles = InputBox("How many line items to count?")
    If cycles = 0 Then Exit Sub
    AppActivate "e21prd"
    SendKeys "1", True
    For counter = 1 To cycles
        SendKeys "{TAB 2}1", True
        Next counter
    MsgBox "Complete"
End Sub

Thanks in advance.
 

Excel Facts

Add Bullets to Range
Select range. Press Ctrl+1. On Number tab, choose Custom. Type Alt+7 then space then @ sign (using 7 on numeric keypad)
Cross-posting (posting the same question in more than one forum) is not against our rules, but the method of doing so is covered by #13 of the Forum Rules.

Be sure to follow & read the link at the end of the rule too!

Cross posted at: Simple SendKeys alternative?
If you have posted the question at more places, please provide links to those as well.

If you do cross-post in the future and also provide links, then there shouldn’t be a problem.
 
Upvote 0
We aren't, if you follow the link supplied in the rules uou will understand.
 
Upvote 0

Forum statistics

Threads
1,215,614
Messages
6,125,848
Members
449,266
Latest member
davinroach

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