We value your input! Please participate in Archicad 28 Home Screen and Tooltips/Quick Tutorials survey
2010-12-16 11:35 AM - last edited on 2023-08-03 10:34 AM by Doreena Deng
short idPalette; //Creation of the blank palette (for test purposes) idPalette = DGCreateBlankPalette(500, 60, DG_DLG_NOGROW, DG_DLG_CLOSE, DG_DLG_TOPCAPTION, DG_DLG_THICKFRAME, ModulePerso_Handler, 0); //If the creation succeeded if(idPalette != 0) { //We start processing events DGBeginProcessEvents(idPalette); //We show the palette DGShowModelessDialog(idPalette); }Then when I build the add-on, I've got 1 error, weird one thought, about :
2010-12-16 12:30 PM
atila-diffusion wrote:From ArchiCAD 14, the call
I need some help here because I've got a quite weird issue with the DGShowModelessDialog function.
...when I build the add-on, I've got 1 error, weird one thought, about :
"DGShowModelessDialog : function doesn't require 1 parameter"
2010-12-16 12:50 PM