I have a form in my VB>NET project (2010) with some ImageList. Those images are embedded in the list with a form resource in a .resx file as
data name="xxxx.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64 When I tried to build/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 a .resx file, (changing some '0' with 'y') the project compiles, but when I try to run the app, the images are reloaded and my changes dissapear
Do you know how to solve this error and make my project builds and runs? Thanks