Search found 211 matches

by tom
Wed Jul 04, 2007 9:47 pm
Forum: VCL
Topic: zooming / resizig problem
Replies: 2
Views: 11108

Hi Thomas, Concerning transparent images: I've replied on the PM, but never received a return, so I guess something went wrong. Please send the source example to tom at steema com Concerning the Zooming/Scrolling and Margins: Well, as designed ttree 'trims' empty spaces at the top and left side of t...
by tom
Mon Jul 02, 2007 8:03 pm
Forum: VCL
Topic: TDBTreee Synchronising Tables
Replies: 4
Views: 13302

Hi, This is not directly supported in TDBTree, but you can easily get this functionality by using the Data property of a node. Attach to this property a record or an object which contains the key information. When you click on the node, you use that key information for looking up the right record in...
by tom
Wed Jun 20, 2007 8:44 pm
Forum: VCL
Topic: Property Position TTeeScrollBar
Replies: 1
Views: 8412

Hi Joerg, You can move the scrollbar by code as in the following example: procedure TForm2.btnMoveHorzScrollBarClick(Sender: TObject); var tmpPos : Integer; begin tmpPos := (Tree1.HorzScrollBar.Max-Tree1.HorzScrollBar.Min) div 2; tmpPos := tmpPos - (Tree1.HorzScrollBar.PageSize div 2); Tree1.View3DO...
by tom
Sun Jun 10, 2007 11:47 am
Forum: VCL
Topic: Transparent Images
Replies: 1
Views: 8750

weird, could you send me the source code example so I can see what might be going wrong?

Thanks,
Tom.
by tom
Sun Jun 10, 2007 11:37 am
Forum: VCL
Topic: How to get rid of connection lines
Replies: 1
Views: 8592

you can use:

Code: Select all

Tree1.Connections.Visible := False;
Regards,
tom
by tom
Thu May 10, 2007 8:37 pm
Forum: VCL
Topic: Text on connection line
Replies: 3
Views: 12083

Hi,

We are looking into the subject. There are some issues with rotated text which we aren't sure these are fixable.

Regards,
Tom
by tom
Sun May 06, 2007 11:50 am
Forum: VCL
Topic: Text on connection line
Replies: 3
Views: 12083

Hi Normand,

Sorry, this is not available right now. I've added it to the list of new ideas to implement.

Regards,
Tom
by tom
Thu May 03, 2007 9:01 pm
Forum: VCL
Topic: Freeze on startup
Replies: 3
Views: 11648

I'm not sure, but I think this is not that simple. TeeTree uses the printers.pas unit. If something in this file is causing the issue, then it won't be easy to fix. (You can change the default printer, but I don't think this is a solution to your problem) What you can try is setting the TTree.Page.U...
by tom
Tue May 01, 2007 2:28 pm
Forum: VCL
Topic: Freeze on startup
Replies: 3
Views: 11648

This is weird. I haven't seen this issue before.
by tom
Fri Mar 16, 2007 11:40 am
Forum: VCL
Topic: TTreeNodeShape.Clicked Bug
Replies: 7
Views: 19014

Hans, I'm sorry, I can't follow anymore... 1) The Begin/End Update solves your question regarding your other post? 2) Is the click issue, solved with the patch as posted on dec 2006, http://www.teechart.net/support/viewtopic.php?t=5260 ? All patches are entered in the CVS, so they are included in th...
by tom
Mon Mar 12, 2007 11:00 am
Forum: VCL
Topic: TeeTree BeginUpdate/EndUpdate request
Replies: 5
Views: 15138

Ok, but is your problem fixed by using these implementations of BeginUpdate and EndUpdate?
by tom
Mon Mar 12, 2007 10:59 am
Forum: VCL
Topic: TTreeNodeShape.Clicked Bug
Replies: 7
Views: 19014

Message of 2004? It's of Dec 2006.

It's included in our cvs-tree, so it will be fixed in the next release of teeChart PRO.

Which version have you downloaded?
by tom
Sun Mar 11, 2007 6:37 pm
Forum: VCL
Topic: TeeTree BeginUpdate/EndUpdate request
Replies: 5
Views: 15138

TCustomTree already contains public BeginUpdate and EndUpdate methods. It enables/disables the AutoRepaint

Regards,
Tom.
by tom
Sun Mar 11, 2007 6:34 pm
Forum: VCL
Topic: TeeTree allow shift-click and ctrl-click to perform selectio
Replies: 2
Views: 9727

To select multiple shapes:

Set SingleSelection property to False;

Set the ShiftState property in the Selected property to your needs. (default ssShift)

Regards,
tom
by tom
Sun Mar 11, 2007 6:25 pm
Forum: VCL
Topic: Moving Shape With MouseUp.
Replies: 1
Views: 7926

Sorry, don't understand your request?
You want to move a shape with a mouse without selecting the shape?