Consulting

Results 1 to 4 of 4

Thread: Ie Automation

  1. #1

    Ie Automation

    i am downloading the file from a site using vba excel the file download pop up will come when i download the file manually.
    but, when i am running the code other ie window opens and its closes automatically and the is not downloaded.

  2. #2
    You will have to share your current code, including website and file that you're trying to download in order for us to help you.

  3. #3
    hi i need to download that zip file by licking on it.

    For i = 0 To down_file.Length - 1
    asdf = down_file(i).innerText
    If InStr(1, asdf, "ZMBGX87_NOVONOR_XPO_ND22201_C115R2_M0114.zip") Then
    MsgBox "yes"
    down_file(i).Click
    Application.Wait Now + TimeValue("00:00:05")
    Call ie_wait(ie)

    file_found = 1
    Exit For
    End If
    Next

  4. #4
    Thanks
    I got it
    I need to change the setting of IE

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •