CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 3 of 3
  1. #1
    Join Date
    Oct 2003
    Location
    Sweden
    Posts
    381

    Generating a Typed DataSet from an XSD-file in VS 2005

    How do I create a DataSet from an XSD file. I’ve read about some “Generate DataSet” option in Visual Studio but I cant find it.

    Does it exist external tools for this too?
    ...and justice for all

  2. #2
    Join Date
    Jun 2004
    Location
    Kashmir, India
    Posts
    6,808

    Re: Generating a Typed DataSet from an XSD-file in VS 2005

    You would be interested in reading this
    http://blogs.msdn.com/smartclientdat...Designers.aspx

  3. #3
    Join Date
    Feb 2005
    Location
    Israel
    Posts
    1,475

    Re: Generating a Typed DataSet from an XSD-file in VS 2005

    In VS 2005 they changed some stuff from 2003 version. The Generate Dataset do not work any more.

    Here is how to generate the dataset from an xsd file in 2005:

    1. Select the xsd file in the solution explorer
    2. At the Property Grid (F4) find the CustomTool property and type MSDataSetGenerator
    The typed dataset will be generated for you.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured