Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

This is my code that throws an exception, it just randomly started today here is the photo :

enter image description here

Here is the whole page code and the error exception :

 public frmWFDocumentDetail()
    {
        InitializeComponent();

        NavigationInTransition navigateInTransition = new NavigationInTransition();
        navigateInTransition.Backward = new TurnstileTransition { Mode = TurnstileTransitionMode.BackwardIn };
        navigateInTransition.Forward = new TurnstileTransition { Mode = TurnstileTransitionMode.ForwardIn };

        NavigationOutTransition navigateOutTransition = new NavigationOutTransition();
        navigateOutTransition.Backward = new TurnstileTransition { Mode = TurnstileTransitionMode.BackwardOut };
        navigateOutTransition.Forward = new TurnstileTransition { Mode = TurnstileTransitionMode.ForwardOut };
        TransitionService.SetNavigationInTransition(this, navigateInTransition);
        TransitionService.SetNavigationOutTransition(this, navigateOutTransition);

        DataContext = App.ViewModel_WFDocumentDetailItems;
    }

    protected override void OnNavigatedTo(NavigationEventArgs e)
    {
        //**this is how you pass parameters through to a new page**//
        string processID = "-1";
        string processName = "";
        NavigationContext.QueryString.TryGetValue("processID", out processID);
        NavigationContext.QueryString.TryGetValue("processName", out processName);

        App.ViewModel_WFDocumentHeaderItems.LoadData("johnny", processID);

        App.ViewModel_WFDocumentDetailItems.LoadData("johnny");

    }

and the access violation :

System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

I have read up on it, some people say it is nvidia network manager, and some people say I must set some setting like Suppress JIT optimization , and ignore gpu memory if value isn't changed... but nothing works? Can anyone please please send me in the right direction?

As requested , the full stack

enter image description here

share|improve this question
1  
Can you paste the complete stacK? Hit the "View Details" button, then paste the full stack(obfuscate any company name, or identifying verbage). That exception is giving you the last 'steppable' line, if you go to "Debug -> Options and Settings -> Debugging -> General -> Enable Just My Code" you will stop in the actual location. This may be the difference between an answer and no answer. – taylorjonl Nov 27 '12 at 6:31
is this picture what you needed? :) – Arrie Nov 27 '12 at 6:42
Man, don't post the stack as a picture of the watch window, that's completely useless. Instead, catch the exception, call ToString() on it, and post the returned text. – Ran Nov 27 '12 at 6:44
@taylorjonl! THAT worked awesomely that setting! it took my right to the xaml error i got, it was all a missed "</" that was the main problem! – Arrie Nov 27 '12 at 6:47
2  
@Arrie, screenshots are great for human consumption but us coders love text... Strangely, I see your StackTrace is null, meaning it couldn't walk the stack. Normally there will be a value there, that along with the message and exception type is critical to debugging exceptions. – taylorjonl Nov 27 '12 at 7:00
show 1 more comment

2 Answers

up vote 1 down vote accepted

i used the setting taylorjohnl gave me "Debug -> Options and Settings -> Debugging -> General -> Enable Just My Code",and then the error went right to the piece of xaml that was a syntax error, and boom fixed it and app works again :) so violation error for me was basically a reference error, hope this can help other people as well, also use expression blend in silverlight to debug xaml in the UI

share|improve this answer

what is code in the InitializeComponent()? there is some class refer to null in it, (mostly is a event handler). once it is trigger, it will report AccessViolation.

share|improve this answer
InitializeComponent is generally generated code that handles UI initalization. He hasn't changed this code unless he specifically navigated the file system to the .g.cs file to make changes. – taylorjonl Nov 27 '12 at 6:35
from your picture , the error looks happen in there. sometimes when you change the event handler by yourselves, it may cause this issue. – ray_linn Nov 27 '12 at 6:37

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.