Getting Started with Seekford Solutions Encoder Wizard
Seekford Solutions .NET Class Library  

Getting Started: Seekford Solutions Encoder Wizard

Encoder Wizard is a collection of classes designed to help facilitate in the ncoding and decoding of data in industry standard formats generally used on the Internet. It also contains one-way hash and checksum algorithms for data integrity and security.

Adding the class library

After creating a project in the language of your choice, you will need to add a reference to the Encoder Wizard class library. Follow the next steps to do this.
1. Choose the Project Menu: Add Reference... You will see the following screen.
2. Click Browse...
3. Navigate to the directory you installed the product and look at the subdirectory Common Files. The directory is always c:\Program Files\Seekford Solutions Inc\CommonFiles\
4. Select the file called SeekfordSolutions.EncoderWizard.DLL and click OK

Add the using statement

In the top of your code page use the following syntax:
[C#]
using SeekfordSolutions.EncoderWizard;
[VB]
Imports SeekfordSolutions.EncoderWizard
Example:

Choose the class to use

View the EncoderWizard Namespace to choose which class you would like to implement. All classes have example code on their use.