Click here to Skip to main content
15,915,336 members
Home / Discussions / C#
   

C#

 
GeneralRe: Distributing c# app with ActiveX control Pin
mikechambers24-Jun-03 10:13
mikechambers24-Jun-03 10:13 
Generaldynamic table Pin
bora3ee23-Jun-03 11:43
bora3ee23-Jun-03 11:43 
GeneralRe: dynamic table Pin
Dimitris Iliopoulos23-Jun-03 11:54
Dimitris Iliopoulos23-Jun-03 11:54 
Generalhidden process Pin
bora3ee23-Jun-03 11:33
bora3ee23-Jun-03 11:33 
GeneralRe: hidden process Pin
Dimitris Iliopoulos23-Jun-03 11:49
Dimitris Iliopoulos23-Jun-03 11:49 
GeneralRe: hidden process Pin
Soledad24-Jun-03 9:12
Soledad24-Jun-03 9:12 
GeneralRe: hidden process Pin
jspano26-Jun-03 14:56
jspano26-Jun-03 14:56 
GeneralText.Replace Pin
jphuphilly23-Jun-03 9:23
jphuphilly23-Jun-03 9:23 
GeneralRe: Text.Replace Pin
Zachery23-Jun-03 9:31
Zachery23-Jun-03 9:31 
GeneralRe: Text.Replace Pin
jphuphilly23-Jun-03 10:05
jphuphilly23-Jun-03 10:05 
GeneralRe: Text.Replace Pin
leppie23-Jun-03 10:11
leppie23-Jun-03 10:11 
GeneralRe: Text.Replace Pin
jphuphilly23-Jun-03 13:31
jphuphilly23-Jun-03 13:31 
GeneralRe: Text.Replace Pin
leppie23-Jun-03 14:52
leppie23-Jun-03 14:52 
GeneralContext Menu Show on Notify Icon Click Pin
Zachery23-Jun-03 9:18
Zachery23-Jun-03 9:18 
GeneralRe: Context Menu Show on Notify Icon Click Pin
leppie23-Jun-03 10:09
leppie23-Jun-03 10:09 
GeneralRe: Context Menu Show on Notify Icon Click Pin
Zachery23-Jun-03 11:08
Zachery23-Jun-03 11:08 
GeneralRe: Context Menu Show on Notify Icon Click Pin
leppie23-Jun-03 11:20
leppie23-Jun-03 11:20 
GeneralRunning JavaScript from a Windows Form Pin
confusedCS23-Jun-03 9:10
confusedCS23-Jun-03 9:10 
GeneralCan't Generate Dataset from XSD Pin
Jarrett Vance23-Jun-03 6:06
Jarrett Vance23-Jun-03 6:06 
GeneralRe: Can't Generate Dataset from XSD Pin
leppie23-Jun-03 6:58
leppie23-Jun-03 6:58 
Questionmouse position relative to the whole screen? Pin
dazinith23-Jun-03 4:17
dazinith23-Jun-03 4:17 
AnswerRe: mouse position relative to the whole screen? Pin
Heath Stewart23-Jun-03 4:28
protectorHeath Stewart23-Jun-03 4:28 
GeneralDataGrid Quandries Pin
RB@Emphasys23-Jun-03 3:28
RB@Emphasys23-Jun-03 3:28 
GeneralRe: DataGrid Quandries Pin
Dimitris Iliopoulos23-Jun-03 12:02
Dimitris Iliopoulos23-Jun-03 12:02 
GeneralDialog Event? Refresh attempt. Pin
irishhokie23-Jun-03 2:58
irishhokie23-Jun-03 2:58 
This is probably an easy thing to do, but I can't figure out the syntax to save my life.WTF | :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!Big Grin | :-D



private void buttNew_Click(object sender, System.EventArgs e)
{
frmCreateProblemReport cpr = new frmCreateProblemReport(this.conns);
cpr.ShowDialog();

cmbPRNumber.Refresh();
}

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.