11-24-2003 06:01 PM
11-25-2003 06:56 AM
11-25-2003 10:20 AM
11-25-2003 12:12 PM
11-10-2005 11:32 AM
I ASK FOR EXCUSE FOR MY BAD ENGLISH
Because I can not make it work
thanks
axel
11-11-2005 04:07 AM
You also need to remember that (at least in CVI 7.0) the embedded UIR filename must not contain spaces.
JR
11-11-2005 08:35 AM
When use the ui to code converter
replace
if (InitCVIRTE (0, argv, 0) == 0)
return -1;
if ((hpanel = LoadPanel (0, "xx.uir", )) < 0)
for this expresion
if (InitCVIRTE (0, argv, 0) == 0)
return -1;
if ((hpanel = BuildPANEL(0)) < 0)
return -1;
but have problems to invoke a menubars with (switch-case sentence)
how do for use a menu bar in embebed uir?
axel