Q&A

  • DB 내용을 ComboBox에 넣기
오늘은 질문을 많이 올리게 되네요. 초보라^^
Db에 있는 내용을 ComboBox에 옴기려 하는데 잘안되네요 .
뭐가 틀린지 봐주세요
답주는 모든분들께 감사드리고 있습니다.

  ComboBox1.clear;
  QY_MAIN.first;
  while not QY_MAIN.eof do
  begin
    combobox1.items.add(QY_MAIN.fieldbyname('GL_SYTE').asstring);
    QY_MAIN.next;
  end;
2  COMMENTS
  • Profile
    허학송 2005.03.26 02:50


    저도 아직 초보입니다만...
    아래와 같이 해보세요.
    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;
    원하시는 답이되리라 생각합니다.
  • Profile
    델초보 2005.03.26 03:52


      - 답변 감사합니다 즐거운 하루 되세요-