回复: 瑞星卡卡安全助手,在调试模式运行delphi7程序时,速度奇慢,xp3环境。估计是BUG
卡卡版本:6.2.0.25,病毒库:2010.3.5
问题:调试状态,运行后,执行过程缓慢;拖动窗体,CPU占用100%,过几秒才好。
点击程序的按钮,显示对话框很慢,显示的内容要过几秒才能出现,CPU占用100%。
偶尔,长时间不反应,调不出任务管理器,只好重启。
代码非常简单
unit Unit1;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm1 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.Button1Click(Sender: TObject);
begin
ShowMessage('sdfsdfsdfsd');
end;
end.