| A: | | From the Excel Forms toolbar select a button control and drag/drop it under the Enter Your Details box. The Assign Macro dialog will be displayed. Click on the New button.
In the Button_Click module enter: Sub Button1_Click()
Application.Run "NobilisRunProcess", "[Username]", "[Password]", "[Server Name]", "[Port Number]", "[Process Name]"
End Sub Username is the user id you want to start the process.Password is the password for this user id. Server Name is the name of the server machine that you want to run the process. If you are running the process on your own computer, enter "localhost" here.Port Number is the number of the port your server is running on. The default port number is "8080".Process Name is the name of the process you want to run.
Exit the VBA editor and return to the workbook. Click on the button you just created to run the process.
|