vote up 1 vote down star

Is there any possibility to orient left aligned tab captions horizontally?

flag

1  
Related question stackoverflow.com/questions/769285/…, maybe you can adapt the code to your needs? – mghie Jun 25 at 10:27

2 Answers

vote up 3 vote down check

Not sure what you want exactly, but you can set the OwnerDraw property to True. And use the OnDrawTab event to draw it yourself.

link|flag
I want to make captions on tabs to be horizontal. Just like on the image below. I've tried to use Gerry's suggestion "set Canvas.Font.Orientation to 900 or 2700" as PageControl.Canvas.Font.Orientation := 900; but I get "Undeclared identifier: 'Orientation' img341.imageshack.us/img341/9533/… – Vlad Jun 25 at 10:59
You can do that using Owner draw. – Gamecat Jun 25 at 11:28
In my TForm1.PageControl2DrawTab section I put code that ulrichb suggested in stackoverflow.com/questions/769285/…. Compiler stops compilation on TextFormat: TTextFormat; saying Undeclared identifier: 'TTextFormat'. I'm new to Delhi, would you please tell me how to correct this? – Vlad Jun 25 at 12:12
TTextFormat is defined in the file Graphics. So you need to include Graphics in your uses statement. – Gamecat Jun 25 at 12:47
It's already there. Actually doesn't matter, it's not so necessary as I thought before. – Vlad Jun 25 at 13:14
show 4 more comments
vote up 3 vote down

Besides using ownerdraw I don't think there is an easy way to do that with the TPageControl. If you'd consider using a non-free third party component, I use the TRzPageControl from Raize Components and it has this feature. Make sure to set the "TextOrientation" to horizontal and the TabStyle to roundcorners (the default tab style looks odd with the text on horizontal mode).

link|flag
+1 It doesn't take many of these requirements before a suite of well-crafted tools like Raize Components to pay for themselves many times over. Ray continues to support them actively, updating with each Delphi update while maintaining multiple versions of backward compatibility. – Argalatyr Jun 25 at 11:45
Sorry, don't have money for that. It's just a project to help my mother with her work. – Vlad Jun 25 at 12:13
Perhaps if it isn't a "pro" level app, you could use a pagecontrol with no visible tab and use another control (or a set of buttons) to change the active page. If the number of pages is fixed then it's very easy, if not you'd just need to dynamically create the buttons (which is also very easy.) I'm sure you could get a pretty good look by playing around with different controls to change the pages. – MarkF Jun 25 at 15:55
Thank you MarkF, I've already solved this problem with Google and GameCat. I've used a canvas with drawn text on it. – Vlad Jun 25 at 18:09

Your Answer

Get an OpenID
or

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