Hello,
I wish to display a bitmap image in a windows; I specify its size. I don't obtain a single image, but 4 times the same image in my windows, and those images are one quarter the size i want them to be. (I want a 2000 * 2000 sized image, and I have four 500*500 sized images, displayed on the same line, not even filling up my windows). I can't find why this happen, has anyone an idea ?
TIA
here is my code :
Bitmap
System.Drawing.Imaging.
System.Runtime.InteropServices.
bmp.UnlockBits(bmpData);
m_dlgMyObject.ShowPicture(bmp);
public
{
myObjectPBx.Image.Dispose();
myObjectPBx.Image = pict;
myObjectPBx.Refresh();
}