sending @ symbol to the command line

Started by andrew, September 15, 2010, 07:10:19 AM

Previous topic - Next topic

andrew

hello gents
Im working on a program to act as a keypad

im using the follow example code to send the numbers to the acad command line and it works
however im not able to get the "@" symbol to be sent to the acad command line.

would anyone have any suggestions on how to achieve this?
any help is appreciated


(defun c:KEYPAD_Form1_TextButton1_OnClicked (/)
  (COMMAND ".75")
(PRINC)
)

Fred Tomke

Hello, please try (dcl_sendstring "@0.75"). I cannot test it at this time.

Fred
Fred Tomke
Dipl.-Ing. (FH) Landespflege

[ landscaper - landscape developer - digital landscape and urban design]

andrew

Hi Fred,
Thanks for the reply
I tried the sendstring function, and that didnt work.
all i get is:

Command: L
LINE Specify first point:
Specify next point or [Undo]: T

Point or option keyword required.

the way im using it works for my needs but im just unable to get just the "@" symbol to work
or any symbol for that matter.