09-17-2024 09:19 AM
Hi try to convert a old programme CVI to 64 bit Edition
TS_EngineRegisterUIMessageCallbackEx(gEngine,&errorInfo,(VARIANT)(BANC_TESTSTAND_UIMessageCallback));
i dont find the good definition for use the TS_EngineRegisterUIMessageCallbackEx() i think i dont use the good definition for VARIANT
Thanks you for your help
03-24-2025 05:43 AM - edited 03-24-2025 05:52 AM
Hello Lunik,
You will find many interesting things to help you with this issue in the following Knowledge Base. 😉
I also found some code examples showing the typical structure and definitions :
HRESULT TS_EngineRegisterUIMessageCallbackEx(CAObjHandle engineHandle, ERRORINFO *errorInfo, VARIANT callbackFunction);
VARIANT callbackVariant;
VariantInit(&callbackVariant);
V_VT(&callbackVariant) = VT_DISPATCH;
V_DISPATCH(&callbackVariant) = (IDispatch*)BANC_TESTSTAND_UIMessageCallback;
TS_EngineRegisterUIMessageCallbackEx(gEngine, &errorInfo, callbackVariant);
I didn't tried them but they seem correct at first sight.
With this, you should be able to solve your issue and to convert of your programme CVI. But if you neeed further help, do not hesitate to ask ! 🤠
P.S. : I just want to draw your attention to certain portions of the code, especially the libraries, which are not always compatible with both 32-bit and 64-bit Editions. This is a well-known issue and you should also check for this, if it was not already done.