D downbillgates Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-19 #1 在Delphi中,如何取得IE的完整路径。如c:/program Files/Internet explore/IExplore.exe
轻 轻松虎 Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-19 #2 注册表里“HKEY_CLASSES_ROOT/Applications/iexplore.exe/shell/open/command” 如果你想打开一个浏览器窗口,直接用 ShellExecute 函数就可以直接打开 url,比如: ShellExecute(Handle, 'open', 'http://www.sina.com.cn', '', '', sw_Normal);
注册表里“HKEY_CLASSES_ROOT/Applications/iexplore.exe/shell/open/command” 如果你想打开一个浏览器窗口,直接用 ShellExecute 函数就可以直接打开 url,比如: ShellExecute(Handle, 'open', 'http://www.sina.com.cn', '', '', sw_Normal);
D delphi Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-19 #4 注册表项: HKEY_CLASSES_ROOT/CLSID/{0002DF01-0000-0000-C000-000000000046}/LocalServer32
C chensh Unregistered / Unconfirmed GUEST, unregistred user! 2002-08-19 #6 通过API获得 program files 的目录,然后在后面加上/Internet explore/IExplore.exe 就可以了,那个函数我忘了怎么写,你自己查吧。 还可以读取c:/msdos.sys 文件中的HostWinBootDrv的值,它是启动磁盘的值, 然后在后面加上 program files/Internet explore/IExplore.exe
通过API获得 program files 的目录,然后在后面加上/Internet explore/IExplore.exe 就可以了,那个函数我忘了怎么写,你自己查吧。 还可以读取c:/msdos.sys 文件中的HostWinBootDrv的值,它是启动磁盘的值, 然后在后面加上 program files/Internet explore/IExplore.exe