Hi,
I'm trying to create a basic screen recorder, so my program takes screenshots at intervals of 200 ms. To take the screenshots, I have the following:
The problem is, whenever the code is called, it delays all running applications and the cursor disappears for a moment. Is there any way to avoid this?
Thanks.
I'm trying to create a basic screen recorder, so my program takes screenshots at intervals of 200 ms. To take the screenshots, I have the following:
Code:
System::Drawing::Bitmap ^Screenshot (void)
{
SendKeys::Send("^%{PRTSC}");
return gcnew Bitmap(Clipboard::GetImage());
}
Thanks.
Comment