Document Entry Form and Logic

From AutoCount Resource Center

Introduction

  1. Document Entry provides two sections of scripting events.
    • Logic
    • Form Entry
  2. Logic section is where programmer find events that are triggered on,
    • Changes of value
    • Adding of new document or item
    • Document transfer
    • While saving of Document
  3. Form Entry section is where events that can access to Form Components & Controls. Triggered on,
    • Entry Form is Starting
    • Entry Form is Binding data to control
    • Entry Form is Closing
    • Entry Form is switched from View Mode to Edit Mode

Document Entry Logic Script Event

OnMasterColumnChanged

public void OnMasterColumnChanged(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceMasterColumnChangedEventArgs e)

See Examples

OnDetailColumnChanged

public void OnDetailColumnChanged(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceDetailColumnChangedEventArgs e)

See Examples

OnNewDocument

public void OnNewDocument(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceEventArgs e)

See Examples

OnNewDetail

public void OnNewDetail(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceNewDetailEventArgs e)

See Examples


Document Entry Form Script Events

Form events are the event methods that associates with a Form.

OnFormInitialize

public void OnFormInitialize(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.FormInitializeEventArgs e)

OnDataBinding

public void OnDataBinding(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.FormDataBindingEventArgs e)

OnFormShow

public void OnFormShow(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.FormShowEventArgs e)

OnFormClosed

public void OnFormClosed(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.FormClosedEventArgs e)

OnSwitchToEditMode

public void OnSwitchToEditMode(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.FormEventArgs e)

BeforeAddDetail

public void BeforeAddDetail(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.FormBeforeAddDetailEventArgs e)

AfterCopyToNewDocument

public void AfterCopyToNewDocument(BCE.AutoCount.Invoicing.Sales.Invoice.FormInvoiceEntry.AfterCopyToNewDocumentEventArgs e)

Go to menu

Go to top
Resources For AutoCount Software Developers