Enable Configuration... button (btnConfigureOn) on the Quote Entry screen via Customization

Does anyone know if there is a way to override the state change of the Configuration… button on the Quote Entry screen? I noticed if I have data inside the BasePartNum field of that QuoteDtl record in the DB, it will stay enabled. However, sometime we assign standard parts to the partnum field, and when I “Get Details…”, I need it to pull in the standard part structures.

I have a text field control that enables the Configuration… button (btnConfigureOn). However, once I leave the focus of any control, it goes back to disabled before I can even click on it.

Has anyone had a need to override/add to the Configuration… button?

I’ve had some success with forcing things to stay enabled or disabled by using either a ForeColorChanged or BackColorChanged event which tests the control and forces it to the state I want it in if not in that state. Something like this one which forces the baqCombo to stay readonly.
private void baqComboProj_BackColorChanged(object sender, System.EventArgs args)
{
// ** Place Event Handling Code Here **
if (!(baqComboProj.ReadOnly))
baqComboProj.ReadOnly = true;
}