Windows Vista Forums

Using the ObjectDataProvider always throws an exception...

  1. #1


    Desmond Cassidy Guest

    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

  2. #2


    Marcus Guest

    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

Using the ObjectDataProvider always throws an exception...

Similar Threads
Thread Thread Starter Forum Replies Last Post
TcpClient throws "invalid pointer address" exception on Server 2008 TDC .NET General 0 16 Jan 2009
SendKeys throws "Hook cannot be created" security exception in Vista Beta 2 Dan Dautrich Vista security 1 28 Mar 2007
Printing some fonts throws exception in XPS to GDI conversion GeneW Avalon 0 24 Jan 2007
Bug: MediaElement throws exception on application resize Philippe Lavoie Avalon 2 01 May 2006
BUG: MediaPlayer throws an exception after multiple play / pause Philippe Lavoie Avalon 0 06 Apr 2006