Search found 21 matches

by achristouio
Fri Feb 01, 2013 6:06 pm
Forum: VCL
Topic: TeeInstall in 2007 upgrade for v.7 crash
Replies: 1
Views: 4717

TeeInstall in 2007 upgrade for v.7 crash

Moving from my old XP computer to a new WIndows 7 computer, I got problems running the 2007 upgrade tool with v.7. Get only this message about unknown file: TeeChart Installation VERSION: 7 RAD 2007.Win32 v11 (BDS v5 Enterprise) EXCEPTION: Invalid filename -------------------------------------------...
by achristouio
Sat Feb 12, 2011 1:21 pm
Forum: VCL
Topic: How to use original and TChart 2010 parallel?
Replies: 3
Views: 12476

Re: How to use original and TChart 2010 parallel?

That link to the how to on quickreport seem to point to an empty article
by achristouio
Mon May 10, 2010 10:22 am
Forum: VCL
Topic: Where has TeeTree gone??
Replies: 3
Views: 10467

Re: Where has TeeTree gone??

Narcís wrote:Hi achristouio,

TeeTree is freely included with TeeChart Pro v8 VCL. It's no longer sold as a separate product as it uses TeeChart's core units.

I downloaded the last 2010 demo, but found no mention of ttree there. So has it been completely abandoned now (only available in v.7 and maybe v.8) ??
by achristouio
Thu Jan 14, 2010 12:02 am
Forum: VCL
Topic: Where has TeeTree gone??
Replies: 3
Views: 10467

Where has TeeTree gone??

I was going o suggest a purchase of teeChart and teeTree for a fellow programmer since he was looking for a better substitute of a grid viewer, but after the change of web layout, I do not see any mention of teeTree anymore.

Has it been removed from sale ??
by achristouio
Thu Jun 18, 2009 9:30 pm
Forum: VCL
Topic: Isn't this code a bit too simple??
Replies: 2
Views: 10368

Re: Isn't this code a bit too simple??

Well, the code is not an example, but the implementation of find in the tree.pas file. My comment was not about the iteration, but the fact that you only get a match if the sentence you enter is identical in folding to the text stored in the tree. Eg. if the node contain the text node1, and you sear...
by achristouio
Mon May 11, 2009 4:39 pm
Forum: VCL
Topic: Isn't this code a bit too simple??
Replies: 2
Views: 10368

Isn't this code a bit too simple??

Since I didn't get a hit searching for a sentence I know is present in the tree I looked at the find-code: Function TNodeShapeList.Find(Const S:String; Partial:Boolean=False):TTreeNodeShape; var t : Integer; begin for t:=0 to Count-1 do if ((not Partial) and (Items[t].SimpleText=S)) or ((Partial) an...
by achristouio
Mon May 11, 2009 3:27 pm
Forum: VCL
Topic: Repeatedly find items that contain the same string
Replies: 1
Views: 7962

Repeatedly find items that contain the same string

In an application I want to find all nodes that contain eg. the words "plot.plott".

I do not find a method that repeatedly give me the next node that fit the word, only the first node as in the TreeRoots.pas example.

Is the needed action not available or do I miss something obvious ??
by achristouio
Wed Feb 20, 2008 11:04 am
Forum: VCL
Topic: Pie chart slices to do not update (D2007, TC v7.11 Pro)
Replies: 9
Views: 13209

Hi Daniel, I could reproduce the issue here using v7.12 and this code: procedure TForm1.FormCreate(Sender: TObject); var i: Integer; begin for i:=1 to 5 do Series1.AddPie(i); end; procedure TForm1.Button1Click(Sender: TObject); begin Series1.AddPie(random*10); end; I've also checked that this code ...
by achristouio
Tue Oct 09, 2007 6:34 pm
Forum: VCL
Topic: Printing trees
Replies: 1
Views: 8159

Printing trees

I want to be able to print a hierarchial tree that might make up many pages in the printer, but I cannot find any other support for the one-page printout command tree.print that just prints the first lines of the tree, not a complete tree. Are there any ressource around showing how to print many pag...
by achristouio
Wed Sep 26, 2007 1:33 pm
Forum: VCL
Topic: Mouse wheel is not filtered from sending messages to a chart
Replies: 2
Views: 7244

9047589 wrote:TeeUseMouseWheel:=False
Thanx
by achristouio
Wed Sep 26, 2007 10:35 am
Forum: VCL
Topic: Mouse wheel is not filtered from sending messages to a chart
Replies: 2
Views: 7244

Mouse wheel is not filtered from sending messages to a chart

How do I disable the mouse wheel to change eg. zooming in a chart? I have disabled both scrolling and zooming using the mouse, but the wheel still do working changing layout in a chart where a scrollbox contain 1 to up to 100 charts stacked vertically (one for each day) I want to give the scrollbox ...
by achristouio
Mon Aug 27, 2007 11:33 am
Forum: VCL
Topic: Support for huge organiastional charts or huge trees?
Replies: 2
Views: 10233

Hi, Have you looked at the pages functionality? But this functionality might not solve your issues, since you are looking for a very long canvas. I'm wondering do you really need such a long canvas? Perhaps another solution be more useful? Ie browsing through 200 pages might be something which some...
by achristouio
Mon Aug 20, 2007 10:32 am
Forum: VCL
Topic: Anyone remember Whitewater Objectgraphics?
Replies: 1
Views: 5267

Re: Anyone remember Whitewater Objectgraphics?

When working in Borland Pascal I wrote several applications using ObjetGraphics tool. but unfortunately the producer was engulphed by some alien group who probably disliked the abilities it made available to most laymen in pascal programming. I just wondered if the ability of defining a world scale...
by achristouio
Mon Aug 20, 2007 10:25 am
Forum: VCL
Topic: Support for huge organiastional charts or huge trees?
Replies: 2
Views: 10233

Support for huge organiastional charts or huge trees?

How do I use TeeTree to make eg. descendants charts (for genealogical display) that might on a printer be made of lets say 200 pages wide and 2 pages high on A4 paper or the same width but fewer pages on a A0 printer. Printing person information takes some space :-) if presented side by side. But, t...
by achristouio
Mon Aug 06, 2007 8:28 am
Forum: VCL
Topic: How do I add a node as first member of children, not last?
Replies: 2
Views: 10269

Tom wrote:the position of a node is determined by its brotherindex. You can change this value to move a node, eg : BrotherIndex := 0 will move the node to the top.

Regards,
tom
Thanx!
We learn new methods :-)