Crystal Report Change Table.Location Prob.

aboobackerpm

Member
Joined
Oct 23, 2007
Messages
5
Programming Experience
5-10
Hai friends
I am using VB.net 2005 crystal report,SqlServer 2005. my report with stored procedure. foll. code is to change the database of reports ...

VB.NET:
For Each crTable As Table In crdoc.Database.Tables

            crTableLogonInfo = crTable.LogOnInfo
            crTableLogonInfo.ConnectionInfo = ObjGlobal.ConInfo
            crTable.ApplyLogOnInfo(crTableLogonInfo)
            crTable.Location = ObjGlobal.ConInfo.DatabaseName & ".dbo." &  crTable.Location.Substring(crTable.Location.LastIndexOf(".") + 1)


        Next

my problem is when i change the location of table report is not showing result

any one can help me pls..........
 
Back
Top