L
lover402
Unregistered / Unconfirmed
GUEST, unregistred user!
我想实现在ListView1双击选中某一项,打开新IE窗口
语句如下:
var
url:string;
app:variant;
begin
url:=listview1.items.item[listview1.selected.index].SubItems.string[0];
app:=CreateOLEObject('InternetExplorer.Application');
app.Navigate(url);
App.Visiable:=True;
end;
运行触发该事件,会产生
“Method 'Visiable' not support by Automation Object'的错误.
而同样的一段代码用一个Button来实现打开新的IE窗口,就不会有错误
app:=CreateOLEObject('InternetExplorer.Application');
app.Navigate('http://www.xxxxx');
App.Visiable:=True;
不知如何解决?
语句如下:
var
url:string;
app:variant;
begin
url:=listview1.items.item[listview1.selected.index].SubItems.string[0];
app:=CreateOLEObject('InternetExplorer.Application');
app.Navigate(url);
App.Visiable:=True;
end;
运行触发该事件,会产生
“Method 'Visiable' not support by Automation Object'的错误.
而同样的一段代码用一个Button来实现打开新的IE窗口,就不会有错误
app:=CreateOLEObject('InternetExplorer.Application');
app.Navigate('http://www.xxxxx');
App.Visiable:=True;
不知如何解决?