Hi,
I have some asp applications for wireless communications. They write wml instead of html.
One of the apps needs to connect to a html site, find the correct data in the html source, then parse it for wml. I have it working by running a VB app on our server. One version of the VB app uses Winsock the other uses the INet control. Each one has things I don't care for.

I can't use the Inet OperURL because I don't get the full page. (Only about 1450 bytes of close to 10K)
I can use Inet1.Execute(10000) sort of. I have to use "On Error Resume Next" and place it in a do loop until Err.Number=0. It sometimes takes about 20 loops before it exits.
The good thing about it is I don't need a form in the VB code. I can set the reference to the MSINET.ocx simply in the module.

The Winsock seems more reliable but I can't seem to get it to work unless it's on a form. I can reference it on a module but none of the events seem to trigger the proper subs. e.g. Sub Winsock1_DataArrival(ByVal bytesTotal As Long)
So what I have is a form that's not visible with only the Winsock control on it. The Form_Load event starts the process.

I've never used a form's Sub Form_Load() to work as a module's Sub Main().
Questions:
Will this cause any glitches?
Is there another way to do what I need?

Thanks,
Al.