Search found 25 matches

by nile
Wed Jan 28, 2009 7:43 pm
Forum: VCL
Topic: Retrieving Gantt bars from DBChart
Replies: 9
Views: 5260

Hi Narcis,

Fabulous demo! I can clearly see why i was being unsuccessful, as you have to be quite precise in where you position the mouse cursor prior to selecting: specifically on the actual bar, and NOT on the depth rendering, as i think i was doing.

Many thanks, Nile.
by nile
Tue Jan 27, 2009 6:35 pm
Forum: VCL
Topic: Retrieving Gantt bars from DBChart
Replies: 9
Views: 5260

Hi Narcis, Ah, this is promising. If the exe ran as you expected, then perhaps i'm doing it wrong. I understood that you clicked a bar in the gantt, and then using ctrl, clicked another bar to join them up. When i do this on the exe i sent you, it's quite a hit and miss affair. So perhaps this is wh...
by nile
Mon Jan 26, 2009 11:59 pm
Forum: VCL
Topic: Retrieving Gantt bars from DBChart
Replies: 9
Views: 5260

Hi Narcis,

I've uploaded a 3mb monolithic plus project file zip. I'm using virtual tables for this exampled code. Just select the gantt, fill with act start/end and folder title in labels to see the issues with joining bars.

Thanks, nile.
by nile
Mon Jan 26, 2009 10:15 pm
Forum: VCL
Topic: Building the source code
Replies: 3
Views: 2576

Yes, i have and this works just fine. However, I understood that you would provide a project that could be compiled from within the IDE i am using (CB2007/2009). Moving to the compiler application you provided can only be viewed as a temporary fix, most especially if as a user I'm expected to change...
by nile
Mon Jan 26, 2009 10:07 pm
Forum: VCL
Topic: Customizing TeeCommander button glyphs.
Replies: 8
Views: 6607

Hi Narcis, Here's the c++ version for those that want it. If i understand this correctly, you're using a new default chart to reset all of the old chart's parameters. Is there any need then to clear the chartsseries, as the old chart still remains? I took out the snippet highlighted, and apart from ...
by nile
Mon Jan 26, 2009 8:52 pm
Forum: VCL
Topic: Example code using groups
Replies: 6
Views: 4571

Got it - looks like this will do just fine.

Many thanks,
Nile.
by nile
Mon Jan 26, 2009 8:49 pm
Forum: VCL
Topic: "Error Creating Form: Ancestor for 'TBaseForm' not foun
Replies: 7
Views: 5288

Hi Narcis,

The compiler complained:

[ILINK32 Error] Fatal: Unable to open file 'TEEDESIGNOPTIONS.OBJ'

So we are on the same page, for now, all i have installed is a registered version of your trial, and as such no such file exits in the trial installed folders.

rgds nile.
by nile
Fri Jan 23, 2009 11:33 pm
Forum: VCL
Topic: Customizing TeeCommander button glyphs.
Replies: 8
Views: 6607

I think the easiest solution was to follow Hans suggestion. You need to be careful implementing the logic, such that all the right buttons turn on and off as they should, and also get ready to call the buttons underlying implementation where necessary.. eg, 3d, editor etc. TeeCommander1->ButtonEdit-...
by nile
Fri Jan 23, 2009 9:44 pm
Forum: VCL
Topic: Retrieving Gantt bars from DBChart
Replies: 9
Views: 5260

Hi Narcis, Thanks and nicely done - but there is a problem. First, because i'm using a dbchart, i don't have access to the onclick event of a specific chart. No problem, i can get this using the ChartClickSeries event. However, when running the code, I can click on some bars, and the event fires. Ho...
by nile
Fri Jan 23, 2009 9:30 pm
Forum: VCL
Topic: Example code using groups
Replies: 6
Views: 4571

Ah, okay. Would have thought this to be a natural extension of having groups with the listbox. Meanwhile is there an alternative you can suggest? If I can cycle through the list of series available in a specific group, then I should be able to turn off the visibility that are not in the all group - ...
by nile
Fri Jan 23, 2009 9:27 pm
Forum: VCL
Topic: Building the source code
Replies: 3
Views: 2576

Building the source code

Hi, I have the source code for v8.04, and use cb2007. Trying to build the 'recommended' project Tee8BCB6 as per the help file, fails all over the place, principally because its looking for bcb6 files which don't exist (eg vcl60.bpi) If i try to build, using one of the delphi groups, eg DclTeePro811....
by nile
Fri Jan 23, 2009 9:22 pm
Forum: VCL
Topic: "Error Creating Form: Ancestor for 'TBaseForm' not foun
Replies: 7
Views: 5288

Narcis, I am using v8.04. I also added the two .pas files as recommended by the topic link you supplied, specifically teexpform.pas, teedesignoptions.pas, but the compiler still complains with: [BCC32 Error] Tee8New.cpp(526): E2303 Type name expected Full parser context Tee8New.cpp(427): parsing: in...
by nile
Fri Jan 23, 2009 2:18 am
Forum: VCL
Topic: Customizing TeeCommander button glyphs.
Replies: 8
Views: 6607

Okay, found the help you mentioned, many thanks (although tabbing this help screen with c++ code would be a nice feature for those of us who get brain ache trying to read delphi!) However, this only half answers my question. Take the following code: TSpeedButton *tmpButton=TeeCommander1->CreateButto...
by nile
Fri Jan 23, 2009 1:53 am
Forum: VCL
Topic: Retrieving Gantt bars from DBChart
Replies: 9
Views: 5260

Retrieving Gantt bars from DBChart

Hi, I'd like to connect tasks in a gantt. I'm using data aware dbchart, so i thought this: TChartSeries* myseries; for(int i = 0; i<ChartListBox->Count; i++){ if(ChartListBox->Series ->Active){ myseries = ChartListBox->Series ; break; } } TGanttSeries* xseries = dynamic_cast<TGanttSeries*>(myseries)...
by nile
Fri Jan 23, 2009 1:31 am
Forum: VCL
Topic: Example code using groups
Replies: 6
Views: 4571

Hi Narcis, Thanks for your reply. However, this isn't quite what i had in mind. The interface I'm designing is zero code based, as all data is processed via dbchart from a virtual table. As such, using the charteditor, lets say i've got 3 groups. All, Std, Financial. Let's now add a combo box with t...