How to connect to remote server

Hi professional reporters,
I am always use fast report data source to create my report and filtering my data via sending parameters from inside my application environment using the same connection string for application and report IDE ,so if i have a remote server i can save server name any how for my application but how i can do so for fast report in order to connect to that remote server , i know that if i register data source from inside application may no need to ask but this is my designing way so how to resolve it.

Thanks

Comments

  • edited 12:05AM
    at report script:
        private void _StartReport(object sender, EventArgs e)
        {
          string OldConnectionString = Report.Dictionary.Connections[0].ConnectionString;
          string newConnectionString = OldConnectionString.Replace(@"D:\database.mdb", @"D:\temp\database.mdb");
          Report.Dictionary.Connections[0].ConnectionString = newConnectionString; 
        }
    

Leave a Comment