当前位置:网站首页>Raised exception class eaccexviolation with 'access violation at address 45efd5 in module error
Raised exception class eaccexviolation with 'access violation at address 45efd5 in module error
2022-04-23 14:35:00 【lyhoo163】
Programming debugging error :
Project StartOH.exe raised exception class EAccexxViolation with 'Access violation at address 45EFD5 in module 'StartOh.exe. Read od address 00000170'. Process stopped. Uses Step or Run to continue.
The program calls A.EXE Documents before , Need to call before , Exit its thread , Enter again .
1、function FindTask(ExeFileName: string): Boolean; // Find the running process
2、function KillTask(ExeFileName: string): Integer; // Close the running process
Original call :
if FindTask('OldHome.exe') then KillTask('OldHome.exe');
reason : Two functions respectively Thread operation , Same code , An interference error occurred , Modify call :
if FindTask('OldHome.exe') then
begin
sleep(500);
KillTask('OldHome.exe');
end;
Reason two functions are executed simultaneously , conflict . Do a delay to resolve the conflict .
版权声明
本文为[lyhoo163]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/04/202204231433442189.html
边栏推荐
- API Gateway/API 网关(三) - Kong的使用 - 限流rate limiting(redis)
- async void 导致程序崩溃
- c语言在结构体传参时参数压栈问题
- LLVM - 生成局部变量
- 1分钟看懂执行流程,永久掌握for循环(附for循环案例)
- JumpServer
- 循环队列的基本操作(实验)
- 抑郁症治疗的进展
- PWM speed regulation control system of DC motor based on 51 single chip microcomputer (with complete set of data such as Proteus simulation + C program)
- Solve the problem of SSH configuration file optimization and slow connection
猜你喜欢
【STC8G2K64S4】比较器介绍以及比较器掉电检测示例程序
setcontext getcontext makecontext swapcontext
AT89C51 MCU digital voltmeter development, measuring range 0 ~ 5V, proteus simulation, schematic diagram, PCB and C program, etc
1 minute to understand the execution process and permanently master the for cycle (with for cycle cases)
TLS/SSL 协议详解 (28) TLS 1.0、TLS 1.1、TLS 1.2之间的区别
UML项目实例——抖音的UML图描述
Notes on Visio drawing topology
机器学习之逻辑回归(Logistic Regression)原理讲解和实例应用,果断收藏
基于单片机的DS18B20的数字温度监控报警系统设计【LCD1602显示+Proteus仿真+C程序+论文+按键设置等】
金九银十,入职字节跳动那一天,我哭了(蘑菇街被裁,奋战7个月拿下offer)
随机推荐
阿里研发三面,面试官一套组合拳让我当场懵逼
The initial C language framework is suitable for review and preliminary understanding
全连接层的作用是什么?
Outsourcing for four years, abandoned
API Gateway/API 网关(三) - Kong的使用 - 限流rate limiting(redis)
QT interface optimization: QT border removal and form rounding
Proteus simulation design of DC adjustable regulated power supply (with simulation + paper and other data)
Detailed explanation of SAR command
【STC8G2K64S4】比较器介绍以及比较器掉电检测示例程序
8.4 循环神经网络从零实现
8.2 文本预处理
Proteus simulation design of four storey and eight storey elevator control system, 51 single chip microcomputer, with simulation and keil c code
C语言知识点精细详解——初识C语言【1】
TLS/SSL 协议详解 (28) TLS 1.0、TLS 1.1、TLS 1.2之间的区别
Processing MKDIR: unable to create directory 'AAA': read only file system
Mq-2 and DS18B20 fire temperature smoke alarm system design, 51 single chip microcomputer, with simulation, C code, schematic diagram, PCB, etc
ASEMI三相整流桥和单相整流桥的详细对比
DVWA之暴力破解(Brute Force)Low-->high
flannel 原理 之 TUN模式
C语言p2选择分支语句详解