I have created Addon Installer With the B1DE Installer Wizerd. After that Also Use Batch File AddOnRegDataGen.bat to Generate Ard File.
After that on any other machine I addon install successfully, But When I want to Start it , It Prompts message
Wrong Digital Signature for Add-on.
I also have Written
In my Code While Setting Application on Start of Add-on
Dim SboGuiApi As SAPbouiCOM.SboGuiApi
Dim sConnectionString As String
SboGuiApi = New SAPbouiCOM.SboGuiApi
SboGuiApi.AddonIdentifier = "XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX"
sConnectionString = Environment.GetCommandLineArgs.GetValue(1)
If sConnectionString = "" Then
MessageBox.Show("Add-on must be run from SAP Business One.")
End
End If
'// connect to a running SBO Application
SboGuiApi.Connect(sConnectionString)
'// get an initialized application object
SBO_Application = SboGuiApi.GetApplication()
Add-on Identifier was generated by the Add-on identifier generator.
Can Any body help me.
Thanks in Advance