Here is something i can get my head around. In windows form i am tring to update combobox by result of function. The Function return correct resutlt as List<string>
but it updates only the first time the event passes. Here is what i have tried.
cbDatabase.DataSource = GetServerDatabases(txbServer.Text);
cbDatabase.Refresh();
I know I cant just loop the result list and refill it but i cant stop thinking that there is a better way.
Thanks in advance