The image exists in jar file and it is used in all forms of the same project without returning error.Please open the jar file with 7zip or a similar tool and check whether the file is in the Files folder.
Dim ImageFiles() As String=Array As String("CkFalse.png", "CkTrue.png", "logoinn.png", "TxtSepar.png")
CopyAssetsToTemp(ImageFiles)
...
...
Private Sub CopyAssetsToTemp(Filenames() As String)
Dim i As Int
For i=0 To Filenames.Length-1
If Not(File.Exists(tpPath, Filenames(i))) Then
File.Copy(File.DirAssets, Filenames(i), tpPath, Filenames(i))
End If
Next
End sub
in the "Files" folder was correct, and when compiling put wrong in jar file.The name of the file in the jar is logoInn.png not logoinn.png.