Overloaded Messagebox
Did you know that the MessageBox() function is overloaded so that you can call it with any Datatype and it will be displayed. For Example:
Long ll_I
MessageBox( "ll_I", ll_I )
Back