WinXStatus_SetText (hWnd, part, STRING text)
Sets the text in a status bar.
Parameter | Description |
---|---|
hWnd | The handle to the window containing the status bar to set the text for |
part | The 0 based index of the status bar part to set the text for |
STRING text | The text to set the status bar to. |
Returns $$TRUE on success or $$FALSE on fail
The part parameter is 0 based.
'Set the text for part 0 WinXStatus_SetText (#hMain, 0, "This is the new text for part 0") |