У меня есть код VB в моем отчете SSRS, и он вызывает ловкость, чтобы открыть окно. Можно ли ссылаться на код в действии в поле текстового поля? Я бы хотел, чтобы пользователь мог щелкнуть поле, и оно откроет окно.
Dim GPApp As Object
Public Sub Main()
'Create the GP application object
GPApp = CreateObject("Dynamics.Application")
On Error GoTo 0
If GPApp Is Nothing Then
MsgBox("Failed to create the application object")
End If
End Sub
Public Sub Receipt_Click()
Dim ErrVal As Integer
Dim error_msg As String
Dim GpApp As Object
ErrVal = GpApp.ExecuteSanScript("open form POP_Inquiry_Receivings_Entry; set 'POP Receipt Number' of window POP_Inquiry_Receivings_Entry of form POP_Inquiry_Receivings_Entry to RCT19002;", error_msg)
If ErrVal <> 0 Then
'A compiler error occurred. Display the error.
MsgBox(error_msg)
End If
End Sub