如何建立一個exe時,具有返回值? |
答題得分者是:Stallion
|
MatthewSong
一般會員 發表:17 回覆:17 積分:6 註冊:2007-09-24 發送簡訊給我 |
|
Stallion
版主 發表:52 回覆:1600 積分:1995 註冊:2004-09-15 發送簡訊給我 |
Please press F1 to check out Halt procedure, there is an optional parameter that can pass an exit code to OS.
===================引 用 MatthewSong 文 章=================== 我意思是我想建立一個exe的file,然後其他程序調用後,具有返回值,如,boolean, integer, string等 |
MatthewSong
一般會員 發表:17 回覆:17 積分:6 註冊:2007-09-24 發送簡訊給我 |
exitcode 是一個exe 結束後的返回值,但如果exe結束異常會返回不同的exitcode
但如果我接收的一邊,誤以為這code 是完成,我怕會有問題,還有其他方法嗎,謝謝你的回覆 ===================引 用 Stallion 文 章=================== Please press F1 to check out Halt procedure, there is an optional parameter that can pass an exit code to OS. ===================引 用 MatthewSong 文 章=================== 我意思是我想建立一個exe的file,然後其他程序調用後,具有返回值,如,boolean, integer, string等 |
Stallion
版主 發表:52 回覆:1600 積分:1995 註冊:2004-09-15 發送簡訊給我 |
1. you can specify different exitcode in Halt procedure.
2. just google to check out how to use ERRORLEVEL in a batch file for detecting specified error(exit code). ===================引 用 MatthewSong 文 章=================== exitcode 是一個exe 結束後的返回值,但如果exe結束異常會返回不同的exitcode 但如果我接收的一邊,誤以為這code 是完成,我怕會有問題,還有其他方法嗎,謝謝你的回覆 ===================引 用 Stallion 文 章=================== Please press F1 to check out Halt procedure, there is an optional parameter that can pass an exit code to OS. ===================引 用 MatthewSong 文 章=================== 我意思是我想建立一個exe的file,然後其他程序調用後,具有返回值,如,boolean, integer, string等 |
syntax
尊榮會員 發表:26 回覆:1139 積分:1258 註冊:2002-04-23 發送簡訊給我 |
一定要使用 exe ?
DLL 不行? ===================引 用 MatthewSong 文 章=================== 我意思是我想建立一個exe的file,然後其他程序調用後,具有返回值,如,boolean, integer, string等 |
pceyes
尊榮會員 發表:70 回覆:657 積分:1140 註冊:2003-03-13 發送簡訊給我 |
|
暗黑破壞神
版主 發表:9 回覆:2301 積分:1627 註冊:2004-10-04 發送簡訊給我 |
|
MatthewSong
一般會員 發表:17 回覆:17 積分:6 註冊:2007-09-24 發送簡訊給我 |
|
pceyes
尊榮會員 發表:70 回覆:657 積分:1140 註冊:2003-03-13 發送簡訊給我 |
from http://www.delphibasics.co.uk/RTL.asp?Name=Halt&ExpandCode1=Yes
[code delphi] unit Unit1; interface uses // The System unit does not need to be defined Forms, Dialogs; type TForm1 = class(TForm) procedure FormCreate(Sender: TObject); end; var Form1: TForm1; implementation {$R *.dfm} // Include form definitions procedure TForm1.FormCreate(Sender: TObject); var i : Integer; begin // Set up an error address so that halt shows a termination dialog ErrorAddr := Addr(i); // Stop the program with exit code 4 Halt(4); // The following will not be executed ShowMessage('We do not get this far'); end; [/code] dos errorlevel http://home.att.net/~gobruen/progs/dos_batch/dos_batch.html
------
努力會更接近成功
編輯記錄
pceyes 重新編輯於 2008-01-22 06:45:32, 註解 無‧
|
P.D.
版主 發表:603 回覆:4038 積分:3874 註冊:2006-10-31 發送簡訊給我 |
|
mypigbaby
高階會員 發表:11 回覆:168 積分:155 註冊:2006-07-20 發送簡訊給我 |
本站聲明 |
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。 2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。 3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇! |