• How to add a default value to an Existing Control using Customizer

    If you need to add a default value to an existing control you can use Sage 500 Customizer. In this example using Customizer script the default credit limit in Maintain Vendors form is loaded by tabbing to the control containing the default value. …
  • How to set a default check box using Sage 500 Customizer module

    If you need to set or change the default value of a check box, you can write a VBScript within Customizer's script editor to select or clear a check box. The construct of the script is the same for all check box default customizations: Form.Controls(…
  • Adding new Document Type for Doc Transmittal

    Hello, Using customizer, we are able to add a new document type for document transmittal into the 'other contacts' window (from maintain customers). We have created a custom table to store the value and can join back to tcicontact through the cntctkey…
  • Looking for way to restrict labor progress entry to certain users.

    I'm looking for a method to restrict labor progress entries to certain users, user groups, ect... Possibly a vb script through customizer?
  • Cannot change script language from VBScript to JScript

    I would like to change the scripting language in an event in a Form Script Editor, when when I change the Language pulldown menu from VBScript to JScript, I get an error dialog with the text Script language changed. Modify existing script's syntax to…
  • Error calling DLL code from VBScript

    Back again with a specific bug... I have customized the Save Event in the frmBatch object in the Process Receipt of Good form: Sub Form_Save(oDM, bSave) Dim objApp, result Set objApp = CreateObject("LMNO.PrintNewLabel.FormSave") result = objApp.PrintBatchLabels…