New install problem?

Stimulsoft Reports.NET discussion
Post Reply
js_vistadb
Posts: 1
Joined: Tue Jan 15, 2008 12:19 pm
Location: Mount Dora, Florida

New install problem?

Post 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?
Vital
Posts: 1278
Joined: Fri Jun 09, 2006 4:04 am

New install problem?

Post by Vital »

Try use following code:

stiReport1.RegData("NameOfYourDataSetInReportDesigner", ds);

Thank you.

Post Reply