Im creating an array of winsock controls, I can place the first instance at design time and then create and kill more instances programmatically, however, I want to be able to create the 1st instance programmatically, is it possible???
Printable View
Im creating an array of winsock controls, I can place the first instance at design time and then create and kill more instances programmatically, however, I want to be able to create the 1st instance programmatically, is it possible???
yes, it is possible.
use the Add method of the Controls collectÃÂ*on.
sample
Licenses.Add "MSWinsock.winsock.1"
me.Controls.Add "MSWinsock.winsock.1", "s1"
Thank you very much Lothar