Set ocombo = frm2.Items.item("119").Specific
svalue= ocombo.Selected.Value
if i didnt select any value in the combo i have an error,
else no problem
i want to do something like that
Set ocombo = frm2.Items.item("119").Specific
if ocombo=nothing then 'or null or 0
svalue= ocombo.Selected.Value
end if
what can i do here