Click here to Skip to main content
15,906,081 members

Comments by Shanmugam Rathakrishnan (Top 11 by date)

Shanmugam Rathakrishnan 8-Feb-13 4:28am View    
Thanks for your reply, but i have solved it by the below solution...
Shanmugam Rathakrishnan 24-Jan-13 5:52am View    
refer my solution...
Shanmugam Rathakrishnan 24-Jan-13 1:10am View    
Normally You don't need it. but, you can do this by reloading the Form_load of the form...
Shanmugam Rathakrishnan 24-Jan-13 1:02am View    
\d is a digit, + is 1 or more numbers, so a sequence of 1 or more digits
Shanmugam Rathakrishnan 18-Jun-12 5:29am View    
hi, Thanks for ur reply...
i tried by what u said above but the problem is not solved yet...
i am using 2 tables in my report both r individual tables and both r mentioned in sub-reports(subrep1,subrep2) of cryatalreport1.
i also using record selection formula for both sub-reports.
So i wrote the by this...

rd.Load(AppDomain.CurrentDomain.BaseDirectory + "CrystalReport1.rpt");
ConnectionInfo coninfo = new ConnectionInfo();
coninfo.DatabaseName = "Stock.mdb";
coninfo.ServerName =Application.StartupPath;
coninfo.UserID = "u1";
coninfo.Password = "pwd";

TableLogOnInfo tableconinfo = new TableLogOnInfo();
tableconinfo.ConnectionInfo = coninfo;
CrystalReport1 cr1 = new CrystalReport1();

cr1.Subreports[0].Database.Tables[0].ApplyLogOnInfo(tableconinfo); cr1.Subreports[1].Database.Tables[0].ApplyLogOnInfo(tableconinfo);

pls guide me is that right r wrong...