你需要在单元的 interface 部分或 implementation 部分的 uses 子句中加上对 StrUtils
单元的引用才能使用 RightStr 函数,比如:
unit unit1;
interface
uses Windows,...,StrUtils;//<-- 这里
type
...
var
...
implementation
uses StrUtils;//或这里
...
end.
RightStr 是 Delphi6 新增的函数,在 Delphi5 中可以使用上面 小人物 的办法来实现.