.Net equivalent to Esc key

.Net equivalent to Esc key

Anonymous
Not applicable
2,126 Views
3 Replies
Message 1 of 4

.Net equivalent to Esc key

Anonymous
Not applicable

Hi all

 

Rewriting old VBA code in .Net C#. Strugeling with finding a way to send Esc key. Chr(27) worked fine in VBA.

 

This VBA code is updating the block definition but aborts by Esc key before insertion.

 

ThisDrawing.SendCommand ("-insert" + vbLf + "STREAM003=C:/CAD/GDIR/Library/STREAM/STREAM003.DWG" + vbLf + "y" + vbLf + Chr(27))

 

 

Tried the same using ACADCMD but this results in 'Requires numeric distance or two points.' in the commandline.

 

ResultBuffer rb = newResultBuffer();

rb.Add(newTypedValue(5005, "-INSERT"));

rb.Add(newTypedValue(5005, BlockString));

rb.Add(newTypedValue(5005, "y"));

rb.Add(newTypedValue(5005, (char)27));

acedCmd(rb.UnmanagedObject);

 

 

Any ideas?

0 Likes
2,127 Views
3 Replies
Replies (3)
Message 2 of 4

Hallex
Advisor
Advisor

Try this one

            ResultBuffer rb = new ResultBuffer();

            rb.Add(new TypedValue((int)LispDataType.Text, "-INSERT"));

            rb.Add(new TypedValue((int)LispDataType.Text, BlockString));

            rb.Add(new TypedValue((int)LispDataType.Text, "y"));

            rb.Add(new TypedValue((int)LispDataType.Text, @"^C"));

            acedCmd(rb.UnmanagedObject);

 

 

~'J'~

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
0 Likes
Message 3 of 4

Anonymous
Not applicable

Sorry, didn't work.

 

Typing ^C in AutoCAD commandline during an command doesn't help either, so I think we're barking up the wrong tree.

0 Likes
Message 4 of 4

Anonymous
Not applicable

Hi again

 

Got it working by using

 

ads_queueexpr("(command \"-insert\" \"" + BlockString + "\" \"y\" ^C)");

 

 

Thanks for pointing me at the right tree afterall. Smiley Very Happy

 

 

Cheers

Tore

 

0 Likes