hab jetzt auf verschiedene weisen rumprobiert aber ich kriege immer ne fehlermeldung...beim lesen aus der ini:
Delphi-Quellcode:
procedure TForm2.btnreadClick(Sender: TObject);
const
IniSelRC = 'Sel1';
IniRowCount = 'RowCount';
IniColCount = 'ColCount';
IniFixedRows = 'FixRows';
IniFixedCols = 'FixCols';
var
x, y: Integer;
IniFile: String;
Ini: TIniFile;
begin
Ini := TIniFile.Create(IniFile);
try
RowCount := Ini.ReadInteger(IniSelRC, IniRowCount, RowCount);
ColCount := Ini.ReadInteger(IniSelRC, IniColCount, ColCount);
FixedRows := Ini.ReadInteger(IniSelRC, IniFixedRows, FixedRows);
FixedCols := Ini.ReadInteger(IniSelRC, IniFixedCols, FixedCols);
for x := 0 to ColCount do
Cols[x].CommaText := Ini.ReadString(IniSelRC, IntToStr(x), '');
finally
Ini.Free;
end;
end;
end;
[DCC Fehler] source.pas(54): E2003 Undeklarierter Bezeichner: 'RowCount'
kein plan warum er den nicht erkennt :S