It is 2 forms. I decided to go back to the custom voting options and placed code in the custom action event handler. I am curious to know what kind of code you would need to pass the values to a new form. Here is what I did:
Function Item_CustomAction(ByVal myAction, ByVal myResponse)
Select Case myAction.name
Case "Approve Request"
Set MyApp = Application.ActiveInspector.CurrentItem
Myitem.Close(1)
MyApp.Close(1)
Case Else
End Select
End Function