Hi.
I have images on the screen for the DB and when I select one, I need the app to simulate a "Next" Click
code:
txt_db.Text = "MSSQL";
frm_generator_database_connection_step02_mssql frm = new frm_generator_database_connection_step02_mssql() { Dock = DockStyle.Fill, TopLevel = false, TopMost = true };
frm.FormBorderStyle = (FormBorderStyle);
pContainer.Controls.Clear();
pContainer.Controls.Add(frm);
frm.Show();
Regards