delphi2007 ,
CnWizards_0.9.7.591.exe-CnWizards_0.9.7.599.exe 均存在
unit Unit3;
interface
uses
Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
Dialogs, StdCtrls;
type
TForm3 = class(TForm)
Button1: TButton;
procedure Button1Click(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
procedure test;
end;
var
Form3: TForm3;
implementation
{$R *.dfm}
procedure TForm3.test;
begin
{检
查}
showmessage('d');
end;
procedure TForm3.Button1Click(Sender: TObject);
begin
application.ExeName
end;
end.
加了红色部分注释后,这个pas下的代码助手就部分无效了,比如蓝色部分就无法提示,但是蓝色后面输入.之后,还是能提示
如果红色换成一行,则也不存在此BUG
如果输入在红色之前,则也不存在此BUG
[
本帖最后由 npc8 于 2011-5-26 17:03 编辑 ]