Home > Mobile >  VBA Intenet Explorer issue with loading and achiving readystate specific webbsite
VBA Intenet Explorer issue with loading and achiving readystate specific webbsite

Time:09-18

Dear Friends Vba Masters, I have Issue connected with no possibility of achieved state "ready state" for my page. For others it is works for ex. google.com but I don`t know why for my page not. Strange things is that this page always load to view even in state .Visible = false , and object value od empty. I would like to create macro to login for this page and control some activities - on this page you can create some excel file to analysis. I will be very kind full. Mac.

Sub OpenKWM()
Dim URL As String
Dim IE As Object
Set IE = CreateObject("internetExplorer.application")
URL = "kwm.kromi.de"
   With IE
   .Navigate URL
  .Visible = True
  End With


 Do: Loop Until IE.readyState = READYSTATE_COMPLETE


End Sub

CodePudding user response:

Strange things is that this page always load to view even in state .Visible = false , and object value od empty.

If you check the enter image description here

  • Related