Fastreport Server - выдает ошибку
Cat
Россия, г.Орёл
В приложении-клиенте на Access 2003 пишу:
Dim client As FastReport.TfrxReportClient
Set client = CreateObject("FastReport.TfrxReportClient")
client.ReportServerConnection.HostName = "10.0.2.105"
client.ReportServerConnection.Port = 8081
client.ReportServerConnection.Login = "Cat"
client.ReportServerConnection.MIC = True
client.ReportServerConnection.Password = "psw"
client.ReportName = "1.Basic reports1.Simple list.fr3"
client.ShowReport
при запуске выдает ошибку (дословно):
RunTime error '-2147467259(80004005)':
Method 'ShowReport' of object 'IfrxReportClient' failed
Смотрела в отладчике - все поля свойства ReportServerConnection имеют значение Object doesn't support this action. Скорее всего из-за этого и выдается ошибка. Что делать?
Что я делаю не так и как это исправить? Все что указано в полях ReportServerConnection и ReportName на сервере есть.
Помогите, пожалуйста
Dim client As FastReport.TfrxReportClient
Set client = CreateObject("FastReport.TfrxReportClient")
client.ReportServerConnection.HostName = "10.0.2.105"
client.ReportServerConnection.Port = 8081
client.ReportServerConnection.Login = "Cat"
client.ReportServerConnection.MIC = True
client.ReportServerConnection.Password = "psw"
client.ReportName = "1.Basic reports1.Simple list.fr3"
client.ShowReport
при запуске выдает ошибку (дословно):
RunTime error '-2147467259(80004005)':
Method 'ShowReport' of object 'IfrxReportClient' failed
Смотрела в отладчике - все поля свойства ReportServerConnection имеют значение Object doesn't support this action. Скорее всего из-за этого и выдается ошибка. Что делать?
Что я делаю не так и как это исправить? Все что указано в полях ReportServerConnection и ReportName на сервере есть.
Помогите, пожалуйста
Комментарии