calling one odcl file from another

Started by andrew, January 06, 2011, 06:21:38 AM

Previous topic - Next topic

andrew

I have a odcl program that has many many sub modal windows
most of which are no longer used, however the lsp code for all these sub modal windows are co-dependant so just re-writing it to use the 2 sub modal windows i need would take me a while to do.

so my question is, is it possible to call sub modal windows in one odcl file from another?

for example
(dcl_Form_Show dwgbrowser_Form3) is from one odcl file

if i put just the above in my command line, the sub modal window opens and functions properly.
i want to put that function call into a totally different odcl file and have it open up without having to re-write any code.

if this is possible can someone explain how to get it to work

thanks

Fred Tomke

Sure, you can, andrew, I'm using nearly different 20 odcl project files and I call a form from my layer.odcl from my main.odcl. You just have to make sure that both projects are loaded.

Code (autolisp) Select
(dcl_project_load "main.odcl")
(dcl_project_load "layer.odcl")

[...]

(defun c:main_form1_pb_layer_OnClicked ()
  (dcl_form_show layer_selection)
); c:main_form1_pb_layer_OnClicked

[...]

(dcl_form_show main_form1)

Regards, Fred
Fred Tomke
Dipl.-Ing. (FH) Landespflege

[ landscaper - landscape developer - digital landscape and urban design]

andrew