Here is a step by Step Guide to setting up a RapidCode project using C++ in VS2005.
#include <rsi.h> using namespace RSI::RapidCode::SynqNet;
Now you will be able to Build your RapidCode project without errors. Take a look at our Sample Applications for reference when developing your own project. Template.cpp is an excellent place to start.
To further assist with Project creation, the above steps have screenshots to assist you.
Start a new Win32 Console Application project. (Click Ok)
Click on Application Settings and check the Empty Project Option. (Click Finished)
Copy rsi.h & RSIQVC.lib into your Project directory. (These files are located at C:\SynqNet\)
Using the Solution Explorer, add an existing Item to Resource Files.
You will need to change 'Files of type:' to 'All Files (*.*)'. Add RSIQVC.lib.
Using the Solution Explorer, add a new Item to Source Files.
Create a file name for your main programming file.
Add the following to the top of your project.cpp file.
Using the menu, go to Project Properties.
In C/C++ General, add 'C:\SynqNet\' in Additional Include Directories as shown below:
In C/C++ Preprocessor, add '; RSIAPP' in Preprocessor Definitions as shown below:
Now you will be able to Build your RapidCode project without errors. Take a look at our Sample Applications for reference when developing your own project. Template.cpp is an excellent place to start.