Search found 211 matches

by tom
Wed Mar 19, 2008 8:38 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

:shock: I think you've hit the jackpot...

you found another bug :oops: (are you sure that autoscrolltoview worked before with right/left edges?)

and meanwhile there was another issue concerning this situation. I've send you the code changes.
by tom
Tue Mar 18, 2008 8:49 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

I've send the modifications. Let me know if you received them.

Regards,
tom
by tom
Thu Mar 13, 2008 10:03 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

As test:
I've sent one mail without an attachment.
I've sent another one from a filetransfert service.

Regards,
tom
by tom
Thu Mar 13, 2008 5:13 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

that's the email address to which I'm sending... spam filter?
by tom
Wed Mar 12, 2008 10:46 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

I've resend you the source demo code. However, please try the executable first. It is an executable based on code changes in ttree. Let me know if you can still reproduce the wrong behavior. If so, please tell me how you achieved it.
by tom
Mon Mar 10, 2008 3:37 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

we will update you asap. Did you received our source-demo regarding this issue? We noticed some differences in your replies concerning the fix and our results. Because of this we wrote a source-demo to be sure that we're not testing is wrongly. But we haven't received a reply on this yet. Anyway, th...
by tom
Sat Mar 01, 2008 11:57 pm
Forum: VCL
Topic: TTree Save to Stream
Replies: 7
Views: 19845

tom @ steema . com
by tom
Fri Feb 29, 2008 11:14 pm
Forum: VCL
Topic: TTree Save to Stream
Replies: 7
Views: 19845

set

Code: Select all

  Tree1.NoOwnerShapes := False;
  Tree1.AssignParent := True;
in the OnCreate method of your form. This should give the result you need.

I can provide you some sample code if you provide me your email address.

regards,
tom
by tom
Fri Feb 29, 2008 8:45 am
Forum: VCL
Topic: Uml, Eletric and another TABS
Replies: 1
Views: 8546

Just add the specific libraries to your uses section in the source code

Regards,
tom
by tom
Mon Feb 25, 2008 7:41 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

weird... I update you as soon as possible
by tom
Sun Feb 24, 2008 11:19 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

Ashu,

Thanks for the tip on the Designing property. This is a bug. Can you tell me if the code-change solved your issue fully?

Regards,
tom
by tom
Wed Feb 20, 2008 8:04 pm
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

yup I've received it. Some more questions:

Which version of teeChart Pro are you using together with teeTree v2.0?
Do you experience this behavior on all example of teeTreeNew.exe or only on some?

Thanks,
Tom.
by tom
Wed Feb 20, 2008 1:05 am
Forum: VCL
Topic: Unwanted drag of shape when it is on the edges of the TTree
Replies: 28
Views: 57633

Pratik,

This is frustrating, I can't reproduce this issue.

With ScrollToView set to true.

Whenever I click on a partly shown node, the node scrolls into view (so it is shown fully). Clicking on the teeTree background does nothing, nor repeating steps 2 & 3.
by tom
Wed Feb 20, 2008 12:58 am
Forum: VCL
Topic: SaveToStream and Transparency
Replies: 1
Views: 8122

Mmm, this looks like a bug. The only way to solve this issue at the moment is to set the transparent property back to true after loading the tree. e.g. you could iterate the tree and set the transparent property of all nodes which have an image assigned to transparent = true; as in : Procedure TForm...
by tom
Wed Feb 20, 2008 12:25 am
Forum: VCL
Topic: TTree Save to Stream
Replies: 7
Views: 19845

Hi, LoadTreeFromStream and SaveTreeToStream load and save the Tree in native format while the 'SaveTreeTextToStream' method saves the tree in plain text format. Please have a look at the code below, this should work: procedure TForm2.CreateTreeClick(Sender: TObject); begin Tree1.Clear; Tree1.NoOwner...