Is there a method to view the text that was displayed in a message box?
For example:
VB Code:
Private Sub Form_Load () Msgbox "This is a test",vbinformation,"Test" 'now how can i view "This is a test" ...or if the msgbox were different 'everytime... can i extract the value into a string? End Sub
