Android Question MSGBOX QUESTION

Intelemarketing

Active Member
Licensed User
Longtime User
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
This should work:
B4X:
MsgboxAsync("Width = " & MyScale,"Result")

(you should always use async version of MsgBox and Msgbox2)
 
Upvote 0
Cookies are required to use this site. You must accept them to continue using the site. Learn more…