Q&A

  • Char Type을 Print하려면 어떻게 하나요???

VB에서
    'Printer.Print Char(1) & Char(22) '
라고 하면 출력시 해당 Char Type이 출력이 되는데

델파이에서는 어떻게 처리하는지 찾아보아도 잘 찾지를 못하겠네요

부탁드립니다....
1  COMMENTS
  • Profile
    강형철 2003.10.18 11:27
    implementation

    {$R *.dfm}

    uses
        Printers;   // 이거 꼭 포함하세요

    procedure TForm1.Button1Click(Sender: TObject);
    var
        MyPrn : TextFile;
    begin
        AssignPrn( MyPrn );
        Rewrite( MyPrn );
        Write( MyPrn, #1#22);                        // 문자값 출력 1번 방법
        write( MyPrn, Char(1) + Char(22) );    // 값을 문자형으로 변형 2번 방법
        System.CloseFile( MyPrn );
    end;

    1번방법과 2번방법은 서로 같은 결과를 가져옵니다~

    그럼 즐프하세요^^