Hi,
ich hab das selbe Problem, sobald ich etwas mehr durch meine Datensätze scrolle.
In der Community steht zwar ne kurze Hilfe aber nicht, wo die angegebenen Zeilen eingefügt werden müssen.
Ich hab's mal hier
Delphi-Quellcode:
program Reparaturen;
uses
Forms,
main in 'main.pas' {Form1},
data in 'data.pas' {DataModule1: TDataModule},
codes in 'codes.pas' {Form2},
setting in 'setting.pas' {Form3},
search in 'search.pas' {Form4},
info in 'info.pas' {Form5},
stat in 'stat.pas' {Form6},
report in 'report.pas' {Form7},
shelltree in 'shelltree.pas' {Form8},
whatsnew in 'whatsnew.pas' {frmnew};
{$R *.res}
begin
Session.PrivateDir := ExtractFilePath(ParamStr(0)) + 'PRIV';
Session.NetFileDir := ExtractFilePath(ParamStr(0)) + 'NET';
Application.Initialize;
Application.CreateForm(TForm1, Form1);
Application.CreateForm(TDataModule1, DataModule1);
Application.CreateForm(TForm2, Form2);
Application.CreateForm(TForm3, Form3);
Application.CreateForm(TForm4, Form4);
Application.CreateForm(TForm5, Form5);
Application.CreateForm(TForm6, Form6);
Application.CreateForm(TForm7, Form7);
Application.CreateForm(TForm8, Form8);
Application.CreateForm(Tfrmnew, frmnew);
Application.Run;
end.
versucht aber da kennt er das Session nicht.
Kann mir da irgendwer nen Tip geben?