------------------------------------------------------------------
CheckListBox1에서 클릭 한 값을 가지고
CheckListBox1와 파일에서 해당데이터를 삭제 후 저장하는 데요...
CheckListBox1에서는 되는데 파일에서는 에러가 납니다. 위와같은 에러가요...
파일에서 한줄 삭제 후 다시 저장. 그런데 다시 저장 부분에서 계속 에러가 납니다
Cannot Create file 'memlist.txt' ....라는 에러가..계속...
어디가 잘못된걸까요?
고수님들 한마디만 도와줍쇼...
procedure TMembersForm.Button3Click(Sender: TObject);
var
tmp : integer;
TempList: TStrings;
begin
tmp := CheckListBox1.itemindex ;
CheckListBox1.Items.Delete(tmp);
CheckListBox1.Update ;
TempList := TStringList.Create;
TempList.LoadFromFile(ExtractFilePath(Application.ExeName) +'memlist.txt');
TempList.Delete(tmp);
TempListFile.SaveToFile(ExtractFilePath(Application.ExeName) +'memlist.txt');
TempList.Free;
end;
------------------------------------------------------------------