Page 1 of 1

¿Como deshabilitar el Task Bar de PocketPC?

Posted: Wed Oct 21, 2009 6:26 pm
by pablovidal
Hola Antonio,

Tal como hablamos por telefono, necesito esto ?
¿Como deshabilitar el Task Bar de PocketPC?

Saludos,

Re: ¿Como deshabilitar el Task Bar de PocketPC?

Posted: Wed Oct 21, 2009 7:32 pm
by Antonio Linares
Pablo,

Aqui tienes un ejemplo que oculta todo. Puedes seleccionar facilmente lo que quieras dejar visible.

Recuerda que has de hacer click para salir de la ventana :-)

Code: Select all

#include "FWCE.ch"

#define SHFS_HIDETASKBAR    2
#define SHFS_HIDESIPBUTTON  8
#define SHFS_HIDESTARTICON 20

function Main()

   local oWnd

   DEFINE WINDOW oWnd
   
   ShFullScreen( oWnd:hWnd, SHFS_HIDETASKBAR )
   ShFullScreen( oWnd:hWnd, SHFS_HIDESTARTICON )
   ShFullScreen( oWnd:hWnd, SHFS_HIDESIPBUTTON )

   ACTIVATE WINDOW oWnd ;
      ON INIT MoveWindow( oWnd:hWnd, 0, 0, 300, 320 ) ;
      ON CLICK oWnd:End()

return nil