Debugging data environment
- Eric Selje
- Posts: 31
- Joined: Sun Sep 22, 2019 3:16 pm
Debugging data environment
What would I put down in the watch window if I wanted to know about the current data environment, like DBF(), RECNO(), field values, etc.?
Debugging data environment
Eric,
XSharp.RuntimeState.Workareas contains the info that you need. It has the list of aliases, cursors, current area etc.
XSharp.RuntimeState.GetInstance() contains the settings (SET xx ON/OFF etc)
Robert
XSharp.RuntimeState.Workareas contains the info that you need. It has the list of aliases, cursors, current area etc.
XSharp.RuntimeState.GetInstance() contains the settings (SET xx ON/OFF etc)
Robert
XSharp Development Team
The Netherlands
robert@xsharp.eu
The Netherlands
robert@xsharp.eu
- Eric Selje
- Posts: 31
- Joined: Sun Sep 22, 2019 3:16 pm
Debugging data environment
Exactly what I needed - thanks!