Difference between revisions of "Document Entry Form and Logic"
Jump to navigation
Jump to search
(Created page with "{{NavigateDeveloper|collapsed}} ==Introduction== #Document Entry provides two sections of scripting events. #*Logic #*Form Entry #'''Logic''' section is where programmer find...") |
m |
||
Line 55: | Line 55: | ||
− | [[Category: |
+ | [[Category:Programmer]] |
[[Category:AppScript]] |
[[Category:AppScript]] |
Revision as of 15:41, 27 November 2017
![]() |
Go to top
|
![]() |
Resources For AutoCount Software Developers
|
Introduction
- Document Entry provides two sections of scripting events.
- Logic
- Form Entry
- 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
- 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)
OnDetailColumnChanged
public void OnDetailColumnChanged(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceDetailColumnChangedEventArgs e)
OnNewDocument
public void OnNewDocument(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceEventArgs e)
OnNewDetail
public void OnNewDetail(BCE.AutoCount.Invoicing.Sales.Invoice.InvoiceNewDetailEventArgs e)
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)