tufanv Expert Licensed User Longtime User Oct 20, 2019 #1 Hello, Ican't see the icon in msgbox2async box with the following code : B4X: Msgbox2Async("You want to rate ?", "", "Evet", "İptal", "", LoadBitmap(File.DirAssets,"star.png"),True) is stg wrong with it ?
Hello, Ican't see the icon in msgbox2async box with the following code : B4X: Msgbox2Async("You want to rate ?", "", "Evet", "İptal", "", LoadBitmap(File.DirAssets,"star.png"),True) is stg wrong with it ?
Erel B4X founder Staff member Licensed User Longtime User Oct 21, 2019 #2 It is related to the theme whether an icon will appear or not. You can use B4XDialog and create a custom dialog instead. Upvote 0
It is related to the theme whether an icon will appear or not. You can use B4XDialog and create a custom dialog instead.
JhoeyBoy Member Licensed User Longtime User Jan 24, 2020 #3 tufanv said: Hello, Ican't see the icon in msgbox2async box with the following code : B4X: Msgbox2Async("You want to rate ?", "", "Evet", "İptal", "", LoadBitmap(File.DirAssets,"star.png"),True) is stg wrong with it ? Click to expand... you have to Put Title for the messagebox to have space for the icon Msgbox2Async("You want to rate ?", "TITLE", "Evet", "İptal", "",LoadBitmap(File.DirAssets,"star.png"),False) Upvote 0
tufanv said: Hello, Ican't see the icon in msgbox2async box with the following code : B4X: Msgbox2Async("You want to rate ?", "", "Evet", "İptal", "", LoadBitmap(File.DirAssets,"star.png"),True) is stg wrong with it ? Click to expand... you have to Put Title for the messagebox to have space for the icon Msgbox2Async("You want to rate ?", "TITLE", "Evet", "İptal", "",LoadBitmap(File.DirAssets,"star.png"),False)