全國最多中醫師線上諮詢網站-台灣中醫網
發文 回覆 瀏覽次數:811
推到 Plurk!
推到 Facebook!

error , pls help , from malaysia

尚未結案
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#1 引用回覆 回覆 發表時間:2004-07-31 23:55:05 IP:203.106.xxx.xxx 未訂閱
Hello , i don't how to type in mandarin . I have one question. I have one application .The compilation of program works very fine . Whenever I close my program either by clicking close button ( close()) or clicking on the X on the upper right, the following error message will appear Project raised exception class eaccess violation with message " access violation of address 004202f11 in module .exe . write of address 00 00 0000 . process stopped. use step or run to continue Please help . U may send email to me jycm2001@yahoo.com johnny yap automation software eng
richtop
資深會員


發表:122
回覆:646
積分:468
註冊:2003-06-10

發送簡訊給我
#2 引用回覆 回覆 發表時間:2004-08-01 00:54:50 IP:211.76.xxx.xxx 未訂閱
Hello johnnyyap, It could be the problem that you access the memory address out of range. Try to check your codes that access array or dynamically allocated memory carefully. Sincerely, RichTop. RichTop 敬上 =====***** 把數學當工具,可以解決問題;將數學變能力,能夠發現並解決問題! =====#####
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#3 引用回覆 回覆 發表時間:2004-08-01 02:45:03 IP:210.186.xxx.xxx 未訂閱
hihi , do u mind to tell me more about this ?? thank you if u have icq or yahoo messenger , add me icq 95111907 yahoo jycm2001http://www.hugemouth.net/forum/viewforum.php?f=5&sid=e3f531838bc3675806c80158e75fd4d7
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#4 引用回覆 回覆 發表時間:2004-08-01 03:01:28 IP:210.186.xxx.xxx 未訂閱
help .......... can anyone explain about this , urgent .......... beside this error message appeared , another message related to ntdll.dll appeared . the application is running in win2000 pro
pwipwi
版主


發表:68
回覆:629
積分:349
註冊:2004-04-08

發送簡訊給我
#5 引用回覆 回覆 發表時間:2004-08-01 08:46:20 IP:211.76.xxx.xxx 未訂閱
Hi johnnyyap: Please post your code, and we can help you figure out where's the bug. Besides, what is the detail message about the ntdll.dll error?
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#6 引用回覆 回覆 發表時間:2004-08-01 23:34:03 IP:210.186.xxx.xxx 未訂閱
Hii , thank you for your reply. I can't send you the coding , because the coding consists of alot of files and forms. I would like to ask what are the possible causes and reasons for the ntdll.dll and eaccess violation errors. This application is running on a semiconductor machine. It controls motors, mechanical parts , sensors. Previouly these errors did not occur. I'm suspecting i have done some code modification which might caused the errors, but i don't know how to debug the errors. Thank you regards johnnyyap
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#7 引用回覆 回覆 發表時間:2004-08-01 23:35:22 IP:210.186.xxx.xxx 未訂閱
Hii , thank you for your reply. I can't send you the coding , because the coding consists of alot of files and forms. I would like to ask what are the possible causes and reasons for the ntdll.dll and eaccess violation errors. This application is running on a semiconductor machine. It controls motors, mechanical parts , sensors. Previouly these errors did not occur. I'm suspecting i have done some code modification which might caused the errors, but i don't know how to debug the errors. Thank you for your reply regards johnnyyap
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#8 引用回覆 回覆 發表時間:2004-08-01 23:38:00 IP:210.186.xxx.xxx 未訂閱
Hii , thank you for your reply. I can't send you the coding , because the coding consists of alot of files and forms. I would like to ask what are the possible causes and reasons for the ntdll.dll and eaccess violation errors. This application is running on a semiconductor machine. It controls motors, mechanical parts , sensors. Previouly these errors did not occur. I'm suspecting i have done some code modification which might caused the errors, but i don't know how to debug the errors. Thank you for your reply regards johnnyyap
johnnyyap
一般會員


發表:1
回覆:6
積分:1
註冊:2004-07-31

發送簡訊給我
#9 引用回覆 回覆 發表時間:2004-08-01 23:41:10 IP:210.186.xxx.xxx 未訂閱
Hii , thank you for your reply. I can't send you the coding , because the coding consists of alot of files and forms. I would like to ask what are the possible causes and reasons for the ntdll.dll and eaccess violation errors. This application is running on a semiconductor machine. It controls motors, mechanical parts , sensors. Previouly these errors did not occur. I'm suspecting i have done some code modification which might caused the errors, but i don't know how to debug the errors. Thank you for your reply regards johnnyyap
pwipwi
版主


發表:68
回覆:629
積分:349
註冊:2004-04-08

發送簡訊給我
#10 引用回覆 回覆 發表時間:2004-08-03 10:43:22 IP:211.76.xxx.xxx 未訂閱
Hi Johnnyyap: Seems you can't post the code, I will give you suggestion from your error message. Hope that it may help. The first error meesage told you that the address is at 004204f11. The location is in your main program file, (so the ntdll.dll is another issue) and "write of address 0" may be result from using a pointer after you have deleted it (FreeAndNil). Therefore, you should check all your pointers. Invalid access of array or dynamically allocated class is less possible in this case, (but it's still possible!) because the it will mostly write to a none-zero address. Besides, what is the error message about the ntdll.dll ? and Why don't you set the compile option to "debug"? The IDE will instantly show you the position that generates the error message. Regards Frank
系統時間:2024-06-28 5:25:33
聯絡我們 | Delphi K.Top討論版
本站聲明
1. 本論壇為無營利行為之開放平台,所有文章都是由網友自行張貼,如牽涉到法律糾紛一切與本站無關。
2. 假如網友發表之內容涉及侵權,而損及您的利益,請立即通知版主刪除。
3. 請勿批評中華民國元首及政府或批評各政黨,是藍是綠本站無權干涉,但這裡不是政治性論壇!