M
mrabie
Hi,
I am writing an application where i want to do nice transition
effects, i thought of the following,
1) Main form1 is loaded and shown on screen
2) Load form2 in an offscreen buffer
3) capture bitmap image of the form (after the form has been loaded in
the offscreen buffer)
4) capture bitmap image of form1
5) make transition effect by double buffering
the problem is that i am not able to load the form into an offer
screen buffer... is that possible?
the other idea i thought about is to follow the same steps above but
instead of loading the form in an off screen buffer, i load the form
and setting the bounds to out of the screen and then capture the image
but i get a blackscreen when this is done. e.g
form2.location = new Point(240,0);
form2.Show();
Bitmap Snapshot = this.SnapShot(gxbuffer, new
Rectangle(240,0,240,320);
any ideas or help would be really appreciated
Thanks
I am writing an application where i want to do nice transition
effects, i thought of the following,
1) Main form1 is loaded and shown on screen
2) Load form2 in an offscreen buffer
3) capture bitmap image of the form (after the form has been loaded in
the offscreen buffer)
4) capture bitmap image of form1
5) make transition effect by double buffering
the problem is that i am not able to load the form into an offer
screen buffer... is that possible?
the other idea i thought about is to follow the same steps above but
instead of loading the form in an off screen buffer, i load the form
and setting the bounds to out of the screen and then capture the image
but i get a blackscreen when this is done. e.g
form2.location = new Point(240,0);
form2.Show();
Bitmap Snapshot = this.SnapShot(gxbuffer, new
Rectangle(240,0,240,320);
any ideas or help would be really appreciated
Thanks