C
calvin.chan.cch
VB
PRINT #1, CHR$(&H1B);"a";CHR$(1);
I try to port into C#, but it is not working,
C#
st1 = "test" + (char)27 + (char)97 + (char)1;
PrintDirect.WritePrinter(lhPrinter, st1, st1.Length, ref pcWritten);
anyone have idea ?
I could print "test" in the follwoing statment
st1 = "test";1
PRINT #1, CHR$(&H1B);"a";CHR$(1);
I try to port into C#, but it is not working,
C#
st1 = "test" + (char)27 + (char)97 + (char)1;
PrintDirect.WritePrinter(lhPrinter, st1, st1.Length, ref pcWritten);
anyone have idea ?
I could print "test" in the follwoing statment
st1 = "test";1