bazofio,
It is possible, just make sure you have a label for the message text, and an OK button that the user can click on to close the form (really they'll be hiding it).
Assuming your messaging userform is named "frmMessage", you would use this code during your main userform's initialize event:
Then, in place of the MsgBox code, you would use this:
When the user clicks the OK button on frmMessage, its code should be Me.Hide instead of Unload Me.
Lastly, you should also add a terminate event to your main finding userform that will unload the frmMessage userform:
Bookmarks