 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
Yevgeny Granat Guest
|
Posted: Tue Apr 12, 2005 8:41 am Post subject: Report and Chart components supporting Unicode |
|
|
Hi,
I'm looking for the following components:
- report components similar to QuickReport, but supporting Unicode.
- chart components similar to TeeChart (Steema), but supporting Unicode.
I work with Delphi 7.
Thanks,
Yevgeny
|
|
| Back to top |
|
 |
Robert Dede Guest
|
Posted: Wed Apr 13, 2005 12:35 am Post subject: Re: Report and Chart components supporting Unicode |
|
|
Hello,
ProEssentials v6 formally due in the near future is Unicode at its core.
We have already distributed v6 to a few customers who also needed Unicode.
Mostly MFC shops using our DLL interface.
If interested, check out www.gigasoft.com.
best regards,
Robert Dede
Gigasoft, Inc.
"Yevgeny Granat" <yevgenyg (AT) zahav (DOT) net.il> wrote
| Quote: | Hi,
I'm looking for the following components:
- report components similar to QuickReport, but supporting Unicode.
- chart components similar to TeeChart (Steema), but supporting
Unicode.
I work with Delphi 7.
Thanks,
Yevgeny
|
|
|
| Back to top |
|
 |
narcis@steema.com Guest
|
Posted: Thu Apr 14, 2005 2:36 pm Post subject: Re: Report and Chart components supporting Unicode |
|
|
Hi Yevgeny,
In Delphi you can access WideChars (since they are accessible from the
Windows API) but you cannot display Unicode strings in native Delphi
controls (at this time). TeeChart is a native Delphi control, however
you can use UNICODE strings doing:
// At startup, show some interesting Unicode characters
SetLength(UnicodeString, 19);
UnicodeString[ 1] := WideChar($0152);
UnicodeString[ 2] := WideChar($03E0);
UnicodeString[ 3] := WideChar($0416);
UnicodeString[ 4] := Widechar($0539);
UnicodeString[ 5] := WideChar($0634);
UnicodeString[ 6] := WideChar($0950);
UnicodeString[ 7] := WideChar($0B10);
UnicodeString[ 8] := WideChar($0B86);
UnicodeString[ 9] := WideChar($0C0B);
UnicodeString[10] := WideChar($0D60);
UnicodeString[11] := WideChar($0E12);
UnicodeString[12] := WideChar($0EDD);
UnicodeString[13] := WideChar($0F00);
UnicodeString[14] := WideChar($10C5);
UnicodeString[15] := WideChar($1124);
UnicodeString[16] := WideChar($20A9);
UnicodeString[17] := WideChar($2103);
UnicodeString[18] := WideChar($3020);
UnicodeString[19] := WideChar($FFFD);
TextOutW(Chart1.Canvas.Handle, 0, 0, pWideChar(UnicodeString),
Length(UnicodeString));
Best Regards,
Narcís Calvet
http://support.steema.com
Robert Dede wrote:
| Quote: | Hello,
ProEssentials v6 formally due in the near future is Unicode at its
core.
We have already distributed v6 to a few customers who also needed
Unicode.
Mostly MFC shops using our DLL interface.
If interested, check out www.gigasoft.com.
best regards,
Robert Dede
Gigasoft, Inc.
"Yevgeny Granat" <yevgenyg (AT) zahav (DOT) net.il> wrote in message
news:425b89c7 (AT) newsgroups (DOT) borland.com...
Hi,
I'm looking for the following components:
- report components similar to QuickReport, but supporting
Unicode.
- chart components similar to TeeChart (Steema), but supporting
Unicode.
I work with Delphi 7.
Thanks,
Yevgeny
|
|
|
| Back to top |
|
 |
