Hello,
How to modify the size of the icon that I place in a Msgbox.
If I change the values 60dip, 60dip the size of the icon remains the same.
Thank you.
B4X:
Dim icon As Bitmap = LoadBitmapResize(File.DirAssets, "btnsourd.png", 60dip, 200dip, True)
Msgbox2Async("Voulez vous envoyer votre message ?", "Envoi Message", "OUI", "Annuler", "NON", icon, False)
Wait For MsgBox_Result (Result As Int)
If Result = DialogResponse.POSITIVE Then
........
End If
60dip and 200dip is a typo on my part.
If I set 60dip, 60dip or 200dip, 200dip with the last parameter set to False (or True) the size of the image always remains the same