View Single Post
  #2   Report Post  
Posted to microsoft.public.excel.programming
Peter T Peter T is offline
external usenet poster
 
Posts: 5,600
Default Application communicating with Excel

Any solution, if any, would depend entirely on what the other application
is, in particular whether it supports automation and depending on the app
(eg IE, Word) knowing where the text is you want to copy.

Regards,
Peter T

"Dan Tabla" wrote in message
...
Hi all,

Please give me any suggestion regarding how to send to Excel, 5 strings
that
I'm getting manualy by selecting/copy from another application.
I tryed my best and searched internet but I couldn't solve it.
Clipboard looks helpful but.. http://www.cpearson.com/excel/Clipboard.aspx

For example:

For i=1 to 5
ActiveSheet.Cells(1,i)=Selection/copy(i)
Next i


Thank you very much for any solution!