Click here to Skip to main content
15,903,854 members

Comments by Member 12002095 (Top 8 by date)

Member 12002095 11-Nov-15 6:02am View    
Thanks :)
Member 12002095 11-Nov-15 5:12am View    
I want to convert this linq statement into list of string type
Member 12002095 5-Nov-15 0:34am View    
I am not able to populate second combo box filtered on the basis of selection of value in first combo box. Am i binding the both combo boxes correctly?

If i select any value in first combo box, the second combo box always remains populated with same database name value. I want that based on selection in first combo box, second combo box should be filtered and then populate.
Member 12002095 4-Nov-15 23:12pm View    
Okay, I am posting the calling environment. Please check now.

public RelayCommand serverCommand { get; set; }

public void fetchServer(object server)
{
serverSelected = server.ToString();
}

serverCommand = new RelayCommand(fetchServer);
Member 12002095 4-Nov-15 6:35am View    
public void fetchServer(object server)
{
serverSelected = server.ToString();
}