LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 2
Default Login to intranet and download excel file using vba

Hi,

I have company wiki which contains some attachment in it. So first I need to login to the wiki and then download the excel file.

I have tried this:

Dim strValue As String
Dim myValue As Variant
Dim myHTMLElement As IHTMLElement
Dim myHTMLElement1 As IHTMLElement
strValue = "http://...wiki/"

On Error GoTo err_clear

myBrowser.Visible = True
myBrowser.navigate strValue


Do
DoEvents
Loop Until myBrowser.readyState = READYSTATE_COMPLETE


Set HTMLDoc = myBrowser.document
' Load all the details to the login page
HTMLDoc.all.Item("os_username").Value = "username"
myValue = InputBox("Password for your account:")
If myValue = "" Then Application.Quit
HTMLDoc.all.Item("os_password").Value = myValue

'Finds the login button and proceeds the click event
For Each myHTMLElement In HTMLDoc.getElementsByTagName("input")
If myHTMLElement.ID = "loginButton" Then
myHTMLElement.Click
Do While myBrowser.Busy: DoEvents: Loop
Do Until myBrowser.readyState = READYSTATE_COMPLETE: DoEvents: Loop
Workbooks.Open ("http://...wiki/download/List.xls")
Exit For
End If
Next


err_clear:
If Err < 0 Then
MsgBox Err.Description
Err.Clear
Exit Sub
End If


When I run the above code it just copies the login page my excel sheet.

Could anyone suggest me what should be done?

Thanks
 
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
Login into secure web site and download data into worksheet? ryguy7272 Excel Programming 5 April 14th 09 12:10 AM
Intranet Excel File...Changing Name Sharky23 Excel Worksheet Functions 1 May 24th 06 03:15 AM
Open excel file from password protected Intranet site(IE) Dan McCollick Excel Programming 4 May 17th 06 07:37 PM
Creating a User login Log file for an Excel workbook [email protected] Excel Programming 7 March 30th 06 03:39 PM
Intranet Link to excel file muziq2[_4_] Excel Programming 0 February 28th 04 05:41 AM


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

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

About Us

"It's about Microsoft Excel"