HI Maik,
Thanks for the suggestion. I have already tried this, but I get the exact same results. It's very strange. If I do the following:
If pVal.EventType = SAPbouiCOM.BoEventTypes.et_CLICK AndAlso pVal.ItemUID IsNot Nothing AndAlso pVal.ItemUID = "txtHowmany" Then
Dim oBoxesForm As SAPbouiCOM.Form = Me.m_oAppCls.SBO_Application.Forms.GetForm(pVal.FormType, pVal.FormTypeCount)
Me.degugForm(oBoxesForm)
Dim oTxt As SAPbouiCOM.EditText = oBoxesForm.Items.Item("txtHowmany").Specific
End If
I still get the error, even though the item I'm trying to get is the one that raised the event to get to this code.