Windows Vista Forums
Vista Forums Home Join Vista Forums Windows 7 Forum Vista Tutorials Tags
Welcome to Windows Vista Forums. Our forum is dedicated to helping you find solutions with any problems, errors or issues you are experiencing with Windows Vista. The Vista forum also covers news and updates and has an extensive Windows Vista tutorial section that covers a wide range of tips and tricks.

Go Back   Vista Forums > Misc Newsgroups > Avalon

Vista - Using the ObjectDataProvider always throws an exception...

 
 
Old 06-19-2007   #1 (permalink)
Desmond Cassidy


 
 

Using the ObjectDataProvider always throws an exception...

The following code in C# always throws an exception at the 3rd Line.....+
$exception {"ObjectDataProvider can only be assigned an ObjectType or an
ObjectInstance, not both."} System.Exception
{System.InvalidOperationException}
==============================================================================

LoginScreenDataSource mLoginScreen = new LoginScreenDataSource();
ObjectDataProvider LoginProvider =
(ObjectDataProvider)FindResource("ods_LoginScreenDataSource");
LoginProvider.ObjectInstance = new LoginScreenDataSource();
===============================================================================
LoginScreenDataSource is a Class object
ods_LoginScreenDataSource is in the XAML file defined as
<Window.Resources>
<ObjectDataProvider x:Key="ods_LoginScreenDataSource" ObjectType="{x:Type
ds:LoginScreenDataSource}"/>

Any ideas ???
Cheers Desmond.



My System SpecsSystem Spec
Old 06-20-2007   #2 (permalink)
Marcus


 
 

Re: Using the ObjectDataProvider always throws an exception...

On Jun 19, 5:55 pm, "Desmond Cassidy" <Desmond.PA.Cass...@T-Online.de>
wrote:
> The following code in C# always throws an exception at the 3rd Line.....+
> $exception {"ObjectDataProvider can only be assigned an ObjectType or an
> ObjectInstance, not both."} System.Exception
> {System.InvalidOperationException}
> ==============================================================================
>
> LoginScreenDataSource mLoginScreen = new LoginScreenDataSource();
> ObjectDataProvider LoginProvider =
> (ObjectDataProvider)FindResource("ods_LoginScreenDataSource");
> LoginProvider.ObjectInstance = new LoginScreenDataSource();
> ===============================================================================
> LoginScreenDataSource is a Class object
> ods_LoginScreenDataSource is in the XAML file defined as
> <Window.Resources>
> <ObjectDataProvider x:Key="ods_LoginScreenDataSource" ObjectType="{x:Type
> ds:LoginScreenDataSource}"/>
>
> Any ideas ???
> Cheers Desmond.


As specified by the error message, you cannot specify BOTH the
ObjectType and the ObjectInstance...

ObjectType indicates to the ObjectDataProvider what type of object to
instantiate (if no object instance is supplied).

ObjectInstance is there to allow you to feed an object instance to the
ObjectDataProvider, so it does not have to create its own...

Cheers, Marcus.

My System SpecsSystem Spec
 

Thread Tools


Similar Threads
Thread Forum
TcpClient throws "invalid pointer address" exception on Server 2008 .NET General
SendKeys throws "Hook cannot be created" security exception in Vista Beta 2 Vista security


Vista Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows Vista", the Start Orb, and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46