Answer found
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>

