OpenDCL Forums

OpenDCL => Studio/Dialog Editor => Topic started by: Peter2 on August 15, 2013, 08:26:05 AM

Title: Load main dialog skips sub-dialogs
Post by: Peter2 on August 15, 2013, 08:26:05 AM
Maybe the title of the posting is not correct, I will try to explain.

I have a project with
- 1 modeless dialogue incl "Button A" and Button B"
- 2 palettes

The lisp behind is:

Code (autolisp) Select

(defun c:myapp ()
...
(setq project ODCL_code)

(dcl_Project_Import project nil nil)
...
...
) ; end of myapp

;;----
(defun c:ButtonA_OnClicked (/)
    (dcl_Form_Show PaletteA)
)
(defun c:ButtonB_OnClicked (/)
    (dcl_Form_Show PaletteB)
)


So I do ..

Code (autolisp) Select
Command: myapp  -> modeless dialogue is displayed (fine)
Click on "ButtonA" in dialogue -> palette A is displayed (fine)
Click on "ButtonB" in dialogue -> palette B is displayed (fine)
Close main-dialogue with "X" -> modeless dialogue is disappears, palettes stay (fine)


But ...
Code (autolisp) Select
Command: myapp  -> modeless dialogue is displayed (fine), palettes disappear (not fine)

I suppose that the second call of "dcl_Project_Import" goes to the base-modus and disables the palettes. What to do that the palettes stay?
Title: Re: Load main dialog skips sub-dialogs
Post by: Fred Tomke on August 15, 2013, 09:02:02 AM
Yes, you are right. :)

EDIT:
I mean: you are right that the second call closes all instances of forms of the reloaded project.

That's the solution: don't call it twice.

Regards, Fred
Title: Re: Load main dialog skips sub-dialogs
Post by: Fred Tomke on August 15, 2013, 09:10:05 AM
Ok, you can suppress the second call by using

Code (autolisp) Select
(if (not (member "projects" (dcl_getprojects)))
  (dcl_Project_Import project nil nil)
); if


Regards, Fred
Title: Re: Load main dialog skips sub-dialogs
Post by: Peter2 on August 15, 2013, 09:40:45 AM
Thanks. Perfect.