Categories
7.0 7.5 C#.NET Microsoft VB.NET Windows Phone

Windows Phone – “Navigation is not allowed when the task is not in the foreground. Error: -2147220990”

When you debug your Windows Phone application that use a task and call the Show method your app crash with the following error message:

System.InvalidOperationException:
Navigation is not allowed when the task is not in the foreground. Error: -2147220990

Solution:

Add Show method in try/catch block

For example:

[sourcecode lang=”CSharp”]
private void appBarButton_Click(object sender, EventArgs e)
{
WebBrowserTask task = new WebBrowserTask();
task.Uri = new Uri("https://www.myerrorsandmysolutions.com/");
try
{
task.Show();
}
catch
{ }
}
[/sourcecode]

Did my solution solve your problem? Leave a reply.

Categories
7.0 7.5 7.8 8.0 HOW TO Microsoft Windows Phone

HOW TO install certificates file .cer on Microsoft Windows Phone-based devices

Be sure that you have exported the certificate as DER-coded-binary X.509 (.cer).
Send the Certificate file “.cer” via e-mail to an account configured on your Microsoft Windows Phone device.
Sync the Mail Box and tap on the attachment file to install the certificate.
Reboot your device.

Did my HOW TO help you? Leave a reply.