0
votes
0answers
21 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
41 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
43 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
29 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
65 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
45 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
38 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
46 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
115 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
136 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
70 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, ...
0
votes
2answers
96 views

Using custom sections in app.config throws an exception in WPF

I am very new to WPF and C# in general and using the app.config is confusing me. It feels unnecessarily difficult to accomplish something pretty basic. I just want to add a couple of data driven ...
4
votes
2answers
108 views

Catch unhandled exceptions from any thread

Edit The answers to this question where helpful thanks I appreciate the help :) but I ended up using: http://code.msdn.microsoft.com/windowsdesktop/Handling-Unhandled-47492d0b#content Original ...
0
votes
1answer
115 views

How can I analyze an exception like this?

When debugging my application I get the following exception. I know it has to do with an update method for an INotify property, but how to find out exactly what's going wrong. I can't get a decent ...
0
votes
2answers
153 views

A first chance exception of type 'System.InvalidOperationException' occurred in PresentationFramework.dll

All, I'm using DataBase First Entity Framework v4.4. In the DB (and data model) is Table1 that has a 1:many relationship to Table2. I am binding a DataGrid in WPF to Table1.Local.First().Table2 ...
0
votes
1answer
41 views

NullReferenceException on data grid

I have a datagrid (DevExpress) in a WPF user control dg_VQ is the datagrid name I have a list box lst_REQ_LIST In the SelectionChanged I reload 2 data grids The line in _load_data ...
0
votes
0answers
33 views

WPF Weird exception when Maximize

I have DataTemplate and I try to add a custom control MyAuto: <UserControl.Resources> <uc:AutoCompleteTextBox x:Key="MyAuto" /> <DataTemplate x:Key="myTemp"> ...
0
votes
1answer
67 views

GUI refresh in a multithread application causes exception

