There are many ways,
You could have a global variable in your second form to store which option was selected. Then just have a PUBLIC method in your second form called getSelected which returns your option
<code>public function getSelected()
return selection
end function</code>
then as long as you open the second form modally, the first form will wait for the second form to close before executing the rest of the code.
<code>form2.show vbModal
option = form2.getSelected()
form2.dispose()</code>
or for VB2005
<code>form2.showDialog()
option = form2.getSelected()
form2.dispose()</code> will open it in Modal
Hope this helps