I am using VS 2005 .NET VB ; (am a rookie) . . I need to know the following about Crystal Reports which comes bundled with VS 2005.
1) If I drag from the TOOLBOX CrystalReportViewer to my form then right click on it and create a new crystal report ; I then use the report wizard and create a new connection ADO.NET and use an XML schema file (xsd) then choose the fields then grouping and finally summaries ---> This is where I have a problem column4(see xsd file below) is what i need to totalize at the bottom of each page ; however I dont find a sum(total) summery value only maximum,minimum, count distinct count etc Why? is there something missing or another way to get this total . . .
XSD - The schema file contents :
<?xml version="1.0" standalone="yes"?>
<xs:schema id="NewDataSet" xmlns="" xmlns:xs="
http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-
microsoft-
com:xml-ms
data">
<xs:element name="NewDataSet" msdata:IsDataSet="true" msdata:UseCurrentLocale="t
rue">
<xs:complexType>
<xs:choice minOccurs="0" maxOccurs="unbounded">
<xs:element name="ListViewInfo">
<xs:complexType>
<xs:sequence>
<xs:element name="Column1" type="xs:string" minOccurs="0" />
<xs:element name="Column2" type="xs:string" minOccurs="0" />
<xs:element name="Column3" type="xs:string" minOccurs="0" />
<xs:element name="Column4" type="xs:string" minOccurs="0" />
<xs:element name="Column5" type="xs:string" minOccurs="0" />
<xs:element name="Column6" type="xs:string" minOccurs="0" />
</xs:sequence>
</xs:complexType>
</xs:element>
</xs:choice>
</xs:complexType>
</xs:element>
</xs:schema>
2) I have seperately purchased Crystal Reports XI Professional (not developer) some time ago; how do I get any report set up there to be used in my VB .Net projects. I ust can't figure this out ...
Thanking you in advance.
Start Free Trial