使用带有TStringGrid的unicode

时间:2013-12-04 15:42:17

标签: delphi unicode delphi-xe

我想用混合的希腊语和西里尔符号定义一个字符串常量。像这样的东西

const
  some_const = 'cyrillic symbols' + $03C9;

其中$03C9是来自there的小写字母 omega
也许,我应该在数据模块中将some_const作为变量并初始化它。

//datamodule
var
  some_const = 'cyrillic symbols' + some_function_to_make_string($03C9);

那么,some_function_to_make_string(code : Word)的正确函数是什么?

我可以将此some_const TStringGrid.Cells [aCol,aRow] 一起使用吗?

0 个答案:

没有答案