Originally posted by: Dave Goodman
I haven't explored it much, but I compiled and ran it, and it works nicely. Some hints to people trying the demo:
* In the Post-Build Step of Project Settings for Utilities, you can add a line to copy the .dll to the SimpleClient directory for ease of testing.
* In the Link tab of Project Settings for SimpleClient, add the library module.
* In line 8 of SimpleClientDlg.cpp modify the #include to point to the Utilities directory.
* In line 69 of SimpleClientDlg.cpp initialize the edit field with a simple script to facilitate testing.
Keep up the good work.
Dave Goodman
Thank you!
Example: copy Release\Utilities.dll ..\SimpleClient
Example: ..\Utilities\Release\Utilities.lib
Example: #include "..\Utilities\ScriptEngineFactory.h"
Example: m_strScript = _T("Sub ButtonHandler()\r\n msg=MyUtils.DoSomething\r\n MsgBox msg\r\nEnd Sub\r\n");
http://www.dkgoodman.com