ID: P75607
Title: "Should ActiveX controls only be created via the AppBuilder?"
Goals:
Should ActiveX controls only be created via the AppBuilder?
Fixes:
Yes, the External Program Interfaces manual states the following:
In Progress, you must use the AppBuilder at design time to create instances of ActiveX controls in your application.
{timer.i} /* timer library include */
define var t as int no-undo.
t = setTimeout( "displayTime", this-procedure, 1000 ).
t = setTimeout( "displayTime", this-procedure, 5000 ).
t = setTimeout( "displayTime", this-procedure, 10000 ).
display
"The proc will show the time" skip
"1 sec, 5 sec and 10 sec from now" string( time, "hh:mm:ss" ).
wait-for window-close of current-window.
procedure displayTime:
display string( time, "hh:mm:ss" ).
end procedure. /* displayTime */
joey.jeremiah said:i didn't know how portable the wrx file (controls definition file) would
be.