窗体formcreate无效?why? (20分)

  • 主题发起人 主题发起人 ilovellq
  • 开始时间 开始时间
I

ilovellq

Unregistered / Unconfirmed
GUEST, unregistred user!
formcreate无效?why?代码如下<br>procedure TForm1.FormCreate(Sender: TObject);<br>begin<br>&nbsp;Self.BorderStyle := bsDialog;<br>end; &nbsp;
 
怪了,我这儿无效呀,我什么都没有加,就只有一个form
 
换成messagebox也不得行呀~晕了<br>procedure TForm1.FormCreate(Sender: TObject);<br>begin<br>&nbsp;messagebox(handle,'dd','ccccccccc',mb_iconquestion+mb_ok);<br>end;
 
救命呀,哪位大侠解释下why
 
管用的,你可能其他地方错了,还有什么代码<br>&nbsp; 发来看看
 
Object Inspector中看看OnCreate是不是确实=FormCreate
 
就是这样,什么控件都没有加,还是不行<br>unit Unit1;<br>interface<br>uses<br>&nbsp; Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs;<br>type<br>&nbsp; TForm1 = class(TForm)<br>&nbsp; procedure formcreate(Sender: TObject);<br>&nbsp; private<br>&nbsp; &nbsp; { Private declarations }<br>&nbsp; public<br>&nbsp; &nbsp;{ Public declarations }<br>&nbsp; end;<br>var<br>&nbsp; Form1: TForm1;<br><br>implementation<br>{$R *.DFM}<br>&nbsp;<br>procedure tform1.formcreate(Sender: TObject);<br>begin<br>form1.Caption:='ok';<br>end;<br><br>end.<br>
 
89是Delphi出问题了
 
先查毒,再重装DELPHI
 
舉手讚成,先刪delphi再裝,不行先刪系統,再裝系統,再裝delphi
 
把它写到onshow里试试!<br>应该行了。
 
多人接受答案了。
 
后退
顶部