查查resourcestring关键字的帮助吧

解决方案 »

  1.   

    定义(象串常量一样):
    resourcestring
      RS_About = '这是我的程序';使用:
      AboutDlg.Description := RS_About;
      

  2.   

    {$R chinese.res} //加在implementation后
    var buff:array[0..255] of char;//长度根据字符串长度来定
    begin
      loadString(hInstance,1,buff,SizeOf(buff)); //1是资源文件内字符串对应的id号
      Button1.caption := buff;      //确定
    end; 
      

  3.   

    loadString 是Windows单元内置的函数http://crob.net/delphi/source/mutilan.zip 
      

  4.   

    资源文件要这样写STRINGTABLE
    BEGIN
    1,"确定"
    2,"取消"
    END