Intelemarketing Active Member Licensed User Longtime User Oct 1, 2020 #1 I can do this with LOG - and it displays in LOG no problems MyScale = GetDeviceLayoutValues.Width Log ("Width = " & MyScale) I want to do the same thing in a Message Box (MyScale is a FLOAT) Something like MsgBox ("Width = " & MyScale) which clearly does not work Thanks
I can do this with LOG - and it displays in LOG no problems MyScale = GetDeviceLayoutValues.Width Log ("Width = " & MyScale) I want to do the same thing in a Message Box (MyScale is a FLOAT) Something like MsgBox ("Width = " & MyScale) which clearly does not work Thanks
JohnC Expert Licensed User Longtime User Oct 1, 2020 #2 This should work: B4X: MsgboxAsync("Width = " & MyScale,"Result") (you should always use async version of MsgBox and Msgbox2) Upvote 0
This should work: B4X: MsgboxAsync("Width = " & MyScale,"Result") (you should always use async version of MsgBox and Msgbox2)