Problems reading textbox and radio buttons

Started by hmspe, June 26, 2010, 04:36:48 PM

Previous topic - Next topic

hmspe

I'm probably missing something really simple here.  On the attached form there are four textboxes followed by several sets of radio buttons.  For the first textbox (labeled 'Current') OnEditChanged is not firing the function to store the value.  Identical code works for the other textboxes.  On the radio buttons the first button of the first set (labeled "Copper') does not fire the function to store the value.  All the other buttons work properly in their group.

Any pointers on why this isn't working would be appreciated. 

Martin

owenwengerd

The 'Current' textbox seems to be working fine, but look closely at the Clicked event handler function names for the following controls:
vdrop_Drop_obCopper
vdrop_Drop_obDC
vdrop_Drop_btnCancel
vdrop_Drop_btnOK

and the Initialize event for:
vdrop_Drop

Those function names don't match the function names in your code, so they are not executing. I suspect that resetting the event handler names in Studio (Tools -> Reset event names) will fix everything up for you.
Owen Wengerd (Outside The Box) / ManuSoft

hmspe