ContributionsMost RecentMost LikesSolutionsRe: Enforce Constraints on Data Table. Failed to enable constraints. One or more rows contain values. Actually agree with Daniel, normally you just do something like this: Dim dt As DataTable = Nothing Using dbConnApp As DbConnInfo = BRAPi.Database.CreateApplicationDbConnInfo(si) dt = BRApi.Datab...Re: Enforce Constraints on Data Table. Failed to enable constraints. One or more rows contain values. Isn't it this? dt.Constraints.Clear Re: Is there a way to Select All, Unselect All a Multiselect Combo-box parameter? I used something like this to collect the selections (using bound param): Dim groupsString As String = args.NameValuePairs.XFGetValue("Groups", String.Empty) Dim groups As List(Of String) = String...Re: Is there a way to Select All, Unselect All a Multiselect Combo-box parameter? Not sure if this applies in your case, but a while back I switched from a combobox to a GridView with the Show Deselect All button enabled. The bound parm on the Grid View contains a delimited list o...Re: Monthly Currency Load Automation From years ago....you probably want to replace the deprecated GetCustomDataTable call with something like this: Using dbConnApp As DBConnInfo = BRApi.Database.CreateApplicationDbConnInfo(si) Using d...