Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
What would you like to see other then what is above? That is the only 3 lines that I wrote.
cboAccessLevel.DataSource = dt_AccessLevels
cboAccessLevel.ValueMember = "AccessLevelID"
cboAccessLevel.DisplayMember = "AccessLevel"
Public Sub New()
MyBase.New()
'This call is required by the Windows Form Designer.
InitializeComponent()
'Add any initialization after the InitializeComponent() call
InitializeLocalObjects()
End Sub
Public Function InitializeLocalObjects()
cboAccessLevel.DataSource = dt_AccessLevels
cboAccessLevel.ValueMember = "AccessLevelID"
cboAccessLevel.DisplayMember = "AccessLevel"
End Function