Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ' VBA - new file and save defaults to Prosper.xls
- ' ==================================================================
- ' This two routines use the SendKeys VBA command to save the Prosper
- ' defaults and create a new Prosper file
- ' ==================================================================
- Sub saveProsperDefaults()
- AppActivate ("Prosper")
- 'SendKeys "{F1}", True 'Send key for Help
- SendKeys "%OO%O", True 'Save default values in new Prosper file
- End Sub
- Sub newProsperFile()
- AppActivate ("Prosper")
- SendKeys "%FNn", True 'create a new file
- End Sub
Advertisement
Add Comment
Please, Sign In to add comment