J
James Dixon
I have created a windows service in C#, .net framework 1.1
The service makes a web request using the
mshtml.HTMLDocument.CreateDocumentFromURL() function
Because this is not using Windows.Forms, I can't use the
Application.DoEvents() function while the request is completing. Is there
an equivilent function (call the CreateDocumentFromURL from a seperate
thread and spin it until Document.readyState != "complete"?
Or just use Windows Forms namespace to access the Application object?
thanks
The service makes a web request using the
mshtml.HTMLDocument.CreateDocumentFromURL() function
Because this is not using Windows.Forms, I can't use the
Application.DoEvents() function while the request is completing. Is there
an equivilent function (call the CreateDocumentFromURL from a seperate
thread and spin it until Document.readyState != "complete"?
Or just use Windows Forms namespace to access the Application object?
thanks