Advertisement
miszczo

Untitled

Jul 23rd, 2019
167
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 0.41 KB | None | 0 0
  1. public byte[] slave1_status_code = new byte[256];
  2.  
  3. private void StatusToolStripMenuItem_Click(object sender, EventArgs e)
  4.     Form4 ff4 = new Form4();
  5.     ff4.Show();
  6. }
  7.  
  8.  
  9. public Form4()
  10. {
  11.     InitializeComponent();
  12.     while (1<2)
  13.     {
  14.         string parsed="";
  15.         for(int i = 0; i < 255; i++)
  16.         {
  17.             parsed += "Slave ";
  18.             parsed += i;
  19.             parsed += " status - ";
  20.             //parsed +=
  21.         }
  22.     this.richTextBox1.Text = parsed;
  23. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement