Page 1 of 1

New install problem?

Posted: Tue Jan 15, 2008 12:25 pm
by js_vistadb
Hello, I just installed from the download area the full install first. I am running Windows Vista 32 bit and the installer launched VS 2005 with non-admin rights so I think something might have not registered correctly.

Then I extracted the update (SR_2008.01.14_R2005) and copied over the existing files in bin. I ran the Installer.exe and told it to put them all in the GAC.

The sample reports work, but nothing I create. Even a basic test like this shows no data.

Code: Select all

            DataSet ds = new DataSet();

            ds.ReadXml(@"C:\Program Files\Stimulsoft Reports.Net 2007.3\.Net 2.0\Bin\Data\Demo.xml");
            
            stiReport1.RegData(ds);

            stiReport1.Show();
All I see is a heading and no data or column titles. I added the demo.xsd to the project and a strongly named dataset to the form. I used the Wizard to build the report (and it shows the Demo.xsd dataset.

Do I need to uninstall and reinstall maybe?

New install problem?

Posted: Wed Jan 16, 2008 12:31 am
by Vital
Try use following code:

stiReport1.RegData("NameOfYourDataSetInReportDesigner", ds);

Thank you.