I have a data entry form in which there are two synchronized combo boxes - facility and line. Facility is a read only field and the data comes from a global variable which i had set while the user selects their respective facility button on the main form. Based on the facility, line combo box will be displayed (i wrote the code in the "on current" event).
I usually enter 4-5 records and then save them together. Records were saved correctly. Today I entered 4 records and before saving them i had to confirm an entry i made in the 1st record , so i went back to the 1st entry using the back arrow and i noticed the line combo box selection was changing. Because of the oncurrent event, the line combobox is getting populated again.
Please let me know which is the appropriate event to solve this problem (or any property which is similar to IsPostback propertyin .Net)
I usually enter 4-5 records and then save them together. Records were saved correctly. Today I entered 4 records and before saving them i had to confirm an entry i made in the 1st record , so i went back to the 1st entry using the back arrow and i noticed the line combo box selection was changing. Because of the oncurrent event, the line combobox is getting populated again.
Please let me know which is the appropriate event to solve this problem (or any property which is similar to IsPostback propertyin .Net)
Comment