Hi,
You have to have the directories with images in the Resources folder or as set in web.config
<Directories>
<Directory Code="Icons" Path="Resources\Icons" />
<Directory Code="Images" Path="Resources\Images" />
<Directory Code="Generated" Path="Resources\Generated" />
<Directory Code="UserData" Path="Resources\UserData" />
</Directories>
To use the image resource handle
Dim ImageResourceHandle1 As Gizmox.WebGUI.Common.Resources.ImageResourceHandle = New Gizmox.WebGUI.Common.Resources.ImageResourceHandle
ImageResourceHandle1.File = "AboutVWGLogo.jpg"
PictureBox1.Image = ImageResourceHandle1
I hope this helps
Jay