并且在自己的程序中我想在EIDT1.TEXT中输入网址 按BUTTON1 来打开IE:
这个好说:
procedure TForm1.Button1Click
begin
    ShellExecute(0,nil,'Path+Ieexplorer.exe',Edit1.Text,nil,SW_SHOW);

解决方案 »

  1.   

    1:)写注册表 hkey_local_machine\software\microsoft\internet \explorer\extensions
    在这个位置添加项目:内容 如果你安装了网络蚂蚁之类的东西。可以参考。
    2:)用shell函数
      

  2.   

    to yl_gz(东方不败):天那!那里面有一个键值,是一个非常长的数字和字母组成的,这怎么判断呀?(我用的是win2000)
      

  3.   

    1)肯定是要修改注册表信息hkey_local_machine\software\microsoft\internet \explorer\extensions
    2)注意要 uses shellapi单元
      shellexecute(handle,nil,pchar(edit1.text),nil,nil,sw_shownormal);