Glenn Lawler wrote: > I remember recently reading about an API call that returns the > Desktop client rectangle, which excludes the region occupied by the > taskbar. > > I have searched a number of Delphi groups, but can't locate it. > > Does anyone know about the API call to do this?
SystemParametersInfo(spi_GetWorkArea, ...); Or, to get the area of the taskbar: ShAppBarMessage(abm_GetTaskbarPos, ...) -- Rob ----------------------------------------------------- Home page: http://groups.yahoo.com/group/delphi-en/ To unsubscribe: [EMAIL PROTECTED] Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/delphi-en/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

