Results 1 to 1 of 1

Very Urgent My IE is very slow to import data to excel (one http multi page)

Threaded View

  1. #1
    Forum Expert
    Join Date
    11-28-2015
    Location
    indo
    MS-Off Ver
    2016 64 bitt
    Posts
    1,513

    Very Urgent My IE is very slow to import data to excel (one http multi page)

    i have coding to import data from web in web address
    i have 3 page
    first page = login ,and put pasword
    second page to page menu
    third page is page for import data to excel
    my coding is sucses but is very slow ,
    i am using sendkeys to move from one page to second page,and third page
    please help me this is my coding
    Option Explicit
    Const USER_LOGN As String = "daboho"
    Const PASS_WORD As String = "xxxxxxxx"
    Const HTML_USER As String = "user_id"
    Const HTML_PASS As String = "hashpassw"
    Const HOME_ADRS As String = "http://"             'first page
    Dim IE As Object
    
    Sub Import3()
      Dim link As String
      Dim html As HTMLDocument
      Dim HOME_MAIN As String, LLNG_BARU As String
      Dim tablerow As IHTMLElementCollection
      HOME_MAIN = Split(HOME_ADRS, "login")(0) & "rekanan/main"                                 'second page
      LLNG_BARU = Split(HOME_ADRS, "login")(0) & "rekanan/semualelangbaru"                'third page
      Set IE = CreateObject("InternetExplorer.application")
      ActiveSheet.Cells.ClearContents
      With IE
        '.Visible = True
        .navigate HOME_ADRS: Wait ""                         'first in page
        
        With .document
        Dim us, ps As Object
          Set us = IE.document.getElementsByName("user_id")(0)
          If Not us Is Nothing Then us.Value = USER_LOGN
          Set us = IE.document.getElementsByName("hashpassw")(0)
          If Not us Is Nothing Then us.Value = PASS_WORD
           SendKeys "{ENTER}", True: Wait HOME_MAIN            'second page
          .Links(2).Click: Wait LLNG_BARU                      'third page page
          Dim y As Long, ele As Object
          y = 2
          Set tablerow = .getElementsByClassName("horizLine")
        For Each ele In tablerow
            Cells(y, 1) = ele.getElementsByTagName("td")(0).textContent          'this is error debug
            Cells(y, 2) = ele.getElementsByClassName("pkt_nama")(0).textContent  'this is ok
           y = y + 1
           Debug.Print ele.textContent
        Next
         .Links(6).Click: Wait ""
        End With
         .Quit
      End With
     
      Set IE = Nothing: Application.StatusBar = "Done ..."
       Range("A1:B1").Value = Array("KODE LELANG", "NAMA PAKET")
       Range("A1:b1").Columns.Width = 20
    End Sub
    
    Private Sub Wait(ByVal cUrl As String)
      If cUrl <> "" Then IE.navigate cUrl
      Application.StatusBar = "Wait for " & IIf(cUrl <> "", cUrl, "connection") & "..."
      While IE.Busy Or IE.ReadyState <> 4
        Application.Wait (Now + TimeValue("0:00:01")): DoEvents
      Wend
    End Sub
    xml.png
    Last edited by daboho; 02-03-2018 at 01:37 AM.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Replies: 8
    Last Post: 01-30-2014, 03:12 PM
  2. PDF via HTTP Import into Excel
    By randell.graybill in forum Excel Programming / VBA / Macros
    Replies: 1
    Last Post: 05-12-2013, 04:53 PM
  3. [SOLVED] Excel VBA - Dynamically Adding a Page to a Multi-Page UserForm
    By eemiller1997 in forum Excel Programming / VBA / Macros
    Replies: 116
    Last Post: 12-13-2012, 05:26 PM
  4. [SOLVED] Combobox in page 2 of multi page userform excel 2003
    By AliiShariff in forum Excel Programming / VBA / Macros
    Replies: 5
    Last Post: 06-27-2012, 07:37 PM
  5. Import data from web page to Excel
    By rkb in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 11-21-2011, 08:30 AM
  6. Import excel data over http
    By Shijesh Kumar in forum Excel Programming / VBA / Macros
    Replies: 2
    Last Post: 04-14-2010, 02:27 PM
  7. ADODB Help - How to import data into excel from another excel over internet/http
    By Shijesh Kumar in forum Excel Programming / VBA / Macros
    Replies: 4
    Last Post: 02-16-2010, 10:17 AM
  8. Import data in to excel from web page.?
    By deven171 in forum Excel Programming / VBA / Macros
    Replies: 0
    Last Post: 02-12-2009, 01:45 AM

Bookmarks

Posting Permissions

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

Search Engine Friendly URLs by vBSEO 3.6.0 RC 1