I just want to capture the screen in .Net Framework 2.0
with Smart Device application.
Not working:
Graphics g = Graphics.FromImage(screen);
g.CopyFromScreen(SystemInformation.VirtualScreen.X,
SystemInformation.VirtualScreen.Y,0, 0, screen.Size);
and
this.DrawToBitmap(bmp, new Rectangle(0, 0, bmp.Width, bmp.Height));
the above functions are not working.