New

'Amount Left' text and value- Change text colour- within the Enter Purchase Invoice Screen

Within the enter purchase invoice screen found via Purchase Ledger > Enter Transactions > Invoice, the Amount left text and value is displayed in white text. Can this text colour be changed to black to make it more readable to Sage 200 users?

The text is within the Nominal Analysis section of the screen.

  • And the value shouldn't have a ":" suffix!

    This Sage.MMS.PurchaseLedger.PurchaseInvoiceForm.vbs script will correct it:

    Module addInModule
    Public Sub Main
    	form.FindControlByName("amountLeftLabel").ForeColor=System.Drawing.Color.Black
    	with form.FindControlByName("amountLeftValueLabel")
    		.ForeColor=System.Drawing.Color.Black
    		ctype(.UnderlyingControl,Sage.Common.Controls.Label).IgnoreTextFormatting=True
    	end with	
    
    End Sub
    End Module