Recent posts

#1
Runtime/AutoLISP / Re: Help keep OpenDCL moving f...
Last post by DW - April 17, 2024, 07:55:07 PM
I donated with WISE (https://wise.com) which has lower exchange/transfer rates than PayPal.
To send money, you have to set up an account and enter the recipient's email address.

WISE contacts the recipient requesting bank details (which would already be established for Owen) and transfers the funds.
#2
Runtime/AutoLISP / Re: OpenDCL for 2025?
Last post by DW - April 17, 2024, 07:30:11 PM
It's been available since the end of March on Sourceforge here
Thanks Owen

See my post here to donate:  https://opendcl.com/forum/index.php?msg=14010
#3
Runtime/AutoLISP / Re: OpenDCL for 2025?
Last post by surferraven - April 17, 2024, 03:28:30 PM
Also interested if/when this will be available.  Happy to donate to make it happen.
#4
Runtime/AutoLISP / FlexCell
Last post by Joseph - April 15, 2024, 02:05:52 AM
Hi there.
Does anyone worked with FlexCell activex? https://www.grid2000.com/index.html
It has x64 support and it can be used with opendcl, but I don't know how to manipulate a specific cell, like change value, background color, fore color, etc...

(defun c:flexcelltest/Form1#OnInitialize (/)
        ;These codes are working
(dcl-AxControl-Put flexcelltest/Form1/Grid1 "Rows" 1)
  (dcl-AxControl-Put flexcelltest/Form1/Grid1 "Cols" 5)
  (dcl-AxControl-Put flexcelltest/Form1/Grid1 "DisplayRowNumber" T)
  (dcl-AxControl-Invoke flexcelltest/Form1/Grid1 "AddItem" (strcat "A" "\t" "B" "\t" "C" "\t" "D") T)
  (dcl-AxControl-Invoke flexcelltest/Form1/Grid1 "AddItem" (strcat "A" "\t" "B" "\t" "C" "\t" "D") T)
  (dcl-AxControl-Invoke flexcelltest/Form1/Grid1 "AddItem" (strcat "A" "\t" "B" "\t" "C" "\t" "D") T)

  ;Returns a Cell object as an entity.
  (setq cell (car (dcl-AxControl-Invoke flexcelltest/Form1/Grid1 "Cell" 1 2))
      )

  ;"Text" is a cell object property based on FlexCell documentaion. "Text" returns or sets the content of a given cell.
  ;This gives an error: Invalid argument type dcl-Control-SetProperty, argument 0
  (dcl-Control-SetProperty cell "Text" "XYZ")
)

#5
Studio/Dialog Editor / option list tooltip
Last post by domenicomaria - April 05, 2024, 07:39:45 AM
Doesn't the "option list" control have
a tab pane for the tooltip?
#6
Runtime/AutoLISP / Re: Help keep OpenDCL moving f...
Last post by kenkrupa - April 04, 2024, 10:43:38 AM
Quote from: owenwengerd on March 21, 2023, 04:10:23 PMI gave up on PayPal, and never looked for an alternative. I hope whoever takes over the web site administration may be motivated to find an alternative solution.

I (and others) want to donate! Just need to know how.
#7
Runtime/AutoLISP / How to donate???
Last post by kenkrupa - April 04, 2024, 10:38:59 AM
I want to donate but can't find any way to do so!
Please provide a way!
#8
Runtime/AutoLISP / OpenDCL for 2025?
Last post by kenkrupa - April 01, 2024, 10:23:54 AM
Any expectations on date?
#9
Runtime/AutoLISP / Re: modal RESIZEABLE form WHIT...
Last post by domenicomaria - April 01, 2024, 03:50:50 AM
even with the version I downloaded today,
the same thing happens...
... there is always this white space at the top of the form,
if it is resizable...
#10
Runtime/AutoLISP / Re: Run command with enter key
Last post by owenwengerd - March 29, 2024, 06:54:40 PM
I suppose the error occurs because the sent string does not execute until after the modal dialog is closed. Try this, it might work better:
(c:FindMS/Form1/TextButton1#OnClicked)