Вопрос

Ive searched some fo a solution but not a single person shows a solution... I would appreciate if someone could explain why it occurs and how to solve it (in a simple way) :)

Occurs in same place all the time... a couple of minutes after i start the program.

private static Bitmap bmpScreenShot;
private static Graphics gfxScreenShot;
...
...

bmpScreenShot = new Bitmap(Screen.PrimaryScreen.Bounds.Width,
    Screen.PrimaryScreen.Bounds.Height, PixelFormat.Format32bppArgb);
gfxScreenShot = Graphics.FromImage(bmpScreenShot);
gfxScreenShot.CopyFromScreen(Screen.PrimaryScreen.Bounds.X,
    Screen.PrimaryScreen.Bounds.Y, 0, 0, Screen.PrimaryScreen.Bounds.Size, 
    CopyPixelOperation.SourceCopy); // <-- Occurs here a while after ive started the application

It runs a couple of times (say 40-80 times) before this happens:

Win32Exeption was unhandled: The operation completed successfully

Это было полезно?

Решение 2

Turns out i had to do bmpScreenShot.Dispose(); and gfxScreenShot.Dispose();

Другие советы

Before you go any further, create a try and catch statement:

try
{
    //Your code goes here
}
catch (Win32Exception e)
{
    //Handle the exception here, or use one of the following to find out what the issue is:
    Console.WriteLine(e.Message);
    MessageBox.Show(e.Message, "Exception");
}
Лицензировано под: CC-BY-SA с атрибуция
Не связан с StackOverflow
scroll top