Hi,

I've been programming on and off for years with Vb6. I made a program once using Dart's PowerTCP tool. The tool comes with SecureTcp which allows both secure and normal tcp connections and works very similar to Mswinsck.ocx. The componet works perfectly in VB6 however I'm trying to make it work with VB 2005. I understand there are newer versions of the control designed specifically for .NET but they cost $500 bucks.

I started a project in Vb6 and used the Project Upgrade Wizard to update it to Vb 2005. This is where the trouble began...

In VB6 in order to receive incoming data this code was placed in the Receive event:

Dim sGone As String

sslGET.Receive sGone$
sRECV$ = sRECV$ & sGone$


However in VB 2005 this code does not work. I used Ethereal packet analyzer to make sure the program was connecting and making the request to the server. My request was indeed going through and data was even sent back. For some reason though I can't get the data from using sslGet.Receive.

I'm a total noob when it comes to vb 2005. I just migrated last week so this whole object oriented thing is new to me. Any help would be greatly appreciated.

Thanks in advance