Delphi console writeln readln I/O CGI Pipe

Source: Internet
Author: User

Add {$ apptype console}

In this way, Windows window programs can have dos I/O capabilities, accept writeln readln, and transmit data through pipelines Like CGI

Program console; {$ apptype console} uses forms, fmconsole in 'fmconsole. PAS '{form1}; {$ R *. res} begin writeln ('Hello World'); // output, equivalent to console in C. writeln ("XXX") application. initialize; application. createform (tform1, form1); application. run; end.
unit fmconsole;interfaceuses  Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,  Dialogs, StdCtrls;type  TForm1 = class(TForm)    btn1: TButton;    procedure FormCreate(Sender: TObject);    procedure btn1Click(Sender: TObject);  private    { Private declarations }  public    { Public declarations }  end;var  Form1: TForm1;implementation{$R *.dfm}procedure TForm1.FormCreate(Sender: TObject);var  s:string;begin  Readln(s);  ShowMessage(s);end;procedure TForm1.btn1Click(Sender: TObject);begin  Writeln(‘hello!‘);end;end.

Delphi console writeln readln I/O CGI Pipe

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.