msfz751

IPM automation in Prosper

Oct 1st, 2013
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ' VBA - new file and save defaults to Prosper.xls
  2. ' ==================================================================
  3. ' This two routines use the SendKeys VBA command to save the Prosper
  4. ' defaults and create a new Prosper file
  5. ' ==================================================================
  6. Sub saveProsperDefaults()
  7.     AppActivate ("Prosper")
  8.     'SendKeys "{F1}", True  'Send key for Help
  9.    SendKeys "%OO%O", True  'Save default values in new Prosper file
  10. End Sub
  11.  
  12. Sub newProsperFile()
  13.     AppActivate ("Prosper")
  14.     SendKeys "%FNn", True  'create a new file
  15. End Sub
Advertisement
Add Comment
Please, Sign In to add comment