Is something like this possible?
VB Code:
dim foo as winsock set foo = new winsock
I would like to use winsock in a class, but i don't want to place one on a form or something.
Printable View
Is something like this possible?
VB Code:
dim foo as winsock set foo = new winsock
I would like to use winsock in a class, but i don't want to place one on a form or something.
Nope, controls need to be added to something in order to be used. Be it form, usercontrol, whatever.
There are several classes out there that wrap the winsock APIs. Take a look at them.
I see, i will look on to that. Tnx!