I am developing a simple MDI application with two child forms with one serving as a front-end version and the second serving as a back-end version of a database.Thechildformserving asa user-friendly front-end of the database contains different labels and controls such as richtextboxes, combo boxes and simple text boxes that are data bound. The second childform contains a DataGridView control showing data as it is stored in the relational database.

I am trying toimplement a mechanism by whichwhen a user opens the childform containing the datagridview control and click on a row, it would open up the other childform showing the front-end of the database and highlight (something like a yellow rectangle) over the label and control associated with the field selected. Please cananyone help me on how to get started with implementing this or point me to examples or any source code snippets that do something similar to this.

As an example, if there is a "Employee Name" label and an associatedcombo box control in the first childform listing all the employees.If the user opens the second childform in this application and clicks on a row in the datagridviewcontaining anemployee name, it would highlight the label and the combobox control on the other childform.