1
vote
3answers
757 views
How do I get the HWND for an ActiveX control after the control has been initialised/activated?
I am creating an ATL 8.0 based ActiveX control in C++ using Visual Studio 2008. I need to create a sub-window and attach it to the ActiveX control.
How do I get access to the HWND that i …
1
vote
4answers
2k views
What causes Visual Basic Run-time error -2147319765 (8002802b) in Excel when an ActiveX control has been instanced?
I have created an ActiveX control using C++. I use Visual Basic code to instance the control in an Excel worksheet. I can only run the VB script once, subsequent runs cause the following runtime …
2
votes
2answers
345 views
Can ActiveX properties (to be accessed from Visual Basic) be procedurally generated at run-time?
Does anyone know if it is possible to generate ActiveX properties at run-time?
I only need to be able to get and set these properties from Visual Basic.
My ActiveX control is co …
1
vote
1answer
152 views
How can I make my C++ ActiveX control print nicely in Excel?
I am trying to get my ActiveX control to print out nicely in Excel.
The control is written in C++. Originally I generated the control using the Visual Studio 2005 wizard. I have tested t …
0
votes
4answers
230 views
Is there any way to programmatically determine in C/C++ how many parameters a Lua function expects?
Is there a way to determine how many parameters a Lua function takes just before calling it from C/C++ code?
I looked at lua_Debug and lua_getinfo but they don't a …
1
vote
In C++ I Cannot Grasp Pointers and Classes
Learn assembly language and then learn C. Then you will know what the underlying principles of machine are (and thefore pointers).
Pointers and classes are fundamental aspects of C++. If …
1
vote
How do I get the HWND for an ActiveX control after the control has been initialised/activated?
After some trial and error and I found the answer I was after.
In the constructor of your ATL ActiveX control you to add the following line of code:
m_bWindowOnly = true;
…
0
votes
What causes Visual Basic Run-time error -2147319765 (8002802b) in Excel when an ActiveX control has been instanced?
After talking to Microsoft I found out the cause of the problem I was having.
When creating an ActiveX control using the VS 2005/2008 wizard you need to check the 'Connection points' check …
1
vote
How can I make my C++ ActiveX control print nicely in Excel?
After much head scratching I figured out the solution to my problem.
The OnDraw function generated by the Visual Studio 2005 wizard sets up a clipping region by calling the fun …
