I've got an application that displays data in a dataset. It works fine, but I'm having trouble capturing the values that are being displayed on the controls. For example, I databind the "text" property of a control to a particular dataset field ("name", for illustration purposes) and it displays the data fine ("smith") at runtime, but if I try and messagebox the current value of the "text" property of that control, I get the original default value (""), instead of the currently displayed value ("smith").
Simply put, how can I capture the value that is currently being displayed in the control, since the "text" property apparently isn't really being modified? I need it so I can use it in a parameter for update and delete functionality. This stuff was so much simpler in VB6!!