How can I cross reference a .contains for two textboxes? like
vb Code:
  1. for each word in textbox1.text
  2. if textbox2.text.contains(word) then
  3. msgbox("There was a word found that should not be there",msgboxstyle.critical,"Invalid")
  4. end if
  5. next
Would I need to do a RegEx to get every word in the textobox? Or should i just use a listbox and do a for each I as item in listbox1.items?
Please bless this mess!