Ejemplo n.º 1
0
        private void button1_Click(object sender, EventArgs e)
        {
            hotels obj = new hotels(searchdetails.d_id);

            this.Hide();
            obj.Show();
        }
        private void button4_Click(object sender, EventArgs e)
        {
            int.TryParse(textBox1.Text, out d_id);
            hotels h = new hotels(d_id);

            h.Show();
            this.Hide();
        }