Message 1 of 4
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi guys,
Could someone help me please?
I trying to make a INITGET to return to the previous page, but it is not working...
(defun InitYesNo ( / return yesno) (setq return (getvar "ctab")) ;;;...my routine will change the layout page here... (initget "Yes No") (setq yesno (cond ((getkword (strcat "\n ** Would you like to return to <"return"> page? [Yes/No] <Yes>: **")) ( "Yes" )))) (cond ((eq yesno "Yes") (setvar "ctab" return) ) ((eq yesno "No") (exit) ) );cond )
Thanks.
Marcelo
Solved! Go to Solution.