Skip to content

Instantly share code, notes, and snippets.

@NPS-ARCN-CAKN
Created September 15, 2017 21:31
Show Gist options
  • Save NPS-ARCN-CAKN/d002911679dc77600ef23774c3bcda2f to your computer and use it in GitHub Desktop.
Save NPS-ARCN-CAKN/d002911679dc77600ef23774c3bcda2f to your computer and use it in GitHub Desktop.
Load a Janus GridEX DropDown column
'load the herd column dropdown
With Me.CampaignsGridEX.RootTable.Columns("Herd")
.HasValueList = True
.LimitToList = True
End With
Dim HerdList As GridEXValueListItemCollection = Me.CampaignsGridEX.RootTable.Columns("Herd").ValueList
HerdList.Add("Chisana", "Chisana")
HerdList.Add("Mentasta", "Mentasta")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment