Client/MainForm.cs
changeset 33 1363bda20171
parent 32 4c416d2878dd
child 43 86aad774b532
     1.1 --- a/Client/MainForm.cs	Fri Aug 15 13:26:38 2014 +0200
     1.2 +++ b/Client/MainForm.cs	Sat Aug 16 11:15:42 2014 +0200
     1.3 @@ -28,7 +28,7 @@
     1.4          {
     1.5              //iClient.SetText(0,"Top");
     1.6              //iClient.SetText(1, "Bottom");
     1.7 -            iClient.SetTexts(new string[] { iClient.Name, iClient.SessionId });
     1.8 +            iClient.SetTexts(new string[] { textBoxTop.Text, textBoxBottom.Text });
     1.9          }
    1.10  
    1.11          private void MainForm_Load(object sender, EventArgs e)
    1.12 @@ -45,6 +45,10 @@
    1.13              //Text = Text + ": " + name;
    1.14              Text = "[[" + name + "]]  " + iClient.SessionId;
    1.15  
    1.16 +            //
    1.17 +            textBoxTop.Text = iClient.Name;
    1.18 +            textBoxBottom.Text = iClient.SessionId;
    1.19 +
    1.20          }
    1.21  
    1.22