Crystal Report HELP..
C#
1
Posts
1
Posters
0
Views
1
Watching
-
I have created a dynamic crystal report "Generator" where u select the fields you want to see and than generate the report. the problem im having is when i run the project.. it asks for a servername, database name, userid and password. ive set these in my code like this: private ConnectionInfo crConnectionInfo = new ConnectionInfo (); crConnectionInfo.DatabaseName = "DatabaseName"; crConnectionInfo.UserID = "Your UserID"; crConnectionInfo.Password = "Your Password"; the code i found says i must have a for loop where i loop through all the tables and apply the connection to the tables but i use a dataset so i dont know if this will apply. Can sum1 please help me fix this error..