I have created a module where I declare a Public variable.
Code:
Public Const MyVariable = 5
In another form I try to get its value and show it in a MsgBox
Code:
Msgbox MyVariable
I get an empty Msgbox. I don't know why it happens and how I can solve it.

I thought that I would get a Msgbox containing the value 5.