Q&A

  • 엑셀자료로 저장시 칼럼별로 색깔 넣기 하는방법 좀 알려주세요?
쿼리한 내용을 엑셀자료로 만들때 칼람의 칸과, 글자색을 바꾸는 방법 좀 알려주세요?
1  COMMENTS
  • Profile
    김해우 2002.11.27 03:10

    //폰트와 사이즈지정하는 법

       with  ExcelWorkSheet1 do
       begin
          Range[Cells.items[1,1],Cells.Item[2,1].Font.Bold := True;
          Range[Cells.items[1,1],Cells.Item[2,1].Font.Size := 14;
          Cells.Item[1,1] := '델파이와 엑셀을 이용한 프로그램';
        end;

    //AutoFormat이용

    var
       MyRange : Range;

    with   ExcelWorksheet do
    begin
        MyRange := Range[Cells.item[4,1],Cells.Item  [Table1.RecordCount,Table1.FieldCount]];
    MyRange.Autoformat(xlRangeAutoFormatColor1,null,null,null,null,null,null);
    end;

    이렇게 사용해보세요..