leonucadomi Posted August 28 Posted August 28 Hello all: I am using the strcat function but does not recognize the letter Ñ (defun c:prueba (/) (setq a (strcat "DISEÑO" " 3040")) (princ a) (princ) ) can someone help me? thanks Quote
Tsuky Posted August 28 Posted August 28 What does the SYSCODEPAGE variable return in commandline? For me your function work's correctly. 1 Quote
Tsuky Posted August 28 Posted August 28 Is the same that me! Sorry I don't understand why it's not work. 1 Quote
rlx Posted August 28 Posted August 28 maybe this ? : https://anadnet.com/blog/how-do-i-type-enye-in-autocad/ Quote
Lee Mac Posted August 28 Posted August 28 Try - (defun c:prueba ( ) (princ "DISE\\U+00D1O 3040") (princ) ) 1 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.