vote up 1 vote down star

How can I tell via a Delphi program if the Windows Explorer Taskbar is set to Autohide?

flag

4 Answers

vote up 12 vote down check

In Windows XP and higher, you can call SHAppBarMessage API with ABM_GETSTATE message.

Syntax:

SHAppBarMessage(ABM_SETSTATE, pabd);

pabd is a pointer to APPBARDATA struct.
header file is: shellapi.h.

If you want to get state of taskbar, use ABM_GETSTATE message. you can call this api in delphi.

link|flag
vote up 10 vote down

What is is that you really want to find out? Is it because you want to know the area of the screen that is useable?

If so, then I believe you can use the Screen.WorkAreaRect to determine the available screen area, where all (permanent) tool bars etc. are excluded.

link|flag
vote up 1 vote down

Use Win32 shell apis (IsTBAutohide and others)
See Google Groups for undocumented apis.
Never read registry (ans stop removing right answers, it's stupid...)

link|flag
vote up -2 vote down

U have to deal with windows registry because this information is keept in there. Value indicating "autoohide" is written(read) only while user logon /logout ont with his account

Registry key responsible for storing this information is located in HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Explorer\StuckRects2 The only thing in there is settings and it is a 9th hex value for "autohide on" this value is 03 for "autohide off" it is 02

link|flag
5  
That's a hack. One should ALWAYS use an API rather than access to undocumented registry info. – Serge - appTranslator Jun 13 at 9:11

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.