Thread: IE automation
View Single Post
  #6   Report Post  
Posted to microsoft.public.excel.programming
ron ron is offline
external usenet poster
 
Posts: 118
Default IE automation

On Jul 25, 1:18*pm, muddan madhu wrote:
Ok.... I got similar site to test my requirement.

If you navigate to this webhttp://www.2shared.com/

How to input the file path in the specified text box or how to click
browse button without manually.


To click the "Browse" button try
ie.Document.all.Item("upField").Click

To click the "upload" button try
ie.Document.Forms("uploadForm").submit

....Ron