我有一个连接到SAP BO实例的Visual Ctudio应用程序,我需要在Jump Server(可使用SAP实例的地方)上作为独立应用程序运行它。
单击按钮后,应用程序将创建一个对话框,其类型为Designer.Application
。当我在本地计算机上运行应用程序时,将创建此对话框,但是当我在跳转服务器上运行该应用程序的可执行文件时,它不会创建该对话框,并且会出错。
下面是我的代码的快照。
Private Sub CreateDesignerConnection()
On Error GoTo logfail
' get business objects designer and show login dialogue
globalDes = New Designer.Application
globalDes.LogonDialog()
gobalDesignerConnected = True
On Error Resume Next
Exit Sub
logfail:
MsgBox("Unable to log into Business Objects, check connections and login details and try again")