Categories: MSDN / DotNet / Java / Scripts / Linux / PHP Ask - La ask - La Answer

OK to create ActiveX from VB for C ?

I've created an ActiveX in VB6 and I need to know if there is anything
I should do to make it usable in C/C#/C++ ?
Is it 'automatically' compatible?
I don't use C so I can't test it...
Thanks.
[248 byte] By [wayneh] at [2007-11-11 9:58:21]
# 1 Re: OK to create ActiveX from VB for C ?
If u can access and use it with vb without any problems so same thing with C++ ..

I mean here with standard configuration and normal settings like ActivX control must have a user control and for dll a suitable well shared class and so on .
Amahdy at 2007-11-11 17:23:26 >
# 2 Re: OK to create ActiveX from VB for C ?
So you're saying I don't have to worry about the fact that Integers in VB and C are different sizes, as are Longs, etc. ?
wayneh at 2007-11-11 17:24:26 >
# 3 Re: OK to create ActiveX from VB for C ?
No of corse u must tell the C++ user data types .. but generally u will not have too many problems [problems occure at most in the converse from C to vb]

Generally In C we have too many methods to adjust data types like converting from int16 to int32 and so on .
Amahdy at 2007-11-11 17:25:33 >