TechKnowledge Content

Question:Can a variable be used in a VBA message box?Answer:Yes, a variable can be used in a VBA message box. Below is an example of using a variable in a message box.Private Sub Field_BeforeLostFocus(KeepFocus As Boolean, CancelLogic As Boolean)Dim Var1 As StringVar1 = VendorIDMsgBox "The variable is " + Var1End SubIn this example, the VendorID from the window is being set as the variable. The variable is being called Var1. When the message box is displayed, the message will read "The variable is XXXX" where XXXX is the VendorID from the window. If ACETRAVE0001 was the vendor on the window, the message box would read "The variable is ACETRAVE0001".This article was TechKnowledge Document ID:24404

Need more help?

Want more options?

Explore subscription benefits, browse training courses, learn how to secure your device, and more.