Form event on column changed

Anyone ever seen this?

I added a column change event on a form (PACKOUT\HH) using the wizard. It never fires. :confused:

Looking at the decomp I see:

private void PackOut_ColumnChanged(object sender, DataColumnChangeEventArgs e)
		{
			if (this.codeChangeData)
			{
				return;
			}
......

My assumption is that codeChangeData = true. (I’m gonna call it cCd from now on because I’m lazy)

Looking further into the source I can that BeginEdit causes cCd to be true and EndEdit causes it to be false. Makes sense…but it still don’t work :smile: I am trying to be a good boy and avoid using control events but Epicor is making that difficult :blush:

Pack-out screen on HH is a pain in the Rear End… How are you changing the value of the column? Via the EpiDataView?

I’m not, was just changing the value in textbox that’s epiBound to it

And finding that HH screens in generally can be a bit finicky :face_with_raised_eyebrow:

FYI - After some more troubleshooting, I see that for some reason, even though I am presumably changing that PackNum field - it doesn’t fire, however, it does trigger other data changes (Quantity for example) - so I do have a work around.

It’s almost as if I am looking at the wrong EDV but according to the binding, that isn’t the case.

Roger that; easily one of the most frustrating customization’s I’ve dealt with