Article 169983 of comp.os.vms: In article <337c7a9d.175245059@news.mcs.com>, remove_this_no-spam_schuldtl@ctt.com (Larry Schuldt) writes: |Hello, all... | |I have a need to debug smg code. This is next to impossible over a |single terminal, because the smg windows and debug windows do terrible |things to each other. DSN has a solution to this by using a second |terminal as a debug terminal, but their example of doing this involves |using a TT port. Since my access is via a lat connection, does anyone |know of a good way to do this on a VT1200 window via LAT? | |tia, |larry Since you've got a DECwindows connection into VMS, you should be able to create a DECterm with no process on it to use for the debugger session. I.e. something like: $ @detached-debug lnm$process Where detached-debug.com is given below. (It's designed for running a debugger on a detached image, but can be used in your application too.) Cheers, Aaron Aaron Leonard aaron@cisco.com [ work ] Aaron@Leonard.Tucson.AZ.US [ home ] --- $! detached-debug.com $! $ LNMtable = "LNM$GROUP_000001" $ If P1 .Nes. "" Then $ LNMtable = P1 $ Define /Table='LNMtable' DBG$INPUT DEBUG_TERM /NoLog $ Define /Table='LNMtable' DBG$OUTPUT DEBUG_TERM /NoLog $ Define /Table='LNMtable' DBG$ERROR DEBUG_TERM /NoLog $ Create /Term /Detach /NoProcess - /Window=(Icon_Name="Debugger", Title="''LNMtable' Debugger") - /Define=(Table='LNMtable', DEBUG_TERM)