This is probably not the correct interpretation of this error.
The Win32 error above is more likely to indicate the actual problem.
Flags
Severity
Success
This code indicates success, rather than an error.
This may not be the correct interpretation of this code,
or possibly the program is handling errors incorrectly.
We have a slow memory leak in our application and I've already gone through the following steps in trying to analyize the cause for the leak: 1. Enabling user mode stack trace database in GFlags 2. In Windbg, typing the following command: !heap -stat -h 1250000 (where 1250000 is the [...] read more
I have an Windows Phone markeplace app. Users reports that app sometimes crashes at Windows Phone 8. Here is my data from windows phone dev center report: Problem funciton: Microsoft.Phone.Scheduler.SystemNotificationInterop.CheckHr Exception type system.reflection.targetinvocationexception Stack trace: Frame Image Function Offset 0 microsoft_phone_ni Microsoft.Phone.Scheduler.SystemNotificationInterop.CheckHr 0x0000019a 1 microsoft_phone_ni Microsoft.Phone.Scheduler.SystemNotificationInterop.CreateNotification 0x0000002e 2 microsoft_phone_ni Microsoft.Phone.Scheduler.ScheduledActionService.Add [...] read more
I have a pointer to an array of bytes (u8). I now have a function that takes a pointer of type int (unsigned int). What is an elegant way to accomplish this without creating a new array and converting each element? I need to convert each byte to a single [...] read more
I'm currently implementing a custom style for a button and want to define the different states (eg. Pressed) with a VisualStateManager. <Style x:Name="customStyle" TargetType="Button"> <Setter Property="ClickMode" Value="Release"/> <Setter Property="Template"> <Setter.Value> <ControlTemplate TargetType="Button"> <Grid x:Name="RootElement" Background="{TemplateBinding Background}"> <VisualStateManager.VisualStateGroups> <VisualStateGroup x:Name="CommonStates"> <VisualState x:Name="Normal"/> <VisualState x:Name="Pressed"> <Storyboard> <ColorAnimation Storyboard.TargetName="RootElement" Storyboard.TargetProperty="Background" To="Red" </Storyboard> </VisualState> [...] read more
One of my user has problem with the listpicker. The problem is only happen with his lumia 1520 (and I think also with other phone with that resolution but I can't test it). The listpicker crash when the user tap on it and it goes to full mode display in [...] read more
I just upgraded a project from VS2008/.NET 3.5/PostSharp 1.5 to VS2010/.NET4.0/PostSharp 2.0. Now, when running the unit tests for the system I get hundereds exceptions in the form of: System.BadImageFormatException: An attempt was made to load a program with an incorrect format. (Exception from HRESULT: 0x8007000B) at COMPANY.Data.NHibernate.BaseRepository.c__Binding`1.Invoke(Object& instance, Arguments [...] read more