hi
i have this code which will not open the requested userform when the messagebox yes button is selected
Code
Private Sub UserForm_Activate()
Dim Response As Integer
MsgBox "Are Both Parapets the Same?", vbYesNo, "PARAPETS"
If Response = vbYes Then
ufmDoubleParapet.Show
End If
If Response = vbNo Then
Exit Sub
End If
' Unload Me
End Sub
Display More
what have i left out?
cheers
toe