Hello,
I have been facing an issue when I try to load a bitmap into an ImageView, I am using the following code:
I have already added the ImageView2 in through the designer, but all I get is a blank white box.
Will appreciate any help with this. Thank you.
I have been facing an issue when I try to load a bitmap into an ImageView, I am using the following code:
If Val(Rating) >= 8.5 Then
ImageView2 = LoadBitmap(File.DirAssets, "rating45.gif")
Else
ImageView2 = LoadBitmap(File.DirAssets, "rating40.gif")
End If
Sub Val(s As String) As Int
If Not(IsNumber(s)) Then Return 0
Return s
End Sub
I have already added the ImageView2 in through the designer, but all I get is a blank white box.
Will appreciate any help with this. Thank you.