Ok, let’s see if this works. I tried to respond a couple days ago, but had problems with the site. So, we’ll try it again.
We’re on 803 and this custom code mod works fine for us. Not sure of any difference in 9.05 or higher than what we are on. It could be totally different from 803. Either way, it might give you an idea if you don’t come across anything else. It was pretty easy for me and when something easy works, I just go with it. I’ve used similar code on other forms too. Your mileage may vary.
Private Sub oTrans_partPlantAdapter_AfterAdapterMethod(ByVal sender As object, ByVal args As AfterAdapterMethodArgs) Handles oTrans_partPlantAdapter.AfterAdapterMethod
'// ** Argument Properties and Uses **
'// args.MethodName
'
'Add Event Handler Code
'
Select Case args.MethodName
Case "Update"
Case Else
'********* substitute the x's below with the epiGIUD of the checkboxes *************
Dim CB01 As EpiCheckBox = CType(csm.getNativeControlReference("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ), EpiCheckBox)
CB01.checked = false
Dim CB02 As EpiCheckBox = CType(csm.getNativeControlReference("xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx" ), EpiCheckBox)
CB02.checked = false '
End Select
End Sub
Kurt