VB ID 10 T
Dec 13th, 2005, 04:30 PM
I have an application that analyzes html from a list of website and provides are report based on the results. I am using the inet component to grab the html.
When I run the app from the VB IDE, it goes very quickly and provides accurate results. After I compile the application, it slows down considerably (IDE runs are about 100-200 times faster than compiled runs). I thought I might be referencing two different msinet.ocx files but they are the same. I also looked for any indication that I need to somehow initialize the inet control. Again - nothing.
Does anybody have any suggestions.
I am getting the html as follows:
================
strGet= Inet1.OpenURL(url)
Do While Inet1.StillExecuting
DoEvents
Loop
I then analyze the contents of strGet
Any help is greatly appreciated.
EDIT: I just wanted to add that I have confirmed through logging that the slow down is when the inet.OpenURL is called.
When I run the app from the VB IDE, it goes very quickly and provides accurate results. After I compile the application, it slows down considerably (IDE runs are about 100-200 times faster than compiled runs). I thought I might be referencing two different msinet.ocx files but they are the same. I also looked for any indication that I need to somehow initialize the inet control. Again - nothing.
Does anybody have any suggestions.
I am getting the html as follows:
================
strGet= Inet1.OpenURL(url)
Do While Inet1.StillExecuting
DoEvents
Loop
I then analyze the contents of strGet
Any help is greatly appreciated.
EDIT: I just wanted to add that I have confirmed through logging that the slow down is when the inet.OpenURL is called.