In my file searching application I have a problem with refreshing the GUI (OnPropertyChanged) I begin with all my checked dirs: foreach (string folderPath in dirList) { this.Search ...
-2
votes
1answer
84 views

Weird error in C# WPF

I am developing a WPF application. In this application I read from multiple txt files using Taks(thread) and display them. Sometimes I get an exception Destination array is not long enough to ...
0
votes
0answers
115 views

VS2010 WPF designer exception; “An item with the same key had already been added”

I am working on an app that uses WPF. In the designer, whenever I select a Label object while the Properties window is open and the Text section is expanded, within a second the designer disappears ...
0
votes
4answers
87 views

Getting a null exception while trying to hide the text block in WPF application

I am trying to develop some tools as I am new to WPF. I have a combobox which has 2 items. the xaml code is as below <Window x:Class="New_generator2.Window1" ...
0
votes
2answers
29 views

XmlParseException for a picture on a button

I would like to insert a picture une a button, and, when i run my application, i have a XmlParseException. I don't know why :( <Button Grid.Column="2" HorizontalAlignment="Left" Height="20" ...
1
vote
0answers
93 views

Changing Views and getting: grid name cannot be found in the name scope of 'System.Windows.Controls.Grid'

I using Expression Blend for getting an animation though the change of states. When i hit a button the animation starts. And it works!!!! But... The problem is that if i navigate thought another user ...
2
votes
2answers
120 views

C# and WPF, ShowFIleDialog throw an excpetion

I have a problem with my code. I use OpenFileDialog in my project and when I call the method ShowDialog an exception is thrown. I don't understand why. private void open_FileMenu(object sender, ...
1
vote
3answers
201 views

Change Slider's value in XAML throw an exception

I have a problem with WPF : I would like use a slider in my XAML with an default value but when i do it, an exception is thrown : An unhandled exception of type ...
0
votes
5answers
109 views

AppDomain.UnhandledException automatically re-throws handled exception

I'm trying to catch all unhandled exceptions in my app in order to conditionally handle those that can be without terminating the app, but I cannot solve a very basic problem: it doesn't stop the ...
4
votes
1answer
127 views

How can I preserve the stack trace when exception is thrown on non-UI thread

Doing this is bad form because it doesn't preserve a stack trace: try { /*... some code that can throw an exception ...*/ } catch (Exception e) { throw e; // ...Use "throw;" by itself instead } ...
5
votes
2answers
400 views

CommunicationObjectAbortedException & CommunicationObjectFaultedException in WCF Service

I am working on a system based on the publisher subscriber pattern. I have a WCF service that is running in a WPF application. There are numerous clients which connect to the service. The client side ...
1
vote
1answer
173 views

Exception when calling ShowDialog on a Microsoft.Win32.OpenFileDialog

I'm getting reports from a WPF application that is deployed in the field that the following ArgumentException is being thrown when attempting to display an Open File Dialog. Exception Message: ...
1
vote
2answers
115 views

Weird exception on collection

I get the below exception when I try to add/insert/remove to a collection (or any operation that changes the collection). The collection is initialized and the item inserted is not null and of the ...
1
vote
2answers
312 views

WPF XAML Designer Crashes

I have a Window, the only thing it has in it is a TextBlock. I'm getting ridiculous designer exceptions that is crashing the designer every time I change anything. I started removing everything trying ...
0
votes
1answer
168 views

Cannot create unknown type error

Exception: Cannot create unknown type error "'{http://schemas.telerik.com/2008/xaml/presentation}RadDatePicker'" public static object Visualize(string filepath) { try { ...
0
votes
0answers
180 views

WPF: exceptions in hyperlink event handler

I have a WPF DataGrid with a hyperlink column: <DataGridHyperlinkColumn Binding="{Binding DocName}"> <DataGridHyperlinkColumn.ElementStyle>` <Style> <EventSetter ...
1
vote
0answers
58 views

Could not load assmebly, library reference versus main project

I have a project that is made up of several other library projects and a main application (using Prism to build a composite application). I'm using Telerik.Reporting which uses ...
0
votes
0answers
39 views

Error while running obfuscated wpf application

I have a wpf application which is obfuscated using eazfucator. after obfuscating I build it in release mode,build is successful but at the time of running the application I am getting an error as ...
0
votes
3answers
150 views

WPF out of memory error when loading large amount of data

I need to process large amount of data into a single List<ChartData> for my custom control. About 3 Million points it works fine after reaching the List Count 80,00,000 It throws the Out of ...
0
votes
2answers
93 views

Alternative to differentiating between exceptions based on message?

I'm working in VB.NET - C# answers are fine. I'm building a system for handling validation of XML against a specific XmlSchema. I have an instance of SchemaException for each error in my XML ...
0
votes
2answers
521 views

Could not load file or assembly 'System.Windows.Interactivity'

I just added System.Windows.Interactivity assembly. XamlParse throw me an exception on run time: Could not load file or assembly 'System.Windows.Interactivity, PublicKeyToken=31bf3856ad364e35' ...
1
vote
2answers
265 views

Faulting module name: PresentationFramework.ni.dll

An application i wrote crashes and in the event viewer i found the following : Faulting module name: PresentationFramework.ni.dll, version: 4.0.30319.233, time stamp: 0x4d930fa2 Exception code: ...
1
vote
1answer
897 views

DataGrid throws InvalidOperationException by Scrolling

I want to show in a DataGrid the contents of a file. (The file contains more than 200,000 lines) To show the Grid with the Data is fast. But when I use the Scrollbar (for down scrolling) I've got ...
0
votes
1answer
76 views

Debug exception binding to List item when is empty

Having this piece of code: <ContentControl Content="{Binding SelectedDispositivos[0]}" ContentTemplate="{StaticResource DispositivoInfoViewTemplate}"> </ContentControl> ...
1
vote
1answer
124 views

Gerneral Transform InvalidOperation Exception was unhandled by user code

I have ran into a problem that I am completely clueless about. I am receiving the following error message: The specified Visual and the Visual do not share a common ancestor, so there is no valid ...
0
votes
0answers
37 views

“XamlParsException Was Unhandled” when use activex in wpf

I wrote wpf application with browser.In Activex ,I set serialport.open() then EnableDTR=true. I know for implement activex in wpf , must use from WindowsFormsHost class and I used. I want to in ...
1
vote
1answer
97 views

Exceptions in WPF Word Addin are not being handled

I am creating a WPF Office add in, and I would like to handle all exceptions in one place. To do this I use the following code in the constructor of my MainWindowViewModel: ...
0
votes
1answer
278 views

Exception while running WPF application

I am getting the following error when trying to run a WPF based application on windows XP runs fine on windows 7. System.DllNotFoundException was unhandled Message=Unable to load DLL 'dwmapi.dll': ...
1
vote
1answer
132 views

Exceptions thrown during a Set operation in a Property are not being caught

When I attempt to run a function inside of a Set clause of a Property, any exception that would arise is never caught by my global exception handler. I don't understand why that happens. Here is my ...
1
vote
1answer
204 views

Validation error template - binding exception

I am using the following template for validation error: <ControlTemplate> <Border BorderBrush="Red" BorderThickness="1"> <Grid> <Polygon Points="8,8 8,0 ...
1
vote
1answer
135 views

Continuing execution in WPF app after an exception in a hosted Winforms control

I have a WPF app that has a WindowsFormsHost in which a 3rd party WinForms control is hosted. Sometimes, because of a bug in the 3rd party WinForms control I get a NullReferenceException. Although I ...
1
vote
2answers
400 views

Enumeration to Brush IValueConverter throws an exception attempting to cast System.String to IValueConverter?

I'm trying to convert an enumeration into a brush so that an enum variable can be used to control the color of some control My enumeration (not really relevant): public enum Colors { Red, ...
0
votes
2answers
402 views

EntityFramework Exception : New transaction is not allowed because there are other threads running in the session

I am using ServiceBrokerClass which i got from CodeProject. But now when i try to save any record into database using EnityFramework and .Net WPF. I am getting the following error. ...

1 2 3 4 5