Hi,
I am having trouble reading the item number field in the Purchase order matrix (foirm 142 and item 38 - matrix).
All it does is return blank when there is a value, and also it tells me the item in the cell is of Combo type!!! so I tried setting it to a combo box but no good. tried edit box too.
I am not sure what I am doing wrong here, here is my code (visual basic)
this is in the Item Event
If pval.ColUID = "1" Then ' item no Set oMtx = mObjSBOApplication.Forms(FormUID).Items("38").Specific Set oCollumns = oMtx.Columns Set oColumn = oCollumns(1) Set oCombo = oColumn.Cells(pval.Row).Specific Call ShowItemUdf(oCombo.Selected.Value) End If
Thanks for any help.
Add a comment