Narcís Calvet Guest
|
Posted: Thu Apr 14, 2005 3:05 pm Post subject: Re: Report and Chart components supporting Unicode |
|
|
Hi Yevgeny,
In Delphi you can access WideChars (since they are accessible from the
Windows API) but you cannot display Unicode strings in native Delphi
controls (at this time). TeeChart is a native Delphi control, however
you can use UNICODE strings doing:
// At startup, show some interesting Unicode characters
SetLength(UnicodeString, 19);
UnicodeString[ 1] := WideChar($0152);
UnicodeString[ 2] := WideChar($03E0);
UnicodeString[ 3] := WideChar($0416);
UnicodeString[ 4] := Widechar($0539);
UnicodeString[ 5] := WideChar($0634);
UnicodeString[ 6] := WideChar($0950);
UnicodeString[ 7] := WideChar($0B10);
UnicodeString[ 8] := WideChar($0B86);
UnicodeString[ 9] := WideChar($0C0B);
UnicodeString[10] := WideChar($0D60);
UnicodeString[11] := WideChar($0E12);
UnicodeString[12] := WideChar($0EDD);
UnicodeString[13] := WideChar($0F00);
UnicodeString[14] := WideChar($10C5);
UnicodeString[15] := WideChar($1124);
UnicodeString[16] := WideChar($20A9);
UnicodeString[17] := WideChar($2103);
UnicodeString[18] := WideChar($3020);
UnicodeString[19] := WideChar($FFFD);
TextOutW(Chart1.Canvas.Handle, 0, 0, pWideChar(UnicodeString),
Length(UnicodeString));
--
Best Regards,
Narcís Calvet
http://support.steema.com
"Important note: If you are a TeeChart registered customer, please post your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."
"Yevgeny Granat" <yevgenyg (AT) zahav (DOT) net.il> wrote
| Quote: | Hi,
I'm looking for the following components:
- report components similar to QuickReport, but supporting Unicode.
- chart components similar to TeeChart (Steema), but supporting
Unicode.
I work with Delphi 7.
Thanks,
Yevgeny
|
|
|
| Back to top |
|
 |
