¿Como deshabilitar el Task Bar de PocketPC?

Post Reply
User avatar
pablovidal
Posts: 398
Joined: Thu Oct 06, 2005 10:15 pm
Location: Republica Dominicana
Contact:

¿Como deshabilitar el Task Bar de PocketPC?

Post by pablovidal »

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
------------------------------------------------------
*/
User avatar
Antonio Linares
Site Admin
Posts: 37481
Joined: Thu Oct 06, 2005 5:47 pm
Location: Spain
Contact:

Re: ¿Como deshabilitar el Task Bar de PocketPC?

Post 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
 
regards, saludos

Antonio Linares
www.fivetechsoft.com
Post Reply