저도 아직 초보입니다만...
아래와 같이 해보세요.
comboBox1.items.clear; <---
QY_MAIN.open; <-------------
if QY_MAIN.RecordCount <> 0 then begin <-----
QY_MAIN.first;
While not QY_MAIN.eof do
begin
comboBox1.items.add(QY_MAIN.fieldbyname('GL_SYTE).value); <----
QY_MAIN.next;
end;
end;
원하시는 답이되리라 생각합니다.
오늘은 질문을 많이 올리게 되네요. 초보라^^ Db에 있는 내용을 ComboBox에 옴기려 하는데 잘안되네요 . 뭐가 틀린지 봐주세요 답주는 모든분들께 감사드리고 있습니다. ComboBox1.clear; QY_MAIN.first; while not QY_MAIN.eof do begin ...
허학송
•
2005.03.26 02:50
저도 아직 초보입니다만...
아래와 같이 해보세요.
comboBox1.items.clear; <---
QY_MAIN.open; ...
저도 아직 초보입니다만...
아래와 같이 해보세요.
comboBox1.items.clear; <---
QY_MAIN.open; <-------------
if QY_MAIN.RecordCount <> 0 then begin <-----
QY_MAIN.first;
While not QY_MAIN.eof do
begin
comboBox1.items.add(QY_MAIN.fieldbyname('GL_SYTE).value); <----
QY_MAIN.next;
end;
end;
원하시는 답이되리라 생각합니다.