In the FormulaParserLib.zip file you will find three test application for FormulaParserLib.dll with source code.
There are VCTest_loadtime, VCTest_runtime and VBTest projects. VCTest_loadtime and VCTest_runtime are MSVC++ projects and
have the same functionality. The only difference is that VCTest_loadtime demonstrates how to use FormulaParserLib as load-time library
(using .lib and .h files) while VCTest_runtime shows how to load and use FormulaParserLib at run time
(using LoadLibrary and GetProcAddress Windows API functions).
VBTest demonstrates how to use FormulaParserLib in VisualBasic applications.
VCTest application has two important menu options.
1. Menu option Insert->Formula allows user to write formula in dialog window and get sequence of statements after closing
the dialog with OK button.
2. Menu option Insert->Test used to parse formulas in in_test.txt file and get out_test.txt file with simple statements sequence.
VBTest application allows user to input formula and press Parse button to view statements sequence in message box.