ok it might be solved for him but I'm having the same issue but on my development machine. I've enter your code it seems sound and correct but when I run and trigger the Report it askes for a usernbame and password to connect to the database. As I have no username or password associated with the database this is a problem.
This is my connection information:
Upon debugging my path is correct and in the right place for my database.Code:''' <summary> ''' Open Connection Here ''' </summary> ''' <returns></returns> ''' <remarks></remarks> Public Function OpenNewConnection() As OleDb.OleDbConnection Dim NewConnection As New OleDb.OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source =" & fPath & "") Try NewConnection.Open() Return NewConnection Catch ex As Exception Throw (ex) End Try End Function
![]()




Reply With Quote