View Single Post
  #1   Report Post  
Posted to microsoft.public.excel.worksheet.functions
sunspot27 sunspot27 is offline
external usenet poster
 
Posts: 4
Default App activate issue

I'm using the following code to access an application called ACT! that
is open and running and send the following keys. However after the
'AppActivate' line, it reverts back to excel.

Sub test()

AppActivate ("ACT!")
SendKeys ("%f")
SendKeys ("d")
SendKeys ("e")

End Sub


How do i stop this form happening?

Thanks