FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin para Pocket PC ¿Como deshabilitar el Task Bar de PocketPC?
Posts: 401
Joined: Thu Oct 06, 2005 10:15 PM
¿Como deshabilitar el Task Bar de PocketPC?
Posted: Wed Oct 21, 2009 06:26 PM

Hola Antonio,

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

Saludos,

Saludos,



Pablo Alberto Vidal

/*

------------------------------------------------------

Harbour 3.2.0, Fivewin 17.02, BCC7

------------------------------------------------------

*/
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: ¿Como deshabilitar el Task Bar de PocketPC?
Posted: Wed Oct 21, 2009 07:32 PM
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 (fw): Select all Collapse
#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
regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion