Started by donnieworld ·
2017-03-09 21:32 UTC ·
2 replies · SMF topic #2487
donnieworld
2017-03-09 21:32 UTC
After I load an OpenDCL project that contains a palette, the file dialog boxes and command dialog boxes in BricsCAD are not displayed. The command line version of commands are run. Setting FILEDIA and CMDDIA do not change the behavior.
Any help is appreciated.
owenwengerd
2017-03-11 18:13 UTC
The most common cause of this is reset system variables (by a palette event handler). If you're certain it's not a system variable issue, then I'd test the Palette sample (OPENDCLDEMO -> double-click on Palette) to see if it works correctly. Dialogs are not displayed if a lisp function is executing, so maybe somehow whatever lisp code you use to load your palette is stuck and never returns while an inner function is executing your commands.
donnieworld
2017-03-14 16:49 UTC
The demo runs and behaves as expected. It's my code ... makes perfect sense, thanks!