cancel
Showing results for 
Search instead for 
Did you mean: 

Database Fields Verify Database - By Programaticaly

Former Member
0 Kudos

Hi to all,

I'm using Crystal Report 11.5, Visual studio 2005 - C#,Asp.Net2.0.

My task is by programaticaly add the

Fieldsobjects,Blobobjects and so on. So in design time i just

add the Datatable in the CR,

but during runtime i add some columns in database Table and i get that newly added column but unable to add this field

(Raised error as "Field Not Found") so what i tried is during

design time in

Field Explorer>Database Fields>Right Click and Select

Verify Database after this work my page is working fine.

My questions is how to do the same work programaticaly.

Experts please explain.

Thanks in Advance

Accepted Solutions (0)

Answers (2)

Answers (2)

Former Member
0 Kudos

this is a good code

Former Member
0 Kudos

Yes i found the way it's very simple

ReportDocument boReportDocument = new ReportDocument ();

boReportDocument.VerifyDatabase();

Thats all