Xbasic
A5_SHOW_VARIABLE Function
Syntax
C a5_show_variable(* variable_name [,C dlg_title ])
Arguments
- variable_name
The variable or interest or a pointer to the variable frame, such as LOCAL_VARIABLES(), GLOBAL_VARIABLES()or SESSION_VARIABLES().
- dlg_title
Optional. The title of the resulting dialog box. Character
Description
The A5_SHOW_VARIABLE() displays a dialog box with tabs showing the values of each of the currently defined variables.
Example
dim aa as C aa = "Fred" ? a5_show_variable(local_variables() , "Currently Defined Variables") dim hah as C hah = "Hello" a5_show_variable(hah)
Limitations
Desktop applications only.
See Also