DBGrid를 Text화일로 저장하는 것이 게시판에 있더군요
근뎅 저는 여기서 한가지 더 하고 싶은데
밑에 Field를 선택하여 저장 할수 있는 방법은 없는지
알고 싶습니다. 고수님들 부탁드립니다
이걸로 이틀동안 삽질하구 있습니다. ㅜ.ㅜ
var
Text : TextFile;
dum:String;
begin
AssignFile(Text, 'c:data.txt');
Rewrite(Text);
Query2.first;
while not Query2.eof do
begin
for j := 1 to Query2.FieldCount do
begin
dum := dum + Query2.Fields[j-1].AsString + ' ';
end;
Writeln(Text, dum);
Query2.Next;
end;
Close(Text);
end;
설마 DBGrid에서 필드를 멀티실릭트 하셔서 하실껀 아니겠죠?