Hi,
Images in Visual WebGui in general, are accessed/rendered to your forms as gateway requests, meaning that the generated Html will include an img tag with a src reference that will issue a request to your server to get the real image contents. Inside of Visual WebGui there are prewired gateways to get images from specific folders within the application virtual folder, usually a subfolder under the Resource folder. This way, the prewired gateway ImageResourceHandle will handle gateway requests for Resources\Images folder etc. This you probably know already.
Embedding an image within your application will still require a gateway to serve the contents to the browser, either the prewired AssemblyResourceHandle, or a one you wire up yourself.
This AssemblyResourceHandle would then be used for embedded images in a manner similar to the following:
this.pictureBox2.Image = new AssemblyResourceHandle(this.GetType(), "MyJPG.jpg");
this.pictureBox1.Image = new AssemblyResourceHandle(this.GetType(), "SomeFolder.George.png");
The first line will serve an image embedded within the current application on the root folder, and the second line would do the same for an embedded image placed on a subfolder named SomeFolder.
If the images are embedded within an assembly other than the currently executing application, you would have to adjust to instanciation of AssemblyResourceHandle accordingly.
As I have no information on the exact location of your image, I can not give you any exact code lines to place in your application, but I hope the above information will help you solve this.
Palli