Recent posts

#41
Runtime/AutoLISP / modal RESIZEABLE form WHITE ZO...
Last post by domenicomaria - February 07, 2024, 03:20:39 AM
all the modal RESIZEABLE forms
show allways a WHITE ZONE
at the TOP of the form !

is it possible to avoid this ?
#42
FAQs / Tutorial Files
Last post by BazzaCAD - February 05, 2024, 08:53:33 PM
If you're new to OpenDCL the "Beginners Tutorial" will walk you through creating you're first project.
English (by: Barry Ralphs)

If you're an advanced user and would like to create an installer to deploy your application along with the OpenDCL runtime, then check out the "Inno Setup Tutorials" below:
English (by: Lance Gordon)
German (by: Fred Tomke)
Spanish (by: Carlos E. Marquez)
#43
Runtime/AutoLISP / Re: RunTime for Beta BricsCAD ...
Last post by owenwengerd - February 02, 2024, 09:43:39 AM
Yes, you understood correctly.
#44
Runtime/AutoLISP / Re: RunTime for Beta BricsCAD ...
Last post by Emiliano - February 01, 2024, 11:07:39 PM
Just to make sure I understood correctly.
The current V24.2.01 corresponds to beta1 and OpenDCL does not work here.
Will a beta2 be released later with a fix to resolve the problem?

Thank you.
Emiliano
#45
Runtime/AutoLISP / Re: Compile question
Last post by owenwengerd - February 01, 2024, 12:39:30 PM
Take a look at DistSampleReadMe.txt in the samples folder.
#46
Runtime/AutoLISP / Re: RunTime for Beta BricsCAD ...
Last post by owenwengerd - February 01, 2024, 12:38:18 PM
The current runtime will work again by the second V24.2 beta.
#47
Runtime/AutoLISP / Compile question
Last post by dsm_dude - February 01, 2024, 11:05:43 AM
Is it possible to compile the odcl's so they cannot be tampered with?

If so, how do I go about doing so?
#48
Runtime/AutoLISP / RunTime for Beta BricsCAD V24....
Last post by Emiliano - February 01, 2024, 04:19:47 AM
Hi,
when a routine update compatible with BricsCAD V24.2 will be released.
It seems that OpenDCL.Runtime.9.2.1.5.msi is not compatible.

Thank you.
Best Regards,
Emiliano
#49
Runtime/AutoLISP / dcl-Project-SaveAs issue
Last post by domenicomaria - January 30, 2024, 02:58:02 AM
I create a new odcl project.
and its name is "A"

(dcl-project-load  "A"  t  )
(dcl-form-show    "A" "f" )

and the form is correctly shown
(image "A")

. . .
Then
(dcl-Project-SaveAs "A"  (strcat my-odcl-path "B" ".odcl") nil)

(setq loaded-odcl-project-name (dcl-project-load   "B" t ) )
(princ (strcat "\n" loaded-odcl-project-name) )

When I load "B.odcl" it returns "A" again !

And if I try to show the form contained in "B"
(dcl-form-show    "B" "f" )

it happens what is shown in the attached
odcl runtime error message
#50
Runtime/AutoLISP / Re: BlockView-PreLoad will not...
Last post by glfiedler - January 29, 2024, 03:39:45 PM
Okay I got it working.  I was using (dcl-BlockView-Clear RouterBitsDB/Form1/BlockView1) to clear the view.  I thought that might be a good idea.  The OpenDCL help states "This method resets the control and clears the display."  I had no idea what "resets" was implying but it apparently resets i.e. deletes the PreLoad file reference.  I do not really need to clear the view so by eliminating the "clear" command all is well.
Learn something new every day!