Debugging Commands

<< Click to Display Table of Contents >>

Navigation:  3. Script Language > Debugging - Commands >

Debugging Commands

DBO - Debug Raw Output

Previous Top Next


MiniRobotLanguage (MRL)

 

DBO. Command

Debug Raw Output

 

 

Intention

 

This command is used to print debug variables in the debug-window of the editor.

Unlike DBP - Debug Print, specialfoldersand systemvariables will not be resolved.

Unlike DBV. - Debug Print Variable variables will also not be resolved.

The output will be completely and exactly what you write.

 

DBO. will be ignored, if the script is not running from within the editor. This way, Debug-Messages will not be see from an compiled executable.

 

VAB.$$NAM=Rainer

VAB.$$TXT=$$NAM

DBO.$$TXT

ENR.

' Output is "$$TXT"

 

 

 

 

Syntax

 

 

DBO.P1

 

 

Parameter Explanation

 

P1 - Any text or variables you want to print in the

    Editor-Debug-Window.

 

 

 

Example

 

'*****************************************************

' EXAMPLE : DBO.

' Run from the Editor!

'*****************************************************

: $$TXT=?path\Logfile.log $$TXT

DBO. My variable is: $$TXT

ENR.

MBX.Ready

'*****************************************************

 

 

 

Remarks

 

-

 

 

Limitations:

 

-

 

 

See also:

 

    DBP - Debug Print

    DBO. - Debug Raw Output

    DBM. - DeBugMode

    SAY. - Say something

    DIP. - Delayed Instruction Processing

    USM - Use silent Mode

    DMP. - Dump internat Informations