Netscape浏览器,显示出你指定的WWW地址的主页。下面这个
程序能
够完成这一功能。
programNetscape;
usesDDEMan;
procedureGotoURL(sURL:string);
var
dde:TDDEClientConv;
begin
dde:ΚTDDEClientConv.Create(nil);
withddedo
begin
//specifythelocationofnetscape.exe
ServiceApplication:Κ′c:ιns32ιprogramι
netscape.exe′;
//activatetheNetscapeNavigator
SetLink(′Netscape′,′WWW—Activate′);
RequestData(′0xFFFFFFFF′);
//gotothespecifiedURL
SetLink(′Netscape′,′WWW—OpenURL′);
RequestData(sURL+′,,0xFFFFFFFF,0x3,,,′);
CloseLink;
end;
dde.Free;
end;
begin
GotoURL(′http://www.yahoo.com/′);
end.