Guest User

Untitled

a guest
Jul 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. //1行ずつ読み込んでメッセージしてます。
  2. //実際は、MessageBox.Show~のところをwebBrowser1.Document.All~として、書き込みます。
  3. if (textBox1.Lines.Length > 0)
  4. {
  5. for (int i = 0; i < textBox1.Lines.Length; i++)
  6. {
  7. MessageBox.Show(textBox1.Lines[i], "テキストボックス内の文字列");
  8. }
  9. }
Add Comment
Please, Sign In to add comment