Hi,
I am using the following code to populate data in Textbox1:
I have few functions assigned in TextBox1_TextChanged event. The problem i am facing is this event is fired twice, once after the Fill command and another after the Position command whereas i want the event to fire only once after the Position command. What should i do?Code:Me.OrdersTableAdapter.Fill(Me.OrderBookingDataSet.Orders, Master.c) Me.OrdersBindingSource.Position = OrdersBindingSource.Find("ord", Master.o)




Reply With Quote