Display full version of the post: autolisp - how to display result in a dialog box /

sadhu
18.10.2009, 16:17
hello,I'm using autolisp to make a simple calculation and I want the result displayed in a dialog box or a message box.I am able to call a dialog box from my autolisp but cannot pass the the "result" to display in the dialog box.I need help to pass the this variable "result" to the dialog box and display in a large font size.thanks. 

CarlB
18.10.2009, 22:59
(alert "result") will display "result" in a simple dialog box. No options on fonts, size, etc..

Vladimir Michl
19.10.2009, 09:31
You can use the (set_tile) function to assign/display a value in a DCL dialog, alas with no font options.

sadhu
19.10.2009, 10:11

[QUOTE=Vladimir Michl]You can use the (set_tile) function to assign/display a value in a DCL dialog, alas with no font options.[/QUOTE]Thanks a lot(set_tile) was what i needed.