Hi guys,
Situation: I'm building a drop down list using "changed_event" in behind form code (which uses a data connection via Web Service). However, the user can upate or add new values to the drop down and for that I've a refresh button which updates the data connection with these recent updates.
Problem: Since the drop down list is builded on "Changed_Event" then how can I trigger it from let's say "rfresh" button_clicked event in behind the form code.
Possible Solution: Let's say if I've two methods in behind form code
public void List_Changed(object sender, XmlEventArgs e)
public void Refresh_Clicked(object sender, ClickedEventArgs e)
{
List_Changed(sender, e) <---------- how can I convert these parameters to the ones that List_Changed requires????
}
Any ideas or other ways around is greatly appreciated.