hi,
i'm beginner in c#.net & currently working for a windows application.i have problem to customize the report in the crystal report and also everytime i run the code it asks for connection info which i had assigned during design time.Any help in this regard is appreciable.
thanks
deepas 0 Newbie Poster
Recommended Answers
Jump to PostYou can pass connection information dynamicall y to the crystal reports with the help of ConnectionInfo class.
ConnectionInfo crConnectionInfo = new ConnectionInfo();
crConnectionInfo.ServerName = "YOUR SERVER NAME";
crConnectionInfo.DatabaseName = "YOUR DATABASE NAME";
crConnectionInfo.UserID = "YOUR DATABASE USERNAME";
crConnectionInfo.Password = "YOUR DATABASE PASSWORD";Then it wont ask the …
All 4 Replies
EastStreetEagle 0 Newbie Poster
deepas 0 Newbie Poster
EastStreetEagle 0 Newbie Poster
jerry32uk 0 Newbie Poster
Be a part of the DaniWeb community
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.