I've been looking at resumable sub posts and I did not find one that I need.
I want to load an image from the harddrive, and have the sub wait until it is successfully loaded.
After that it may continue.
How to do that?
Thanks
I want to use it with this code
I want to load an image from the harddrive, and have the sub wait until it is successfully loaded.
After that it may continue.
How to do that?
Thanks
I want to use it with this code
B4X:
Sub InitCustomSkinImage
If File.Exists(TmpFolder, "Design.png") = True Then
Main.ivPaneManagerInfo.SetImage(fx.LoadImage(TmpFolder, "Design.png"))
FadeInImage
End If
End Sub