ROCK.:cool: Thanks dz, that was it. Piece of cake.
I
irishhokie
@irishhokie
Posts
-
Dialog Event? Refresh attempt. -
Dialog Event? Refresh attempt.This is probably an easy thing to do, but I can't figure out the syntax to save my life.:wtf: I'm clicking a button on FormRed to launch a Dialog that will enter a new number to be added to a combobox on Form Red. I can Add it to the database from that launched Dialog, but when it closes, I can't get the parent Form Red to refresh, it appears if I close and re-open it though. What kind of syntax am I missing to make this work? Thanks!:-D private void buttNew_Click(object sender, System.EventArgs e) { frmCreateProblemReport cpr = new frmCreateProblemReport(this.conns); cpr.ShowDialog(); cmbPRNumber.Refresh(); }