Login  
Search All Forums
Dart Home | PowerTCP Emulation for .NET | Custom Development Reply | PowerTCP Emulation for .NET Topics | Forums   
AuthorForum: PowerTCP Emulation for .NET
Topic: VT control showing escape sequence instead of moving the cursor sometimes.
heyparag

From: Burnaby, BC Canada
Posts: 1
Member Since: 02/20/13
posted February 20, 2013 5:55 PM

Hi,

We recently bought the DART Emulation for Telnet Control for .Net Compact framework
and were testing it with the VT control for .net Compact framework.

Sometimes the VT control for .net Compact Framework shows the escape sequence for MoveCursorTo instead of moving the cursor.
[4;12f, Is there a way to make sure that it does recognize the telnet escape sequence to move the cursor and not show the actual escape code.

Thanks and appreciate your prompt reply.
Nick B (Admin)

From: Utica, NY USA
Posts: 619
Member Since: 05/25/10

Extra Support Options
Custom Application Development

posted February 21, 2013 10:42 AM

Hello,

Please send in a log file of the received telnet data into support@dart.com. If possible, please specify which MoveCursorTo commands fail (in the email; do not modify the log file). You said that this only occurs 'sometimes'; can you elaborate on that in the email as well?

A log file may be created with:

telnet1.Log += myComponent_Log;

FileStream logFile = new FileStream(Application.StartupPath + "\\logFile.txt", FileMode.Append, FileAccess.Write);

private void myComponent_Log(object sender, LogEventArgs e)
{
if (e.Data.Direction == DataDirection.In)
{
logFile.Write(e.Data.Buffer, e.Data.Offset, e.Data.Count);
}
}
Reply | PowerTCP Emulation for .NET Topics | Forums   
This site is powered by PowerTCP WebServer Tool PowerTCP WebServer for ActiveX