I
isabel
Unregistered / Unconfirmed
GUEST, unregistred user!
请问在用delphi编写activeform时,如何
从internet explore向activeform传递参数?
我用delphi编testactiveform.ocx作为一个
服务器程序,
其中在itestactiveform=interface(IDispatch)
中定义一个属性value
delphi自动在TLB文件中生成
property value: WideString read Get_value write Set_value;
在testactiveform.pas中生成
function TtestActiveFormX.Get_value: WideString;
begin
end;
procedure TtestActiveFormX.Set_value(const Value: WideString);
begin
end;
我不知道用这两个过程或函数如何读入客户程序传递的参数。
同时也不知道在HTML程序中如何向Itestactiveform接口传递参数。
因为我无法在HTML程序里定义一个Itestactiveform,并给他的属性
付值。
请大家指点一二,不胜感激。
谢谢!
从internet explore向activeform传递参数?
我用delphi编testactiveform.ocx作为一个
服务器程序,
其中在itestactiveform=interface(IDispatch)
中定义一个属性value
delphi自动在TLB文件中生成
property value: WideString read Get_value write Set_value;
在testactiveform.pas中生成
function TtestActiveFormX.Get_value: WideString;
begin
end;
procedure TtestActiveFormX.Set_value(const Value: WideString);
begin
end;
我不知道用这两个过程或函数如何读入客户程序传递的参数。
同时也不知道在HTML程序中如何向Itestactiveform接口传递参数。
因为我无法在HTML程序里定义一个Itestactiveform,并给他的属性
付值。
请大家指点一二,不胜感激。
谢谢!