起步软件技术论坛-X3

 找回密码
 立即注册
搜索
查看: 781|回复: 0

如何在Business平台中打开一个网页

[复制链接]
发表于 2004-10-14 15:16:50 | 显示全部楼层 |阅读模式
在打开一个网页的时候,需要用到一个函数ShellExecute,简单介绍一下函数的用法:

函数声明:HINSTANCE  ShellExecute(HWND hwnd;LPCTSTR lpOperation;LPCTSTR lpFile;LPCTSTR lpParameters;LPCTSTR lpDirectory;INT nShowCmd );

引用单元:Borland.Delphi.ShellAPI

参数说明:
1、hwnd:handle to parent window。
2、lpOperation:pointer to string that specifies operation to perform。
3、lpFile:pointer to filename or folder name string。
4、lpParameters:pointer to string that specifies executable-file parameters。
5、lpDirectory:pointer to string that specifies default directory。
6、nShowCmd:whether file is shown when opened。

       
1、Business平台在IE状态下,在原来IE浏览器上打开新的链接
Borland.Delphi.ShellAPI.ShellExecute(Forms.Application.Handle, 'open',sURL,'','',Borland.Delphi.Windows.SW_SHOWMAXIMIZED);

2、新的链接重新打开一个IE浏览器
Borland.Delphi.ShellAPI.ShellExecute(0, 'open', 'IEXPLORE.EXE', sURL, '', Borland.Delphi.Windows.SW_SHOW);
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

小黑屋|手机版|Justep Inc.

GMT+8, 2024-12-23 05:44 , Processed in 0.035832 second(s), 15 queries .

Powered by Discuz! X3.4

© 2001-2017 Comsenz Inc.

快速回复 返回顶部 返回列表