How can I tell via a Delphi program if the Windows Explorer Taskbar is set to Autohide?
|
|
|
|
|
|
|
In Windows XP and higher, you can call Syntax:
If you want to get state of taskbar, use |
|||
|
|
|
|
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. |
||
|
|
|
|
Use Win32 shell apis (IsTBAutohide and others) |
||
|
|
|
|
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 |
||||
|
