我在应用程序中利用如下语句,可以弹出一个窗口.
ShellExecute(handle, 'open', 'iexplore.exe',pchar(url),nil, SW_MAXIMIZE);
但现在我想实现这个新开的窗口是没有工具条和菜单的,如何实现?iexplore.exe
有很多开关参数,不知通过开关能否实现。找了很久找不到相关的帮助。

解决方案 »

  1.   

    自己用webbrowser来控制
    ie好像不行
    如果要修改ie,其他的打开窗口同样会变
      

  2.   

    Private Sub Command2_Click()
        Dim ie
        
        Set ie = CreateObject("InternetExplorer.Application")
        ie.Visible = True
        ie.toolbar = False
        ie.StatusBar = False
        ie.Navigate "http://www.applevb.com"
        'ie.quit
        'Set ie = Nothing
    End Sub
      

  3.   

    Delphi的代码:procedure TForm1.Button1Click(Sender: TObject);
    var
      ie:OLEVariant;
    begin
      ie := createoleobject('InternetExplorer.Application');
      ie.Visible := True;
      ie.toolbar := False;
      ie.StatusBar := False;
      ie.Navigate ('http://www.applevb.com');
    end;