Welcome,
I'm working on screen capture tool.
My progress stops at point showing to user image what he would like to "crop".
My idea was to create a form without border (none) and make width and height, same as grabbed screenshot.
MyBitmap := TBitmap.Create;
ScreenDC := GetDC(0);
MyBitmap.LoadFromDevice(ScreenDC);
ReleaseDC(0,ScreenDC);
form1.width:=MyBitmap.width;
form1.height:=MyBitmap.height;
Border syle -> bsNone
Compile great, and almost WORK...
In Gnome, form is created under top menu.
So, top and bottom menu are over my form...
Any other way, to make it"full screen" ?
I mean, force my form over any possible menu, system, time, task ect ?
Regards