enter image description here

Is this TDockTabSet for Delphi (highlighted)? Or an other component? How to work with it. I want to use it instead of TPageControl but with the same functionality - like Tab Sheets.

One more picture: http://www.tmssoftware.com/site/asg58.asp

Thanks!

link|improve this question

feedback

3 Answers

up vote 5 down vote accepted

That's not TDockTabSet. As part of the Windows GUI it's clearly not a Delphi component. What's more it is quite different in functionality.

What you have highlighted is a page control with the tabs at the bottom. In Delphi terms it is TabPosition=tpBottom.

link|improve this answer
Is there a way to make those Tabs? – maxfax Jul 17 '11 at 20:32
You want triangular tabs? I think you have to draw them yourself. Neither Aero nor classic look like that. – David Heffernan Jul 17 '11 at 20:33
1  
@David But what is this Chinese example showing then ipentec.com/document/document.aspx?page=delphi2005-docktabset ? I don't see this guy using some other components... – evilone Jul 17 '11 at 20:34
2  
Why do you want triangular tabs? They are very non-standard. Anyway, if that's what you want just draw them yourself. – David Heffernan Jul 17 '11 at 20:35
6  
@maxfax - Delphi has triangular tabs with the TTabSet component. Documentation states it's for backward compatibility and discourages its use. D2007 IDE uses them under the editor window (Code/Design/History), don't know about never versions... – Sertac Akyuz Jul 17 '11 at 20:53
show 4 more comments
feedback

There is a Delphi control that looks like it: TTabSet with TabPosition = tpBottom. It will give you triangular tabs like in the picture. It is actually used by the RAD Studio and Delphi IDE too (below the editor/designer).

link|improve this answer
feedback

Great example here Using the TDockTabSet component

link|improve this answer
Thanks! I already have it :) – maxfax Jul 17 '11 at 20:27
TDockTabSet is a diffrent thing. It is TPageControl – Orhan Cinar Jul 17 '11 at 20:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.