fpc/tests/webtbs/tw4098.pp
peter e9992c9e17 * disable for 2.1+y
git-svn-id: trunk@3959 -
2006-06-26 06:38:51 +00:00

41 lines
1.0 KiB
ObjectPascal

{ %maxversion=2.0.99 }
{ %opt=-gh }
{ Source provided for Free Pascal Bug Report 4098 }
{ Submitted by "Vincent Snijders" on 2005-06-19 }
{ e-mail: vincent.snijders@gmail.com }
Program project1;
{ Program to demonstrate the SetResourceStringValue function. }
{$Mode Delphi}
uses
sysutils;
ResourceString
First = 'First string';
Second = 'Second String';
Var I,J : Longint;
S : AnsiString;
begin
{ Print current values of all resourcestrings }
For I:=0 to ResourceStringTableCount-1 do
For J:=0 to ResourceStringCount(i)-1 do
begin
Writeln ('Translate => ',GetResourceStringDefaultValue(I,J));
Write ('->');
s:=inttostr(j)+'. Zeichenkette';
SetResourceStringValue(I,J,S);
end;
Writeln ('Translated strings : ');
For I:=0 to ResourceStringTableCount-1 do
For J:=0 to ResourceStringCount(i)-1 do
begin
Writeln (GetResourceStringDefaultValue(I,J));
Writeln ('Translates to : ');
Writeln (GetResourceStringCurrentValue(I,J));
end;
end.