三個DBGRID的比較 |
尚未結案
|
iva0629
一般會員 發表:28 回覆:14 積分:8 註冊:2003-08-13 發送簡訊給我 |
|
iva0629
一般會員 發表:28 回覆:14 積分:8 註冊:2003-08-13 發送簡訊給我 |
感謝kakene大大的指導. 但還是有一點小問題..
就是只能做一次的查詢及查詢資料的第一筆
請各們大大們幫我看一下..謝謝
以下是我的程式碼
procedure TForm_a.Button2Click(Sender: TObject);
begin
While not table7.eof do begin
while not table6.eof do begin
while not table5.eof do begin
if DBGrid6.Fields[1].text = DBGrid5.Fields[0].text then
if DBGrid6.Fields[2].text = DBGrid5.Fields[1].text then
Showmessage('有衝堂!');
table5.Next;
end;
table6.Next;
end;
table7.Next;
end; end;
|
kakene
一般會員 發表:22 回覆:52 積分:19 註冊:2003-01-07 發送簡訊給我 |
procedure TForm_a.Button2Click(Sender: TObject); begin While not table7.eof do //Table7 從第一筆跑到最後一筆 begin while not table6.eof do //Table6 從第一筆跑到最後一筆 begin while not table5.eof do //Table5 從第一筆跑到最後一筆 begin if DBGrid6.Fields[1].text = DBGrid5.Fields[0].text then if DBGrid6.Fields[2].text = DBGrid5.Fields[1].text then 可以改成 if (DBGrid6.Fields[1].text = DBGrid5.Fields[0].text) and (DBGrid6.Fields[2].text = DBGrid5.Fields[1].text) then Showmessage('有衝堂!'); table5.Next; end; table6.Next; end; table7.Next; end; end;T6 跟 T7 是有關聯的話,T7 移到下一筆,T6 應該會更新內容再作比對, T6 跟 T5每一筆都會做到比對才對,我也想不會其他的了,其他大大可以幫忙指點一下... 發表人 - kakene 於 2003/12/03 13:44:49 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |