How to Create an External Debug Window in FoxPro for WindowsLast reviewed: June 27, 1995Article ID: Q127006 |
The information in this article applies to:
SUMMARYRunning the Trace, Debug, or View windows to debug an application may be difficult if the application has screens that fill or nearly fill the entire FoxPro desktop. This article describes a method for activating the Trace, Debug, and View windows in a window independent from the FoxPro desktop. This allows easy access to them for debugging purposes.
MORE INFORMATIONThe following code (XWIN.PRG) activates an external window that contains the debugging tools:
***************************************** * Call this XWIN.PRG DEFINE WINDOW xwin ; TITLE "External Debug/Trace/View Window" ; FROM 1,1 TO 45,100 IN DESKTOP ; MINIMIZE FLOAT GROW CLOSE SYSTEM ACTIVATE WINDOW xwin ACTIVATE WINDOW DEBUG, TRACE, VIEW IN WINDOW xwin * End of XWIN.PRG How to Use XWIN.PRG
|
Additional reference words: FoxWin 2.50 2.50a 2.50b 2.60 2.60a
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |