sage 200 summer 2018 scripting

Hi all,

I am having a devil of a time getting sage 200 summer 2018 to work with scripting. I have been working with developer support who have no problems at all and I cannot get scripting to work at all.

I have tried windows server 2019 and also w10

I have checked all the usual .. firewall.cpl, registry to enable scripting, no AV installed, no Malware protection in place.

Library is compiled/built into the location that Sage200Desktop.exe resides, and I have the simplest of Sage200Scripts dll that can be.

Customer is bombarding me with requests.

can anyone give any guidance?

thanks in anticipation ...

jON

Parents
  • 0

    I am debugging in Server 2019 VS2019

    Sage200scripts is a class library compiled into the working folder of Sage200Desktop.exe

    the below script should work in w10 (looks like TAB characters are not liked in the script)

    Imports System
    Imports System.Windows.Forms
    imports Sage200Scripts

    Module addInModule

    Public Sub Main()

    Dim script As New Sage200Scripts.FormAmendments()
    script.Run(form)

    End Sub
    End Module

    jON

Reply
  • 0

    I am debugging in Server 2019 VS2019

    Sage200scripts is a class library compiled into the working folder of Sage200Desktop.exe

    the below script should work in w10 (looks like TAB characters are not liked in the script)

    Imports System
    Imports System.Windows.Forms
    imports Sage200Scripts

    Module addInModule

    Public Sub Main()

    Dim script As New Sage200Scripts.FormAmendments()
    script.Run(form)

    End Sub
    End Module

    jON

Children