I have a form in my VB> NET (2010) project with some ImageList. These images are embedded in the list with the form resource in the .resx file as
data name = "xxxx.ImageStream" mimetype = "application / x-microsoft.net.object.binary.base64 When I tried to create / run my project, I get:
Error 23 is not a valid Win32 application. (Exception from HRESULT: 0x800700C1) Line XXXX, position X ...
in the line where the data tag closes.
When I change the base64 code of the image inside the .resx file (changing some "0" to "y"), the project compiles, but when I try to run the application, the images reload and my changes disappear
Do you know how to solve this error and make my project build and work? Thanks
source share