Dear Sir,
I have an error `An unhandled exception of type 'System.IO.FileNotFoundException in picturebox in vb.net` When the Image in the Picture Is Not Found
So How to Bypass When the Image in the Picture Is Not Found
And also when the image is found, it will always appear in the form load
Please Guide Me
Private LogoFileName = "MyLogo"
Dim picLogoPath As String = Path.Combine(Application.StartupPath, $"{LogoFileName}.png")
Private Sub Company_Load(sender As Object, e As EventArgs) Handles MyBase.Load
picLogo.Image = Image.FromFile(picLogoPath)
End Sub