Dex – How to get started with Dexterity

David Meego - Click for blog homepageThis is a reposting of an article I originally wrote on my Developing for Dynamics GP blog.

Something I am often asked is how to get started with Dexterity.  As Dexterity is not really known outside of the Microsoft Dynamics GP world, there are not a large number of books available on the subject, like there are for Visual Basic or Visual C#.

Note: if you are still unsure about which tool or tools is best for you, please see the Choosing a Development Tool post.

So what is the best place to get started.  Below are the steps I suggest.

  1. Install Dexterity
    Either from the Tools\Dex\Setup folder of CD 2 of the Microsoft Dynamics GP install CDs. Follow this #Dexterity Development Environments Series to set up the development environment.
  2. Read the Manuals
    Dexterity installs manuals in a Manuals folder.  They can also be accessed from the Help menu inside Dexterity. I suggest that you work through the Quick Start manual, using the Programmer’s Guide Volumes 1 & 2 for reference.  You should also browse through the sanScript Reference and the Function Library Reference to get familiar with what commands and functions are available. The Integration Guide explains how to write integrating applications and how to re-use all the navigation and security facilities inside Microsoft Dynamics GP.

  3. Do the Training
    The Dexterity Fundamentals training (now called Dexterity I) is an excellent start to getting the foundations needed for all Dexterity developers.  The materials can be downloaded from the Training Links page.  While this training can be completed as self study, nothing beats getting trained by an instructor in the classroom.  I have been running training prior to GPUG Summit conferences, watch this blog for the next class.

    Note: The training materials are for version 9.0. Don’t worry, this is the latest version and everything is still valid for later versions of Microsoft Dynamics GP and Dexterity.

  4. Check out the Samples
    There are a number of samples provided with Dexterity and also available for download from CustomerSource. Look at and play with the samples as they will help you learn.

  5. Use the Help File
    Press F1…. The Dexterity help file is a brilliant resource for all things Dexterity.  Use it.

  6. Read the articles
    The Developer Articles Links page on this blog has links to great Knowledge Base (KB) articles.

  7. Use the Forums
    There is a list of links for Forums on the right hand section of this blog.

  8. Use the Tool
    Get the hands on experience. The best way to learn is to actually get down and create some Dexterity windows and write some sanScript code. It is recommended that you start with a small integration or customisation project first. Learn to walk before you run.  Completely changing the behaviour of the SOP_Entry window is not recommended as your first project.

  9. Use the SDK (Software Development Kit)
    The SDK can be installed from the Tools folder of CD 2 of the Microsoft Dynamics GP install CDs. The SDK contains vast amounts of information on the data model and transaction flows as well as documentation on procedures and functions that can be re-used.

Please add your comments on your experiences or advice you can give to new Dexterity developers.

David

24-Apr-2009: Added link to Choosing a Development Tool post.

08-Feb-2012: Added note about training materials being version 9.0.

This article was originally posted on the Developing for Dynamics GP Blog and has been reposted on http://www.winthropdc.com/blog.

