Hi!
Use a Select statement:
Select Case YourComboBox.Value
Case "Third Party Lien"
DoCmd.OpenForm "LienForm"
Case "Overpayment"
DoCmd.OpenForm "OverPayment"
etc.
End Select
Of course, you will need to use the actual form names and field values that exist in your database. Note, the value of the combo box comes from the bound column so you will need to do the select statement on the column you chose as the bound column.
hth
Jeff Bridgham
bridgham@purdue.edu