murray83
Games Collector
- Local time
- Today, 00:32
- Joined
- Mar 31, 2017
- Messages
- 822
Afternoon
i am trying to get send keys to move down to a specific location in a folder onced its been opened from the form in access
but all it seems to do is open many, many windows of the folder
here is my code so far, have seen about wait but dosent pop up when typing
i am trying to get send keys to move down to a specific location in a folder onced its been opened from the form in access
but all it seems to do is open many, many windows of the folder
here is my code so far, have seen about wait but dosent pop up when typing
Code:
Private Sub cmd_AddPrinter_Click()
'opens up folder so you can easiley add zebra printer
Dim Foldername As String
Foldername = "\\d002win0003"
Shell "C:\WINDOWS\explorer.exe """ & Foldername & "", vbNormalFocus
'SendKeys "Down 6"
'SendKeys "Left 3"
End Sub