Lo primero que la aplicación este siempre "arriba" encima de todo hasta que se pulse uno se sus botones.
En PC para estar arriba (on top)tengo este codigo:
- Code: Select all Expand view
#define SWP_NOSIZE 1
#define SWP_NOMOVE 2
#define HWND_TOPMOST -1
#define HWND_NOTOPMOST -2
SetWindowPos(hWnd,HWND_NOTOPMOST,0,0,0,0,SWP_NOSIZE+SWP_NOMOVE)
Para no estar arriba (on top)
- Code: Select all Expand view
SetWindowPos(hWnd,HWND_TOPMOST,0,0,0,0,SWP_NOSIZE+SWP_NOMOVE)
¿ Como seria para FWPPC ?
Y después como me capturo "toda" la pantalla.