Wizard

Prerequisites
Complete review of the Getting Started section.
Review of the Digging Deeper section.
A program registered to the ISB (for the purposes of this integration).

Wizard Integration Steps: (a video tutorial is also available)

  1. Open Visual Studio.
  2. Open your Visual Studio project. Be sure to have your Solution Explorer view open (View – Solution Explorer)
  3. Add a New Item as illustrated below.


  4. In the item dialog, add the “Linxter Integration” template as illustrated below.


  5. This will start the Linxter Integration template Wizard. Enter your Web Manager username and password, and click the “Login” button to move to the second part of the Wizard.
  6. Select your program (registered to the ISB) and click “Finish”.
  7. The Linxter Integration template wizard has taken care of all the Linxter SDK integration steps for you. It has added the Linxter dll, its encrypted datastore, and embedded your Company, Developer and Progam IDs.
  8. Now you’re ready to start writing code. Depending on where in your code you want Linxter to reside, add these if using C#:

    using Linxter.SDK;
    using Linxter.Common.Entities;
    using Linxter.SDK.EventArgs;

    or these if using Visual Basic:

    Imports Linxter.SDK
    Imports Linxter.Common.Entities
    Imports Linxter.SDK.EventArgs

  9. You are done! Linxter has been integrated into your program. You can now begin to use the methods, properties and events of the Linxter API.

    Note: In your code, when you call the CreateMessage() or CreateMessages() method, you will need to include your program's ActivityID which was generated when you registered your program to the ISB.

    When you are ready to deploy your Linxter enabled application, be sure to review our Deployment guidlines.