Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6238767
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T11:16:24+00:00 2026-05-24T11:16:24+00:00

my first forray into Stack traces for WP7. This is causing me particular trouble

  • 0

my first forray into Stack traces for WP7.

This is causing me particular trouble and is popping up from several users of my app. I need a bit of help deciphering this.

This is the stack track:

Frame    Image                 Function                                                                              Offset    
0        coredll.dll           xxx_RaiseException                                                                32        
1        mscoree3_7.dll    WatsonUnhandledManagedException                                                   300       
2        mscoree3_7.dll    Dbg_NotifyManagedException                                                        136       
3        mscoree3_7.dll    FirstPassException                                                                1044      
4                          TransitionStub                                                                    0         
5                          System.ThrowHelper.ThrowArgumentException                                         52        
6                          System.Collections.Generic.Dictionary`2.Insert                                    344       
7                          System.IO.IsolatedStorage.IsolatedStorageSettings.Add                             92        
8                          traffic_and_travel_uk.Services.push_settings.button4_Click                        92        
9                          System.Windows.Controls.Primitives.ButtonBase.OnClick                             132       
10                         System.Windows.Controls.Button.OnClick                                            120       
11                         System.Windows.Controls.Primitives.ButtonBase.OnMouseLeftButtonUp                 228       
12                         System.Windows.Controls.Control.OnMouseLeftButtonUp                               100       
13                         MS.Internal.JoltHelper.FireEvent                                                  800       
14       mscoree3_7.dll    IL_CallManaged                                                                    860       
15       mscoree3_7.dll    IL_CallDelegateInternal                                                           176       
16       mscoree3_7.dll    makeComPlusCall                                                                   984       
17       mscoree3_7.dll    makeComPlusCallReturnInt                                                          40        
   18                                                                                                           0         
19       agcore.dll        CCoreServices::CLR_FireEvent                                                      400       
20       npctrl.dll        CommonBrowserHost::CLR_FireEvent                                                  36        
21       npctrl.dll        CControlBase::ScriptCallback                                                      536       
22       npctrl.dll        CXcpDispatcher::OnScriptCallback                                                  300       
23       npctrl.dll        CXcpDispatcher::OnReentrancyProtectedWindowMessage                                712       
  24       npctrl.dll        CXcpDispatcher::WindowProc                                                        408       
25       coredll.dll       SendMessageW                                                                      96        
26       npctrl.dll        CXcpBrowserHost::SyncScriptCallbackRequest                                        196       
27       agcore.dll        CEventManager::RaiseControlEvents                                                 208       
28       agcore.dll        CEventManager::Raise                                                              320       
29       agcore.dll        CEventManager::RaiseInterleavedRoutedEvents                                       360       
30       agcore.dll        CInputManager::InterleaveMouseAndGesture                                          320       
31       agcore.dll        CInputManager::ProcessMouseInput                                                  1768      
32       agcore.dll        CInputManager::SimulateMouse                                                      248       
33       agcore.dll        CInputManager::ProcessGestureInput                                                4492      
34       agcore.dll        CInputManager::ProcessInput                                                       440       
35       agcore.dll        CCoreServices::ProcessInput                                                       68        
36       npctrl.dll        CXcpBrowserHost::HandleInputMessage                                               920       
37       npctrl.dll        CXcpControl::OnGestureEvent                                                       460       
38       npctrl.dll        CXcpControl::ProcessWindowMessage                                                 1868      
39       npctrl.dll        ATL::CWindowImplBaseT_ATL::CWindow,ATL::CWinTraits_1442840576,0_ _::WindowProc    140       
40       coredll.dll       DispatchMessageW   
41       TaskHost.exe      CHostActiveXModule::RunMessageLoop                                                424       
 42       TaskHost.exe      ATL::CAtlExeModuleT_CHostActiveXModule_::Run                                      40        
43       TaskHost.exe      WinMain                                                                           1420      
44       TaskHost.exe      WinMainCRTStartupHelper                                                           60        
45       coredll.dll       MainThreadBaseFunc                                                                428

So I can see its getting stuck on button4_Click function and adding the Iso storage setting, but what else is going on here? I cant understand what is causing the crash for some people.

This is the code in question:

private void button4_Click(object sender, RoutedEventArgs e)
    {
        var settings = IsolatedStorageSettings.ApplicationSettings;
        settings.Add("FirstPush", "true");

        var hide = Visibility.Collapsed;
        grid4.Visibility = hide;
        SE_service_btn_Click1();
    }

Thanks. Any guidance appreciated.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-24T11:16:26+00:00Added an answer on May 24, 2026 at 11:16 am

    Look at the documentation for IsolatedStorageSettings.Add():

    ArgumentException   key already exists in the dictionary.
    

    Use IsolatedStorageSettings["FirstPush"] = "true" instead. That will either create or update the key if it already exists without throwing an exception.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Well, this is my first foray into memory profiling a .NET app (CPU tuning
My first forray into ajax webpages is causing me some problems. My basic structure
This is my first foray into java, and I am having trouble understanding how
I'm attempting my first forray into jQuery. I'm trying to acheive the following, though
I am making my first foray into scala for a production app. The app
This is my first foray into designing two versions of images for retina or
This is my first foray into using an MVC construct (CodeIgniter). I'm hoping someone
This is my first foray into shell scripting so if i'm asking a very
I am following this tutorial as a first foray into bootloader/OS development for x86
I've worked with CakePHP 1.3, but this is my first foray into CakePHP 2.0

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.