Yevgeny Granat Guest
|
Posted: Sat Apr 16, 2005 7:30 pm Post subject: Re: Report and Chart components supporting Unicode |
|
|
Hi Narcís,
I can't see Unicode characters on Chart1 because it uses non-unicode font
and it has no a Font property, but I can see Unicode data on a Form after
selecting Unicode font.
Anyway, I don't see how this solution can help me use QuickReport and
TeeChart with Unicode data.
If I'll not find similar components supporting Unicode (with reasonable
price), the only way I see is creating Unicode supporting components based
on QuickReport and TeeChart components (just as a TNT components
(http://www.tntware.com/delphicontrols/unicode/) creater did). Probably in
this case I'll need to purchase professional versions of QuickReport and
TeeChart with full source code.
Thanks,
Yevgeny
"Narcís Calvet" <support (AT) steema (DOT) com> wrote
| Quote: | Hi Yevgeny,
In Delphi you can access WideChars (since they are accessible from the
Windows API) but you cannot display Unicode strings in native Delphi
controls (at this time). TeeChart is a native Delphi control, however
you can use UNICODE strings doing:
// At startup, show some interesting Unicode characters
SetLength(UnicodeString, 19);
UnicodeString[ 1] := WideChar($0152);
UnicodeString[ 2] := WideChar($03E0);
UnicodeString[ 3] := WideChar($0416);
UnicodeString[ 4] := Widechar($0539);
UnicodeString[ 5] := WideChar($0634);
UnicodeString[ 6] := WideChar($0950);
UnicodeString[ 7] := WideChar($0B10);
UnicodeString[ 8] := WideChar($0B86);
UnicodeString[ 9] := WideChar($0C0B);
UnicodeString[10] := WideChar($0D60);
UnicodeString[11] := WideChar($0E12);
UnicodeString[12] := WideChar($0EDD);
UnicodeString[13] := WideChar($0F00);
UnicodeString[14] := WideChar($10C5);
UnicodeString[15] := WideChar($1124);
UnicodeString[16] := WideChar($20A9);
UnicodeString[17] := WideChar($2103);
UnicodeString[18] := WideChar($3020);
UnicodeString[19] := WideChar($FFFD);
TextOutW(Chart1.Canvas.Handle, 0, 0, pWideChar(UnicodeString),
Length(UnicodeString));
--
Best Regards,
Narcís Calvet
http://support.steema.com
"Important note: If you are a TeeChart registered customer, please post
your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."
"Yevgeny Granat" <yevgenyg (AT) zahav (DOT) net.il> wrote in message
news:425b89c7 (AT) newsgroups (DOT) borland.com...
Hi,
I'm looking for the following components:
- report components similar to QuickReport, but supporting Unicode.
- chart components similar to TeeChart (Steema), but supporting
Unicode.
I work with Delphi 7.
Thanks,
Yevgeny
|
|
|
| Back to top |
|
 |
Narcís Calvet Guest
|
Posted: Mon Apr 18, 2005 7:46 am Post subject: Re: Report and Chart components supporting Unicode |
|
|
Hi Yevgeny,
Sorry but I don't understand what you are doing. To test what you say we use
Delphi 2005 in a Win32 VCL forms project. Using a Label with "Arial UNICODE"
font. Then we set it's caption with some Japanese characters and this
doesn't work because Delphi native controls doesn't support UNICODE.
The code I attached with my previous message is the what you should do to
get UNICODE characters with Delphi. We got that "idea" from
http://www.efg2.com/Lab/OtherProjects/Unicode.htm.
--
Best Regards,
Narcís Calvet
http://support.steema.com
"Important note: If you are a TeeChart registered customer, please post your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."
"Yevgeny Granat" <yevgenyg (AT) zahav (DOT) net.il> wrote
| Quote: | Hi Narcís,
I can't see Unicode characters on Chart1 because it uses non-unicode font
and it has no a Font property, but I can see Unicode data on a Form after
selecting Unicode font.
Anyway, I don't see how this solution can help me use QuickReport and
TeeChart with Unicode data.
If I'll not find similar components supporting Unicode (with reasonable
price), the only way I see is creating Unicode supporting components based
on QuickReport and TeeChart components (just as a TNT components
(http://www.tntware.com/delphicontrols/unicode/) creater did). Probably in
this case I'll need to purchase professional versions of QuickReport and
TeeChart with full source code.
Thanks,
Yevgeny
"Narcís Calvet" <support (AT) steema (DOT) com> wrote in message
news:425e86b1 (AT) newsgroups (DOT) borland.com...
Hi Yevgeny,
In Delphi you can access WideChars (since they are accessible from the
Windows API) but you cannot display Unicode strings in native Delphi
controls (at this time). TeeChart is a native Delphi control, however
you can use UNICODE strings doing:
// At startup, show some interesting Unicode characters
SetLength(UnicodeString, 19);
UnicodeString[ 1] := WideChar($0152);
UnicodeString[ 2] := WideChar($03E0);
UnicodeString[ 3] := WideChar($0416);
UnicodeString[ 4] := Widechar($0539);
UnicodeString[ 5] := WideChar($0634);
UnicodeString[ 6] := WideChar($0950);
UnicodeString[ 7] := WideChar($0B10);
UnicodeString[ 8] := WideChar($0B86);
UnicodeString[ 9] := WideChar($0C0B);
UnicodeString[10] := WideChar($0D60);
UnicodeString[11] := WideChar($0E12);
UnicodeString[12] := WideChar($0EDD);
UnicodeString[13] := WideChar($0F00);
UnicodeString[14] := WideChar($10C5);
UnicodeString[15] := WideChar($1124);
UnicodeString[16] := WideChar($20A9);
UnicodeString[17] := WideChar($2103);
UnicodeString[18] := WideChar($3020);
UnicodeString[19] := WideChar($FFFD);
TextOutW(Chart1.Canvas.Handle, 0, 0, pWideChar(UnicodeString),
Length(UnicodeString));
--
Best Regards,
Narcís Calvet
http://support.steema.com
"Important note: If you are a TeeChart registered customer, please post
your
support questions at Steema's Support monitored Forums for customers:
http://support.steema.com for a prompter reply."
"Yevgeny Granat" <yevgenyg (AT) zahav (DOT) net.il> wrote in message
news:425b89c7 (AT) newsgroups (DOT) borland.com...
Hi,
I'm looking for the following components:
- report components similar to QuickReport, but supporting Unicode.
- chart components similar to TeeChart (Steema), but supporting
Unicode.
I work with Delphi 7.
Thanks,
Yevgeny
|
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|