|
|
|
|
|
AddFavorite (Function) In french: AjouteFavori
Warning
This function is kept for backward compatibility. This function only manages Internet Explorer Favorites. As of June 15, 2022, the Internet Explorer 11 desktop application is no longer supported on some versions of Windows 10.
Adds an Internet address into the list of favorites for the Web user. Attention This operation only works with Internet Explorer browsers.
IF Position(BrowserName(), "Netscape") = 0 THEN
AddFavorite("PC SOFT, éditeur de WEBDEV", "wwww.pcsoft.fr")
END
Syntax
AddFavorite(<Title> , <Internet address>)
<Title>: Character string Title of the favorite visible in the "Favorites" menu of Internet Explorer. <Internet address>: Character string Internet address of the favorite. This address can be:- an IP address in http://xxx.xxx.xxx.xxx format
- a URL (http://www.windev.com/webdev/ for example/)
Business / UI classification: Neutral code
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|