I can load a image file from a fold if I did like this:
Bitmap myBitmap3 = new Bitmap(@"C:\HEapp\images\logo.bmp");
however, this is not convenient if I move my program, so I was try to do this:
Bitmap myBitmap3 = new Bitmap(@"\images\logo.bmp");
however, it doesn't work, could anyone tell me how to do this, many thanks!!
another question, how do I export a porper exe file which can run on a computer has no framework installed?
many thanks!!!!!