// Obtain translated label one at a time from the table "Label" on system dependent database.
 public string GetLabel(Int16 CultureId, string LabelCat, string LabelKey, string CompanyId, string dbConnectionString, string dbPassword)
 {
     using (Access3.AdminAccess dac = new Access3.AdminAccess())
     {
         return(dac.GetLabel(CultureId, LabelCat, LabelKey, CompanyId, dbConnectionString, dbPassword));
     }
 }