Ancho de la barra de tareas ( solucionado )
Ancho de la barra de tareas ( solucionado )
Tengo alguna manera de saber el ancho de la barra de tareas de windows ?. Muchas gracias de antemano
Last edited by horacio on Mon Aug 15, 2011 4:00 pm, edited 1 time in total.
- Daniel Garcia-Gil
- Posts: 2365
- Joined: Wed Nov 02, 2005 11:46 pm
- Location: Isla de Margarita
- Contact:
Re: Ancho de la barra de tareas
Hola
Code: Select all | Expand
#include "fivewin.ch"
function main()
local hTaskBar := fhTaskBar()
local aClientRect := GetClientRect( hTaskBar )
? "Alto: " + Str( aClientRect[ 3 ] ),;
"Ancho: " + Str( aClientRect[ 4 ] )
return nil
static function fhTaskBar
return FindWindow("Shell_TrayWnd", 0)
our best documentation is the source code
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9
Isla de Margarita Venezuela.
danielgarciagil@gmail.com
http://tdolphin.blogspot.com/
https://www.dropbox.com/referrals/NTI5N ... rc=global9