DexUtilityLaunchUrl()
The DexUtilityLaunchUrl() function opens a web browser and displays the content of the specified URL.
Syntax
DexUtilityLaunchUrl(URL)
Parameters
• URL - A string specifying the complete URL to launch.
Return value
None
Examples
The following C# example launches a web browser to display the Microsoft web site.
Dynamics.Forms.SyVisualStudioHelper.Functions.DexUtilityLaunchUrl .Invoke("https://www.microsoft.com");
The following Visual Basic example launches a web browser to display the Microsoft web site.
Dynamics.Forms.SyVisualStudioHelper.Functions.DexUtilityLaunchUrl _ .Invoke("https://www.microsoft.com")