Hi,

I am using the following code to populate data in Textbox1:

Code:
Me.OrdersTableAdapter.Fill(Me.OrderBookingDataSet.Orders, Master.c)
Me.OrdersBindingSource.Position = OrdersBindingSource.Find("ord", Master.o)
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?