Crystal Reports - “The report you requested requires further information”

前端 未结 9 1564
梦如初夏
梦如初夏 2021-01-07 08:34

I have some Crystal Reports that were created using Crystal (external to Visual Studio) and are now loaded in the VS project. Before the report is previewed I set up the rep

9条回答
  •  Happy的楠姐
    2021-01-07 08:46

    I have found the best way to fix a bug is to post the question to StackOverflow and 5 minutes later work it out yourself. Needless to say, I worked this out.

    As well as setting all the log on info in the report objects, I also have to do it in the Crystal Viewer component in ASP.NET. So I just write some code like this and it all works, no prompts.

    
    
    var connectionInfo = new ConnectionInfo();
        connectionInfo.ServerName = "192.168.x.xxx";
        connectionInfo.DatabaseName = "xxxx";
        connectionInfo.Password = "xxxx";
        connectionInfo.UserID = "xxxx";
        connectionInfo.Type = ConnectionInfoType.SQL;
        connectionInfo.IntegratedSecurity = false;
    
    for (int i = 0; i < Viewer.LogOnInfo.Count; i++)
    {
        Viewer.LogOnInfo[i].ConnectionInfo = connectionInfo;
    }
    

提交回复
热议问题