Click here to Skip to main content
15,891,431 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
I am trying to open the IE web browser using the launcher.launchuriasync. Every time this event fires it returns false. I tried a regedit fix that I found online, but that did not help. I do not have access to my browser's popup blocker settings, so turning that off is not an option. If anybody has any ideas it would greatly appreciated.

Sample code:

C#
private async void gridView_ItemClick(object sender, ItemClickEventArgs e){
    var options = new Windows.System.LauncherOptions();
    options.DesiredRemainingView = Windows.UI.ViewManagement.ViewSizePreference.UseHalf;
    options.DisplayApplicationPicker = true;
    bool success = await Windows.System.Launcher.LaunchUriAsync(a, options);
    if (success)
    {
       
    }
    else
    {
    
    }
}
Posted
Comments
Valery Possoz 19-Jul-14 9:17am    
What is in your variable "a" ?

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900