Hi,

I have this question about CreateObject.

This is what I use for MSComm. (and it works)

code:
Dim C1 as Object
Set C1 = CreateObject("MSCommLib.MSComm")
C1.Settings = "9600,n,8,1"
....
Set C1 = Nothing

I need to know how you do this for a label, textbox, button, frame, ...
So I need to know the command line,
like --> "MSCommLib.MSComm", for these objects.

R@emdonck