02-26-2016 06:04 AM
Hello
I'm building an old project in CVI2015 64Bit and i see a problem during the build in EasyTab.c
#if defined(_NI_mswin64_) && _NI_mswin64_
#ifndef IGNORE_EASYTAB_64BIT_ERROR
#error this custom control is not supported in 64-bit applications
#endif
The build of my project fails with the error : #error this cutom control is not supported in 64-bit applications
What does this mean ?
How can i solve this problem
thanks in advance
Solved! Go to Solution.
02-26-2016 06:26 AM
Hello,
from the help: The easytab.fp instrument driver is not supported for 64-bit applications.
what does it mean: it means that the functions in this library only work for 32 bit applications, not in 64 bit applications. You can solve this problems in two ways: switch to 32 bit or replace the outdated easytab library functions by the tab control functions
03-05-2016 06:58 AM
oke thanks
09-07-2021 03:28 PM
Were you successful in changing application from 32-bit to 64-bit and get rid of the error? If so what was the strategy used to change from easy tab to Tab Control functions? Please share your few findings so it would help solve same issue so that I can kick start implementing same or similar ideas for my Application. Thanks.
09-08-2021 02:42 AM
Hello
We don't use CVI in new project so for old project i unload easytab when i load my project and compile without errors
At the end this was enough for me
09-13-2021 04:46 AM
Switching from EasyTab to native tab controls is not so difficult, since the base paradigm is the same for both: each tab page is a separate (child) panel with its own handle. Addressing controls on a tab page must be done via that handle.
Given that you have two ways: