C crpp0602 Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-12 #1 我有一个delphi的控件,现在要将控件里面的内容改革成DLL文件,我要在VB下使用,请 哪位帮忙,写下邮箱地址,(对了,不要说理论,原理我也会,只是改的时候出现错误) 改成后有100分,不够再加
I iapollo Unregistered / Unconfirmed GUEST, unregistred user! 2002-10-12 #2 首先生成一个ActiveForm工程保存在一目录下。建立一个和应用程序主窗体一样大小的 activeForm,将你需要包装的程序的文件全部拷贝到此目录下,将其添加到ActiveForm程序 中的uses部分,并声明如(var testForm:TForm1并在ActiveForm的onCreate事件中添加: begin testForm:=TForm1.Create(self); testForm.parent:=self; testForm.Align:=alClient; testForm.Borderstyle:=bsNone; testForm.visible:=true; end; 在ActiveForm的销毁事件中加入; begin testForm.Free; end; 生成ocx后,用vb当成控件就可以用了。
首先生成一个ActiveForm工程保存在一目录下。建立一个和应用程序主窗体一样大小的 activeForm,将你需要包装的程序的文件全部拷贝到此目录下,将其添加到ActiveForm程序 中的uses部分,并声明如(var testForm:TForm1并在ActiveForm的onCreate事件中添加: begin testForm:=TForm1.Create(self); testForm.parent:=self; testForm.Align:=alClient; testForm.Borderstyle:=bsNone; testForm.visible:=true; end; 在ActiveForm的销毁事件中加入; begin testForm.Free; end; 生成ocx后,用vb当成控件就可以用了。