Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 93
Default IE automation

Hi All,

I have small automation from excel to web.

I have no problem in logging into the web & input some values in text
box.

But there is browse option, i need input the path in the text box.
I am not able to input.

''''''''''HTML Source CODE''''''''''''''''''

<labelSpreadsheet:</label
<input type="file" name="upload" size="25" value=""
id="spreadsheet_upload"/

''''''''''HTML Source CODE''''''''''''''''''

So, I was using

set Spreads = ie.document.getelementsbyname("upload")
SpreadS.item(0).value = "D:\new folder\abc.xls"
  #2   Report Post  
Posted to microsoft.public.excel.programming
ron ron is offline
external usenet poster
 
Posts: 118
Default IE automation

On Jul 25, 5:59*am, "fi.or.jp.de" wrote:
Hi All,

I have small automation from excel to web.

I have no problem in logging into the web & input some values in text
box.

But there is browse option, i need input the path in the text box.
I am not able to input.

''''''''''HTML Source CODE''''''''''''''''''

<labelSpreadsheet:</label
* * <input type="file" name="upload" size="25" value=""
id="spreadsheet_upload"/

''''''''''HTML Source CODE''''''''''''''''''

So, I was using

set Spreads = ie.document.getelementsbyname("upload")
SpreadS.item(0).value = "D:\new folder\abc.xls"


It would help if you could post the url of the website in
question...Ron
  #3   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 93
Default IE automation

https://grid.rdc.com/wss/security/login.html

I don't have problem in login , After my login, There is one browse
button.

I want to input full file path and click submit.

I couldn't able to input the file path.



On Jul 25, 6:02*pm, ron wrote:
On Jul 25, 5:59*am, "fi.or.jp.de" wrote:



Hi All,


I have small automation from excel to web.


I have no problem in logging into the web & input some values in text
box.


But there is browse option, i need input the path in the text box.
I am not able to input.


''''''''''HTML Source CODE''''''''''''''''''


<labelSpreadsheet:</label
* * <input type="file" name="upload" size="25" value=""
id="spreadsheet_upload"/


''''''''''HTML Source CODE''''''''''''''''''


So, I was using


set Spreads = ie.document.getelementsbyname("upload")
SpreadS.item(0).value = "D:\new folder\abc.xls"


It would help if you could post the url of the website in
question...Ron


  #4   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 449
Default IE automation

Ok so the mystery is on a password protected page. How can we assist?

Best wishes Harald


"fi.or.jp.de" wrote in message
...
https://grid.rdc.com/wss/security/login.html

I don't have problem in login , After my login, There is one browse
button.

I want to input full file path and click submit.

I couldn't able to input the file path.



On Jul 25, 6:02 pm, ron wrote:
On Jul 25, 5:59 am, "fi.or.jp.de" wrote:



Hi All,


I have small automation from excel to web.


I have no problem in logging into the web & input some values in text
box.


But there is browse option, i need input the path in the text box.
I am not able to input.


''''''''''HTML Source CODE''''''''''''''''''


<labelSpreadsheet:</label
<input type="file" name="upload" size="25" value=""
id="spreadsheet_upload"/


''''''''''HTML Source CODE''''''''''''''''''


So, I was using


set Spreads = ie.document.getelementsbyname("upload")
SpreadS.item(0).value = "D:\new folder\abc.xls"


It would help if you could post the url of the website in
question...Ron


  #5   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 747
Default IE automation

Ok.... I got similar site to test my requirement.

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

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


On Jul 25, 9:29*pm, "Harald Staff" wrote:
Ok so the mystery is on a password protected page. How can we assist?

Best wishes Harald

"fi.or.jp.de" wrote in message

...https://grid.rdc.com/wss/security/login.html

I don't have problem in login , After my login, There is one browse
button.

I want to input full file path and click submit.

I couldn't able to input the file path.

On Jul 25, 6:02 pm, ron wrote:

On Jul 25, 5:59 am, "fi.or.jp.de" wrote:


Hi All,


I have small automation from excel to web.


I have no problem in logging into the web & input some values in text
box.


But there is browse option, i need input the path in the text box.
I am not able to input.


''''''''''HTML Source CODE''''''''''''''''''


<labelSpreadsheet:</label
<input type="file" name="upload" size="25" value=""
id="spreadsheet_upload"/


''''''''''HTML Source CODE''''''''''''''''''


So, I was using


set Spreads = ie.document.getelementsbyname("upload")
SpreadS.item(0).value = "D:\new folder\abc.xls"


It would help if you could post the url of the website in
question...Ron




  #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
  #7   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 277
Default IE automation

On Sun, 25 Jul 2010 16:26:08 -0700 (PDT), ron wrote:

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


You are instructing someone on how to create a brute force password
tester.

Not a very good/bright move.
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Supressing the ctrl-c and other keys during word automation in automation apondu Excel Programming 0 July 19th 07 10:10 PM
Automation Allenc Excel Worksheet Functions 5 January 13th 07 10:42 AM
Automation Rupal Vaibhav Excel Programming 0 December 12th 03 03:47 PM
Automation [email protected] Excel Programming 0 December 12th 03 02:52 PM
OLE Automation Bob C. Excel Programming 1 December 9th 03 12:37 AM


All times are GMT +1. The time now is 11:24 PM.

Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"