AutoCount Resource Center


AutoCount Accounting 2.0.28.196 API Update - 13/4/2022
  1. Error when use "MultiPricing" column in the object of documents, such as Invoice.
    The new column name is "MultiPrice".
  2. Credit Limit Control and Overdue Limit Control will not invoke credit control events, if the document does not violate the limit.
    Credit Control Event from this release can be used only when programmer wishes to override system rules if the document has hit limit control.
    View topic on how to override limit control.
  3. CEF components (version 99.2.14)
    Plug-in project that has implemented CEF components and for Singapore users, suggest to use CEF version 99.2.14 to prevent version conflict which this version is used for IRAS GST F5 Returns.
    Furthermore, your plug-in builder does not have to include the CEF components.
    You may use this API to check if the component is installed for AutoCount Accounting 2.0.28.196, else it will download the component.
   //Requires AutoCount Accounting 2.0.28.196 to implement "LoadCefComponent()"
   if (!AutoCount.Components.Components.LoadCefComponent())
       return false;


AutoCount Accounting API (.Net Framework)
Plug-In, Integrate...

    Connect and Integrate with AutoCount Accounting


  1. API: Master Data


  2. API: Transactions & Documents


  3. API: Bonus Point (Member Point)


  4. Reporting - Member List and Point Balance - [1.8, 1.9] [2.0]
Tutorials
General Knowledge
Some source code syntax in this document requires Development Tool that supports C# 6.0
All materials and coding you may find at wiki AutoCount for programmer is for education and conceptual purposes.

Programmer may use them as study reference, but be cautious when apply sample and training coding in actual project.
Without throughout understanding of the piece of code, it may result to confusion in the project.
When a programmer uses any piece of code from others in the project, the programmer is liable to the code.


Download and Resources

 

Programmer Download and Links
Programmer Download and Links to External Resources



Past Notice

AutoCount Accounting 2.0

  AutoCount Accounting API Updated in 2.0.21.169 - 14/4/2020

AutoCount.Configuration.DatabaseManagement has been moved from AutoCount.UI.dll to AutoCount.dll.
Project rebuild may be required.

  AutoCount Accounting API Updated in 2.0.20.168 - 14/4/2020

7 new dll have been added to better manage system resources.
AutoCount.Image100p.dll
AutoCount.Image125p.dll
AutoCount.Image150p.dll
AutoCount.Image175p.dll
AutoCount.Image200p.dll
AutoCount.Image500p.dll
AutoCount.Images.DLL

These assemblies are required when your project has reference to AutoCount Accounting 2.0 UI object.


  AutoCount Plug-In Builder 2.0.2.4 is available for download - 31/12/2020
Click here to download page
  AutoCount Accounting 2.0.18.162 - 30/12/2020
Plug-In is required to specify the Developer's Company email at the constructor of the Plug-In.
This is to allow the developer to be informed of the exception that was thrown from the plug-in.
Exception: Method not found: 'Void AutoCount.PlugIn.BasePlugIn..ctor(System.Guid, System.String, System.String)'.)
Solution: at the constructor of the plug-in, add email to the new parameter.
Example: public PluginInitialize() : base(new Guid("<<Put your product Guid here>>"), "My First Plugin", "<<Plugin Version>>", "myemail@domain.com")


Requires DevExpress 19.2.10
Add this line in the constructor
SetDevExpressComponentVersionRequired("19.2.10")
  Plug-In Builder 2.0.1.3 is released for AutoCount Accounting 2.0.15.139 and higher
Version 2.0.1.3 plug-in builder can be used to build earlier version of AutoCount Accounting 2.0 plug-in.
Separate installed folder is not required.
Click here to go to download page
  AutoCount Accounting 2.0.15.139
Plug-In is required to specify the DevExpress supported for this plug-in at the constructor of the Plug-In.
SetDevExpressComponentVersionRequired("19.2.7")
  AutoCount Accounting 2.0.15.138
This release requires DevExpress 19.2.7, which you may find the installer on Download page.
  AutoCount Accounting 2.0.5.108 has major API update in GL/AR/AP.

DLL added:
AutoCount.Accounting.dll
AutoCount.Accounting.UI.dll
DLL removed:
AutoCount.CommonAccounting.dll

Remove of AutoCount.CommonAccounting.dll does not implicate that classes that were in AutoCount.CommonAccounting.dll are removed.
To better organize the naming, UI and logic, system engineer and analyst have rearranged and split them into two libraries.

  AutoCount Accounting 2.0.0.70 is released to compliant with GST 0% SR
There is no major changes in API compatibility for project uses API 2.0.0.66-2.0.0.69
But, do rebuild with 2.0.0.70 assemblies to confirm the compatibility.


AutoCount Accounting 1.9

 

Upgrade from AutoCount Accounting 1.8 to 1.9 requires a special license key.

However, if create a new account book in AutoCount Accounting 1.9.6 and higher version,
you will be able to use the account book for development & testing without requirement of License Key.


 

AutoCount Accounting 1.9 is compatible with AutoCount Accounting 1.8.

Some coding may require minor update, due to earlier version of 1.8 has some differences in method call.
Such as SubProjectStartup parameter has been updated since version 1.8.30.
Click here to see the changed in SubProjectStartup method.


General

 

This document does not allow to save, because it contains accrual and payment basis tax code
When you see the message prompted similar to the title,
this is to accommodate the new SST calculation of Sale Tax and Service Tax,
which Sale Tax is on "Accrual Basis", while Service Tax is on "Payment Basis".

  • Accrual Basis is defined as, Sales Tax is payable when the invoice is created.
  • Whereas, Payment Basis is after payment is received from customers for Service Tax.
    However, if the payment is not received after 12 months,
    it becomes payable regardless of whether the payment is received.

The difference between the two methods is the timing to recognize Payment Basis as Tax is deffered until
payment is received, or 12 months period.

Therefore for AutoCount Accounting to recognize these two occurrence whether it is payable tax,
separating them to two documents can clearly differentiate them in the finance and tax report.

Posted on 6 Sep 2018