Answers for "how to print message in visual basic"

0

how to print message in visual basic

Using the Print method, this example displays the value of the variable 
MyVar in the Immediate window. 
Note that the Print method only applies to objects that can display text.

Dim MyVar
MyVar = "Come see me in the Immediate pane."
Debug.Print MyVar
Posted by: Guest on March-01-2022

Code answers related to "how to print message in visual basic"

Browse Popular Code Answers by Language