Typed datasets from xsd file works in C# Express but not VS 2003

xsd files create typed datasets in C# Express 2005. All I need do is add it to the project.
But in VS 2003 adding it to the project does nothing.
I've tried several other xsd files and none of them seems to create typed datasets in VS 2003 the same way they do in C# Express.
Any suggestions please?
Patrick
The code is simple. I add dsMotd.xsd to the project and can type:
dsMotd tds = new dsMotd();
In VS 2003 I can't do that.
The file reads as follows if that helps...
<?xml version="1.0" standalone="yes"?>
<xs:schema id="dsMotd" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xs:element name="dsMotd" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="tblmotd">
<xs:complexType>
<xs:sequence>
<xs:element name="motd_ID" type="xs:int" minOccurs="0" />
<xs:element name="motd_Text" type="xs:string" minOccurs="0" />
<xs:element name="motd_Author" type="xs:string" minOccurs="0" />
<xs:element name="motd_Class" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
[1452 byte] By [Patrick_Kirk] at [2008-2-14]
# 1
There's an option to generate a typed dataset under the schema menu. Found it on this forum too.
Patrick_Kirk at 2007-9-9 > top of Msdn Tech,.NET Development,XML and the .NET Framework...
# 2

Open the xsd-file in designmode. Right-click and select generate dataset.
And you should be able to use the class

Marinus

MarinusHolkema at 2007-9-9 > top of Msdn Tech,.NET Development,XML and the .NET Framework...

.NET Development

Site Classified