Hi dears
This is my code, at runtime loaded picture is not stable (hide/show) how to load it stable.
I think my app is not sure loaded picture correct or not (not decided yet)
Please help

Code:
Private Sub Timer1_Timer()
If  Val(L1.Caption) = 1 Then
BLP.Picture = LoadPicture(App.Path + "\BL\NET10A.ICO")
L2.Caption= "Yes"

ElseIf Val(L1.Caption) = 0 Then
BLP.Picture = LoadPicture(App.Path + "\BL\NET10B.ICO")
L2.Caption= "No"

Else
BLP.Picture = LoadPicture(App.Path + "\BL\NET10B.ICO")
L2.Caption= "Unknown"

End If
End Sub
Note:Timer Interval is 500