Search found 22 matches

by Liang
Sun Apr 24, 2011 9:10 am
Forum: VCL
Topic: link error for "too many exports" after upgrade
Replies: 2
Views: 3025

Re: link error for "too many exports" after upgrade

Hello

It is fine for me.

Currently my temp solutions works, and I also hope others who have met the same problem can also know this temp solution.
by Liang
Thu Apr 14, 2011 7:43 am
Forum: VCL
Topic: link error for "too many exports" after upgrade
Replies: 2
Views: 3025

link error for "too many exports" after upgrade

Hello BDS2006 C++Builder version. Today I upgrade Teechart into v2011.03.30407, and when rebuild my application, I got link error for "too many exports; only 65535 permitted" So I manually comments out nearly all the exports in GDIPOBJ.HPP, TeeGDIPOBJ.HPP, TeeGDIPAPI.HPP and part of exports in TeeGD...
by Liang
Mon Feb 28, 2011 8:41 am
Forum: VCL
Topic: CursorTool not visible in case GDIPlus active
Replies: 1
Views: 2169

CursorTool not visible in case GDIPlus active

Hello

for the new version, if GDIPlus is active, then the CursorTool is not visible, only by moving the mouse can we see where the cursortool line is.

Please see attachment picture
by Liang
Thu Sep 30, 2010 7:46 am
Forum: VCL
Topic: TeeChart AV on changing ChartTool's name
Replies: 7
Views: 5490

Re: TeeChart AV on changing ChartTool's name

just uploaded file name:

movie.rar

It contain two movies, one for AV, one for no AV
by Liang
Thu Sep 30, 2010 7:42 am
Forum: VCL
Topic: TeeChart AV on changing ChartTool's name
Replies: 7
Views: 5490

Re: TeeChart AV on changing ChartTool's name

Hello

To reproduce the error:

1. Open ChartEditor
2. Add a ColorBand, leave Axis empty
3. Close ChartEditor
4. In the BDS IDE's component structure tree, click to select the ColorBand -->AV raised.

As far as I have set the Axis, there will be no AV.
by Liang
Thu Sep 30, 2010 7:33 am
Forum: VCL
Topic: TeeChart AV on changing ChartTool's name
Replies: 7
Views: 5490

Re: TeeChart AV on changing ChartTool's name

Hello

As the stack indicates, this AV is related to the setting of the Axis.

If I leave the Axis empty, this AV will happen.

How can I upload a zipx or rar file? Seems that this forum will not allow me to do so
by Liang
Wed Sep 29, 2010 2:02 am
Forum: VCL
Topic: Please change "FieldByName" to "FindField" for robust reason
Replies: 6
Views: 5004

Re: Please change "FieldByName" to "FindField" for robust reason

It's fine.

Thanks for your kind support
by Liang
Wed Sep 29, 2010 2:00 am
Forum: VCL
Topic: Support Oracle ftNumber type
Replies: 9
Views: 6533

Re: Support Oracle ftNumber type

Hello I do not suggest Oracle support only in the editors but a general support. Considering the fact that 107 is DevArt's specific, maybe other Oracle component has other value, so for a wider range support, regardless what actual Oracle component user is using, I think expose this event out is mor...
by Liang
Tue Sep 28, 2010 7:17 am
Forum: VCL
Topic: Support Oracle ftNumber type
Replies: 9
Views: 6533

Re: Support Oracle ftNumber type

Hello If I understand it correctly, your mentioned "variable" is an event procedure, which will be fired on Checking the fieldType? If so, would you please kindly directly declare it as an event: OnGetFieldType=procedure(const ASource:TComponent; const AType:TFieldType;var TeeType:TTeeFieldType) of ...
by Liang
Tue Sep 28, 2010 7:08 am
Forum: VCL
Topic: Please change "FieldByName" to "FindField" for robust reason
Replies: 6
Views: 5004

Re: Please change "FieldByName" to "FindField" for robust reason

Hello Maybe I am not expressing my case clearly. Now I am working on a software, that user can use it to data-mining a Oracle database. So user try different SQL, result returned, and then user can display result to a Chart. Now user first uses: "select a,b from table1 where time=today" and then sho...
by Liang
Tue Sep 28, 2010 2:13 am
Forum: VCL
Topic: TeeChart AV on changing ChartTool's name
Replies: 7
Views: 5490

TeeChart AV on changing ChartTool's name

Hello BDS2006+TeeChart2010. At design time, I am adding four TColorBandTool to a Chart, and when I try to rename their name from automatically generated "ChartTool[2,3,4,5]" into meaningful: "WarningBand, MinorBand, MajorBand, CriticalBand" through BDS IDE (BTW, ChartEditor does not allow me to chan...
by Liang
Sat Sep 25, 2010 2:01 am
Forum: VCL
Topic: Support Oracle ftNumber type
Replies: 9
Views: 6533

Re: Support Oracle ftNumber type

Hello

I am using Devart's ODAC for Oracle database access.

And they have especially uses 107 to represent OracleNumber type.

So I guess that there may be of some standard on using 107 as Integer number to represent OracleNumber for data inter-changing?
by Liang
Sat Sep 25, 2010 1:42 am
Forum: VCL
Topic: Please change "FieldByName" to "FindField" for robust reason
Replies: 6
Views: 5004

Re: Please change "FieldByName" to "FindField" for robust reason

Hello You are right that in case of field not exist, FieldByName will raise an exception. The problem is that if the user saves the chart setting, who has a series linked to a dataset, and next time if he loads the setting, such non-existing fields will raise an exception, and user may intercepts th...
by Liang
Sun Sep 19, 2010 6:36 am
Forum: VCL
Topic: Please change "FieldByName" to "FindField" for robust reason
Replies: 6
Views: 5004

Please change "FieldByName" to "FindField" for robust reason

Hello As you may see from my posts, I am not developing a software handling with Oracle database, it gives user's ability to use difference scripts to data-mining the raw data, and prevent them vividly to final user. User can uses TeeChart build-in ChartEditor, at run-time, try different fields in s...
by Liang
Sun Sep 19, 2010 6:18 am
Forum: VCL
Topic: Support Oracle ftNumber type
Replies: 9
Views: 6533

Re: Support Oracle ftNumber type

Hello I have modified the source code for supporting Oracle NUMBER type as following: In Chart.pas Function TeeFieldType(AType:TFieldType):TTeeFieldType; begin Case AType of {$IFDEF CLR}TFieldType.{$ENDIF}ftAutoInc, // etc. etc else begin if Integer(AType)=107 then // this is Oracle Number type, cas...