OSAE.UI.Controls.AddControlPropertyLabel.LoadObjects C# (CSharp) Method

LoadObjects() private method

Load the screens from the DB into the combo box
private LoadObjects ( ) : void
return void
        private void LoadObjects()
        {
            DataSet dataSet = OSAESql.RunSQL("SELECT object_name FROM osae_v_object order by object_name");
            cboObject.ItemsSource = dataSet.Tables[0].DefaultView;
        }