23 thoughts on “Dex – How to get started with Dexterity

  1. Posted for Mariano Gomez:
    David,
    This is a great step-by-step process for new Dexterity developers. However, I always try to revert back to basics: know thy CRUD operations! Every development language poses that challenge: how to create, read, update and delete records in a table. If you can identify these operations the rest will come easy. Look for my new blog article pretty soon on
    Understanding CRUD operations with Dexterity
    Of course, I also learned from the best: the former Great Plains Software International Team!!!
    MG.-
    Mariano Gomez, MVP
    Maximum Global Business, LLC
    http://www.maximumglobalbusiness.com

    Like

  2. Hi,
    I’ve been doing battle with the Dynamics site but not getting anywhere in a hurry. It all seems to come back to CustomerSource but I can’t work out how to get into it.
    Here’s the problem. Way back I was a Dexterity developer using version 3 or so thru to 6.5 or so. I developed a range of Dynamics integrated products and some stand-alone.
    One of my old customers has a stand-alone still running using 6.00 and they’ve asked that I make some changes.
    So what I want to find out is how to get a current version of Dex (or even an older version) and what is required to run and licence the product these days. I can’t seem to find anywhere in Microsoft.com where the simple issue of just buying the product is addressed.
    Any help you can offer would be appreciated

    Like

  3. Hi Mark
    Please can you use the Email link at the top of the blog so I can get an email address for you.
    I am checking what we can do to help you. Normally, you would need to be a registered Partner or Customer to access PartnerSource or CustomerSource where the Dexterity downloads are.
    The current version of Dexterity is v10.00 to match Microsoft Dynamics GP 10.0.  You might not want to use v10 as it changes the interface from MDI to SDI. This means that each window shows separately in the taskbar and no longer sit inside the application main window.
    David

    Like

  4. Hi Mark
    You can still purchase Dexterity as a Customer.
    As a Partner, Dexterity is included in the Not For Resale Kit – so, if you signed up as a Partner, you will get an NFR copy of Dexterity.  The code is available on the Microsoft Dynamics GP 10.0 CD #2, and it’s also available for download via PartnerSource.
    Dexterity is also available in the Subscriptions area of MSDN.
    I hope this helps.
    Please use the email link if you have any further questions.
    David

    Like

  5. Just want to find out how to create standalone Application without using MSSQL as database in Dexterity v10.
    FYI – Since Btrieve & CTree is not being used.
    Please advise.
    Thanks
    LOW

    Like

  6. Hi Low
    You will need to edit the Dex.ini to change the default database from SQL to Ctree.
    Comment out FileHandler using a semi colon and DatabaseType.
    ;FileHandler=SQL
    DatabaseType=Ctree
    As long as any tables you create are set as default database type they will work as ctree.
    Make sure you read the Dexterity Manual on Standalone applications (STNDALON.pdf).
    David

    Like

  7. Please kindly advise how to create standalone Application using MSSQL as database in Dexterity v10.
    If there any procedure on that??? Please advise.
    Thanks
    KEN

    Like

  8. Hi Ken
    Included with the documentation for Dexterity is a Standalone Application Guide (STNDALON.pdf) which explains much of what is needed.
    To change the default database to SQL is handled by a DEX.INI setting.
    Look for Database and comment it out with a semicolon (;) if it exists and make sure FileHandler is set to SQL:
    FileHandler=SQL
    Then the system will ask for login on the first access of a SQL table, or you can build your own login window and use the Login_ function library to login yourself (which is how Microsoft Dynamics GP works).
    Good Luck
    David

    Like

  9. I am newbie .I want to develop standalone application using dexterity. I have the following queries
    1. How to create standalone application using c-tree datatbase.
    2. Can I use c-tree for bigger applications
    2. After creating the application how to create an .exe for the standalone application.
    Please advise sir.
    Thanks and Regards,
    Waseem.

    Like

  10. Hi Waseem
    Information on creating a standalone application is available from the Stand-alone Application Guide (STNDALON.pdf) manual.
    To answer your questions:
    1) To get Dexterity into Ctree mode, comment out the Dex.ini setting for FileHandler and add DatabaseType… see below:
    ;FileHandler=SQLDatabaseType=Ctree
    2) Ctree can be used for up to about 10 users, but its reliability will be an issue if you are looking at a lot of users and heavy use.
    3) Look in the Redist.txt file for the components needed for a Standalone application.  You will not end up with a single exe file, but you can create a self extracting zip file for distribution.
    Hope this helps
    David

    Like

  11. I am building a small application using built in ctree with dexterity I have a question.
    I didnt find anything like AutoIncrement while creating a table.
    Do I have to do this with the sanscript?

    Like

  12. Hi Waseem
    Can I suggest that you ask this type of question on the newsgroups where others can answer and also where others can benefit.  There are links on the left hand side of this blog.
    You would need to create your own code for numbering your documents, for ctree or SQL.
    David

    Like

  13. Hi- Can someone help me out how to send e-mail through Dexterity? Please note i need to send emails using smtp which requires authentication…any help…

    Like

  14. Ali,
    Question of this nature ("how do I….") should be posed to a public place such as the Forums or Newsgroups.  That way everyone can learn (and answer) your question.
    In your case, checking the Dexterity help would point you to using the Dexterity MAPI function library which handles the emailing capability of Dynamics GP.

    Like

  15. Hello sir
    This is Nizamudeen ….
    Actually I am looking for Dexterity Training Class Could u please help me regarding this…
    I am Form India I would like to have online training Class.
    Thanks and Regards

    Like

  16. Hi Nizamudeen
    There is no online training for Dexterity. It does not lend itself to an online training.  You can do the manuals as self study or you can join one of the classroom training sessions that happen every so often.
    In addition to the manuals that come with Dexterity, there are the materials used for the classroom training.
    They can be downloaded from the bottom of the Dexterity Articles and Links page on this blog:
    blogs.msdn.com/…/dexterity-articles.aspx
    If the web pages don't work, try the direct download links.
    As for Classroom Training, there is some training planned for the near future by my friend Mariano Gomez. Check out his blog post on the Dexterity Training Roadshow.
    dynamicsgpblogster.blogspot.com.au/…/microsoft-dexterity-training-roadshow.html
    Good Luck
    David

    Like

Please post feedback or comments

This site uses Akismet to reduce spam. Learn how your comment data is processed.