Kermia
Kermia

Reputation: 4221

How can i have a Toolbar like this ? (Delphi)

i like this toolbar. where can i find it ? alt text

Thank you

Upvotes: 2

Views: 4436

Answers (4)

Warren  P
Warren P

Reputation: 69114

You can get one just like that using the free-for-non-commercial-use (and inexpensive for commercial use) Toolbar2000 component, and then adding the SpTBXLib add-on from Silverpoint.

http://www.silverpointdevelopment.com/sptbxlib/index.htm

You should be aware however that what you see on Windows XP with theming enabled will be slightly different than what you see on Windows Vista and Windows 7 with theming enabled, and that if your toolbar paints itself using XP theme support, that it will also stop drawing itself that way, when you turn off the "XP Themes" in Windows, such as when you change Windows to use the classic "Windows 2000" era flat gray theme.

Upvotes: 3

Kermia
Kermia

Reputation: 4221

I found it . its name is TRzToolbar from Rize Panels componenets ;)

Upvotes: 0

Uwe Raabe
Uwe Raabe

Reputation: 47889

You can achieve something (at least very) similar to that with the standard Delphi components:

  • add a TControlBar to your form
  • set its DrawingStyle to dsGradient
  • set its BevelKind to bkNone
  • add a TToolBar onto that ControlBar
  • set its DrawingStyle to dsGradient
  • add a TToolButton onto that ToolBar
  • set its Style to tbsDropDown

Upvotes: 3

R-D
R-D

Reputation: 1154

That looks a bit a like a DxBar, part of the VCL Suite by Developer Express.

Upvotes: 0

Related Questions