在新建工程窗體中新增button1/memo1
unit unit1;
inte***ce
uses
windows, messages, sysutils, variants, classes, graphics, controls, forms,
dialogs, stdctrls, extctrls;
type
tform1 = class(tform)
button1: tbutton;
timer1: ttimer;
memo1: tmemo;
procedure button1click(sender: tobject);
varform1: tform1;
implementation
//senddebug(buf);
while pos(#10, buf) > 0 do
begin
amemo.lines.add(copy(buf, 1, pos(#10, buf) - 1));
delete(buf, 1, pos(#10, buf));
end;
end;
finally
freemem(buffer);
closehandle(processinfo.hprocess);
closehandle(processinfo.hthread);
closehandle(readpipe);
end;
end;
end;
procedure tform1.button1click(sender: tobject);
begin
rundosinmemo('route print',memo1);
end;
end.
C 控制台輸出與讀取
輸出字串 console.writeline 哈嘍 輸出顯示若干個項 console.writeline 年.str,year 在c 控制台程式中提供了兩種方法讓使用者輸入所需資料,它們是有console類提供的靜態方法。static int read 要讀取單個字元,則使用read 方法,它等待使...
控制台輸出控制
by jingzhongrong 通過win32api提供的函式,可以對控制台程式的輸出進行控制,例如字型顏色 標題文字,以及各種屬性等等。主要使用到的函式以及宣告如下 handle getstdhandle dword nstdhandle 此函式用於獲取控制台輸出 輸入控制代碼。得到控制代碼之後...
C 控制台讀取和輸出函式
c中puts 函式 用來向標準輸出裝置 螢幕 寫字串並換行,其呼叫方式為,puts s 其中s為字串字元 字串陣列名或字串指標 功 能 送一字串到流stdout中 用 法 int puts char string 程式例 include int main void 說明 puts 和 printf ...