Описание базы данных
7

            this.Controls.Add(tbCinema);

 

            tbDate = new TextBox();

            tbDate.Width = 200;

            tbDate.Location = new Point(40, 320);

            this.Controls.Add(tbDate);

 

            tbTime = new TextBox();

            tbTime.Width = 200;

            tbTime.Location = new Point(290, 320);

            this.Controls.Add(tbTime);

 

            tbPlace = new TextBox();

            tbPlace.Width = 200;

            tbPlace.Location = new Point(290, 370);

            this.Controls.Add(tbPlace);

 

            tbKinoteatr = new TextBox();

            tbKinoteatr.Width = 200;

            tbKinoteatr.Location = new Point(170, 270);

            this.Controls.Add(tbKinoteatr);

 

            btnConnect = new Button();

            btnConnect.Text = "Создать сервер";

            btnConnect.Width = 140;

            btnConnect.Location = new Point(55, 165);

            btnConnect.Click += new EventHandler(btnConnectClick);

            this.Controls.Add(btnConnect);

 

            btnAdd = new Button();

            btnAdd.Text = "Добавить сеанс";

            btnAdd.Width = 140;

            btnAdd.Location = new Point(190, 400);

            btnAdd.Click += new EventHandler(btnAddClick);

            this.Controls.Add(btnAdd);

 

            alClients = new ArrayList();

            this.Size = new System.Drawing.Size(260, 265);

            this.Text = "Сервер";

 

            btnDisConnect = new Button();

            btnDisConnect.Text = "Удалить сервер";

            btnDisConnect.Width = 140;

            btnDisConnect.Location = new Point(190, 440);

            btnDisConnect.Click += new EventHandler(btnDisConnectClick);

 

            this.Controls.Add(btnDisConnect);

            btnDisConnect.Visible = false;

 

            SearchTextBox = new TextBox();

            SearchTextBox.Text = "Поиск...";

            SearchTextBox.Size = new Size(250, 50);