L
liuxintao
Unregistered / Unconfirmed
GUEST, unregistred user!
我新建了一个ActiveForm,在上面放了一个RichEdit控件,并且在ActiveForm的类型库中
添加了GetStream这个方法:
procedure TActiveForm1.GetStream(tempStream: OleVariant);
begin
RichEdit1.Lines.LoadFromStream(TMemoryStream(OleVariant));
end;
编译时出现“无效的类型转换”;我现在在调用ActiveForm1的这个方法时,想传给tempstream
一个TMemoryStream类型的参数,但是在定义GetStream这个方法时,发现好像找不到相应的参数
类型,那是不是找不到传递这种类型的参数呢?
添加了GetStream这个方法:
procedure TActiveForm1.GetStream(tempStream: OleVariant);
begin
RichEdit1.Lines.LoadFromStream(TMemoryStream(OleVariant));
end;
编译时出现“无效的类型转换”;我现在在调用ActiveForm1的这个方法时,想传给tempstream
一个TMemoryStream类型的参数,但是在定义GetStream这个方法时,发现好像找不到相应的参数
类型,那是不是找不到传递这种类型的参数呢?