// Declare a BarTender application variable 
                
                BarTender.Application btApp; 
                
                // Create a new instance of BarTender 
                
                btApp = new BarTender.Application();
                
                // Set the BarTender application visible
                
                btApp.Visible = true;
                
                // Check to see if BarTender is connected to the BarTender Licensing Service
                
                if(btApp.LicenseServer.Connect() == true)
                {
                MessageBox.Show("Connected");
                }
                else
                
                {
                MessageBox.Show("Not Connected");
                }
                
                // End the BarTender process 
                
                btApp.Quit(BarTender.BtSaveOptions.btDoNotSaveChanges);