DataTable dataTable = SmoApplication.EnumAvailableSqlServers(false);
comboBox1.ValueMember = "Name";
comboBox1.DataSource = dataTable;
i am trying to populate a combobox control with a list of SQL Servers available on the company network with the above code but am getting the error below.
failed to retrieve data for this request
the code works on the development machine but fails on a client PC that has even has SQL Server 2012 Shared Management Objects installed.