Hi All

My prob it's like this.

I get to know, that I should to write for procedure this message box instead of sign '+' it a logic expression - 'Or'.

e.g. instead

VB Code:
  1. MsgBox "Item " & Text1.Text & " was not found!", vbOKOnly + vbInformation, "Search"

should be:
VB Code:
  1. MsgBox "Item " & Text1.Text & " was not found!", vbOKOnly [B]Or[/B] vbInformation, "Search"

I was explained that this depends from quantity of flags

I am totally confused now because I don't know what are the flags. How I can to recognize them? Where I can read about flags for Message Box - on a MSDN I can't found it

thanks in advance