Entwickler-Ecke

Windows API - DockProg


Leathl - So 09.03.03 16:29
Titel: DockProg
---


Motzi - So 09.03.03 17:57

Stichwort: SHAppBarMessage() (einfach mal im PSDK anschaun)


derDoc - So 09.03.03 18:08

Wenn du kein Platform SDK hast ist hier der entsprechende Auszug daraus:
Zitat:
SHAppBarMessage Function

Sends an appbar message to the system.

Syntax

UINT_PTR SHAppBarMessage(
DWORD dwMessage,
PAPPBARDATA pData
);

Parameters

dwMessage
Appbar message value to send. This parameter can be one of the following values:
ABM_ACTIVATE
Notifies the system that an appbar has been activated.
ABM_GETAUTOHIDEBAR
Retrieves the handle to the autohide appbar associated with a particular edge of the screen.
ABM_GETSTATE
Retrieves the autohide and always-on-top states of the Microsoft® Windows® taskbar.
ABM_GETTASKBARPOS
Retrieves the bounding rectangle of the Windows taskbar.
ABM_NEW
Registers a new appbar and specifies the message identifier that the system should use to send notification messages to the appbar.
ABM_QUERYPOS
Requests a size and screen position for an appbar.
ABM_REMOVE
Unregisters an appbar, removing the bar from the system's internal list.
ABM_SETAUTOHIDEBAR
Registers or unregisters an autohide appbar for an edge of the screen.
ABM_SETPOS
Sets the size and screen position of an appbar.
ABM_SETSTATE
Sets the state of the appbar's autohide and always-on-top attributes.
ABM_WINDOWPOSCHANGED
Notifies the system when an appbar's position has changed.

pData
Address of an APPBARDATA structure. The content of the structure depends on the value set in the dwMessage parameter.

Return Value

Returns a message-dependent value. For more information, see the Microsoft Platform Software Development Kit (SDK) documentation for the appbar message sent.


Motzi - So 09.03.03 20:05

Ich fürchte nur, dass dieser eine Auszug nicht wirklich viel weiterhelfen wird.. für genauere (besser gesagt mehr) Informationen siehe http://msdn.microsoft.com


Tino - Mo 10.03.03 12:35

Einfach mal die Foren-Suchfunktion mit SHAppBarMessage füttern. Da finde ich 3 weitere Beiträge gefüunden und in einem habe ich sogar Sourcecode für eine Komponenten gepostet!

Gruß
TINO


Leathl - Mi 12.03.03 22:35

---


Tino - Do 13.03.03 01:08

Ist ja kein Problem!

Gruß
TINO


Leathl - Do 13.03.03 16:11

---