Advertisement
Guest User

Untitled

a guest
Feb 27th, 2020
127
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.38 KB | None | 0 0
  1. String[] delovi = textBox1.Text.Split(' ');
  2. if (delovi.Length != 2)
  3. {
  4. MessageBox.Show("Neispravan unos", "Greska", MessageBoxButtons.OK, MessageBoxIcon.Warning);
  5. }
  6. else {
  7. listBox1.Items.Add(delovi[0]);
  8. listBox2.Items.Add(delovi[1]);
  9. textBox1.Text = "";
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement