D databasetao Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-15 #2 http://www.delphibbs.com/delphibbs/dispq.asp?lid=1777522
L lipeng2002 Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-19 #3 首先生成一个ActiveForm工程保存在一目录下。建立一个和应用程序主窗体一样大小的 activeForm,将你需要包装的程序的文件全部拷贝到此目录下,将其添加到ActiveForm程序 中的uses部分,并声明如(var testForm:TForm1并在ActiveForm的onCreate事件中添加: begin testForm:=TForm1.Create(self); testForm.parent:=self; testForm.Align:=clClient; testForm.Borderstyle:=bsNone; testForm.visible:=true; end; 在ActiveForm的销毁事件中加入; begin testForm.Free; end; 编译后设置Project/Web Deploy Oprtions设置Web 服务器的根目录 然后Project/Web Deploy 发布 注:几乎任何应用程序都可用此方法包装成ActiveForm发布!该ActiveFormde ocx文件将自动产生
首先生成一个ActiveForm工程保存在一目录下。建立一个和应用程序主窗体一样大小的 activeForm,将你需要包装的程序的文件全部拷贝到此目录下,将其添加到ActiveForm程序 中的uses部分,并声明如(var testForm:TForm1并在ActiveForm的onCreate事件中添加: begin testForm:=TForm1.Create(self); testForm.parent:=self; testForm.Align:=clClient; testForm.Borderstyle:=bsNone; testForm.visible:=true; end; 在ActiveForm的销毁事件中加入; begin testForm.Free; end; 编译后设置Project/Web Deploy Oprtions设置Web 服务器的根目录 然后Project/Web Deploy 发布 注:几乎任何应用程序都可用此方法包装成ActiveForm发布!该ActiveFormde ocx文件将自动产生
N number5 Unregistered / Unconfirmed GUEST, unregistred user! 2003-05-21 #5 在Project菜单下面会有Type Libary 选项,进去就可以编辑COM接口 Delphi会帮你自动生成property和procedure