Hey all, using Visual Studio 2005, I have an app I'm writing that uses PictureBox controls...in the code, I set the image for the PictureBox control to something like:
PictureBox1.Image = Image.FromFile(CurDir() & "\internet1.jpg")
PictureBox2.Image = Image.FromFile(CurDir() & "\internet2.jpg")

However, when building the program, then moving the executable, say to the desktop or another machine, the reference is no longer valid...how can I include the file in the build, then set the PictureBox.image property to that image?

Please help...