Q&A

  • DbEdit에서 콤마찍기.
DbEdit에 있는 숫자형의 data에 천단위씩 콤마를 찍으려합니다.
초짜라 그런지 찾아봐도 답이 보이지 않네요.
많은 답변부탁드립니다.
2  COMMENTS
  • Profile
    홍성락 2002.08.29 05:28
    hsr//////////////////////////////////////////////////////
    아래처럼해보세요
    procedure TForm1.DBEdit1Change(Sender: TObject);
    begin
        TNumericField(DBEdit1.Field).DisplayFormat := '#,##0';
        TNumericField(DBEdit1.Field).EditFormat := '#0';
    end;
  • Profile
    김호규 2002.09.02 06:24
    감사합니다.