Tagged Questions
0
votes
0answers
18 views
Low: Registering Framework Exception
My application is getting crushed and from log file I found this exception - "Low: Registering Framework Exception ".
I have added a dll(Microsoft.Expression.Drawing.dll) as reference to a module in ...
1
vote
0answers
43 views
Very Naughty exception -Managed code called FailFast, saying
In my WPF application,i am getting below exception when i run my PC with Tablet PC on Mode
CLR: Managed code called FailFast, saying "
Unrecoverable system error.
Any body have any idea on this? ...
0
votes
0answers
36 views
Wpf datagrid throws an argument null exception
We are doing an application using wpf in this application a datagrid used and it works fine upon windows 7 32/64 bits and windows 8 32 bits but upon windows 8 64 bits we get an argument null exception ...
1
vote
0answers
28 views
Awesomium WebControl Hang
I have a tabcontrol and in the tabcontrol I have two tabitems, and both of them contain an awesomium Webcontrol. However after some random time the Webcontrols don't display anything. When I try to ...
0
votes
0answers
32 views
WPF Exception crashes Dispatcher, and I cannot catch it
I am trying to validate resources of resource dictionaries. Because the dispatcher thread cannot be restored after a DispatcherException, I start a second STA thread in a second AppDomain. In this ...
0
votes
1answer
53 views
Binding to ICommand with MVVM
I'm totally new with MVVM and its stuff.
Could you help me to correctly bind the WPF button to ICommand.
I'm binding the button:
<Button Command="{Binding OpenWindow}" >
In the ViewModel:
...
1
vote
1answer
66 views
Databinding menu items fails at run-time
I have a MenuItem where the ItemsSource property is databound to an ObservableCollection like so:
<MenuItem x:Name="RecentItems" Header="Recent" ItemsSource="{Binding Path=RecentItems}" ...
0
votes
1answer
60 views
How to suppress Disable add-in dialog when Excel is force close
My addin is written in c#, NetOffice, ExcelDNA using WPFframework. Some part uses winforms, too.
The main UI is WPF
When there is a modal dialog displayed, users force close Excel.
Next time when ...
0
votes
0answers
78 views
runtime Exception when binding to a datacontext of a user control
Here is the XAML for the main page.
<StackPanel x:Name="menuStackPanel" Grid.Row="4" Grid.ColumnSpan="2"
Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
...
1
vote
1answer
60 views
Application exception issue
I can't run my application. What can I do to fix this issue?
I'm using Net 3.5 for this project
I get this exception:
"Ambiguous type reference. A type named 'TypeExtension' occurs in at least two ...
0
votes
1answer
41 views
Launch ExceptionValidationRule from specific context
I have a class Client :
public class Client : INotifyPropertyChanged
{
private string m_strCode;
public string strCode
{
get { return m_strCode; }
set
{
...
0
votes
1answer
49 views
ExceptionValidationRule in “two way” and XmlParseValidationException
I have a WPF application with Data in a DataBase.
I can create new Data in my Appli and save to Database, and i can load data form my DataBase.
For example, i created a Person class.
In my WPF ...
0
votes
1answer
195 views
System.Reflection.TargetInvocationException' occurred in PresentationFramework.dll
I run a simple c# wpf application that uses a browser embedded in it.I have created a event when the browser navigates to the given url.But this bug comes during runtime.
An unhandled exception ...
-2
votes
2answers
178 views
handle Entity Framework 5 Exception for CRUD aperations [closed]
I am using entity framework 5 in a wpf application and I want to catch all exceptions when I add or delete or move or update an entity (CRUD operations ) especially when there is foreign keys , then ...
2
votes
0answers
81 views
WPF unhandled exception handler and preserve call stack
I have a WPF application and I need to write a mini dump file whenever my application encounters an unhandled exception for help with debugging. However, every time the exception handler is called, ...