Juega con el TEXT DEL DataCombo por ejemplo:
que tengas un datacombo que te lista varios formularios con las palabras por ejm.Form1, Form2, etc.
en el evento click del datacombo pon esto
if area=2 then
if trim(datacombo1.text)="Form1" then ' O lo que tengas escrito en el combo y a lo que quieras llamar
form1.show
elseif trim(datacombo1.text)="Form2" then
form2.show
end if
end if