Click here to Skip to main content
15,918,808 members
Home / Discussions / C#
   

C#

 
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 
GeneralRe: Dialog Event? Refresh attempt. Pin
dazinith23-Jun-03 4:09
dazinith23-Jun-03 4:09 
once you come back from the dialog you need to call whatever function you have which populates your combobox with values from your database..

something like:
private void buttNew_Click(object sender, System.EventArgs e)
{
  frmCreateProblemReport cpr = new frmCreateProblemReport(this.conns);
  if (cpr.ShowDialog() == DialogResult.OK)
    PopulateComboBox();
}

just make sure that since you are populating the combobox multiple times that the PopulateComboBox() function begins with:
cmbPRNumber.Items.Clear()


just because you call a dialog and you know what you want it to do with the data entered doesnt mean your other form will instantly reload everything.. you have to tell it to.. hope that helps..

still a newb.. cut me some slack :P
-dz
GeneralRe: Dialog Event? Refresh attempt. Pin
irishhokie23-Jun-03 7:04
irishhokie23-Jun-03 7:04 
GeneralAllowing/Disallowing Controls in the ToolBox Pin
Qarash23-Jun-03 2:52
Qarash23-Jun-03 2:52 
GeneralAdjusting Context Menu Positions Pin
venkatasundaram23-Jun-03 2:10
venkatasundaram23-Jun-03 2:10 
GeneralRe: Adjusting Context Menu Positions Pin
Kannan Kalyanaraman23-Jun-03 2:30
Kannan Kalyanaraman23-Jun-03 2:30 
GeneralCalling simple DOS Commands from C# Pin
STW23-Jun-03 0:00
STW23-Jun-03 0:00 
GeneralRe: Calling simple DOS Commands from C# Pin
Rocky Moore23-Jun-03 0:58
Rocky Moore23-Jun-03 0:58 
GeneralRe: Calling simple DOS Commands from C# Pin
STW23-Jun-03 5:57
STW23-Jun-03 5:57 
GeneralRichTextBox colouring Pin
S O S22-Jun-03 21:47
S O S22-Jun-03 21:47 
GeneralRe: RichTextBox colouring Pin
dynamic23-Jun-03 8:18
dynamic23-Jun-03 8:18 
GeneralRe: RichTextBox colouring Pin
S O S23-Jun-03 10:40
S O S23-Jun-03 10:40 
Questionhow to raise a mouse event in axWebBrowsser control Pin
benzite22-Jun-03 20:54
benzite22-Jun-03 20:54 
GeneralC# vs. C++ Pin
untwisted22-Jun-03 19:09
untwisted22-Jun-03 19:09 
GeneralRe: C# vs. C++ Pin
J. Dunlap22-Jun-03 20:13
J. Dunlap22-Jun-03 20:13 
GeneralRe: C# vs. C++ Pin
untwisted22-Jun-03 20:20
untwisted22-Jun-03 20:20 
GeneralRe: C# vs. C++ Pin
J. Dunlap22-Jun-03 21:03
J. Dunlap22-Jun-03 21:03 
GeneralRe: C# vs. C++ Pin
untwisted22-Jun-03 21:08
untwisted22-Jun-03 21:08 
GeneralRe: C# vs. C++ Pin
Rocky Moore22-Jun-03 23:47
Rocky Moore22-Jun-03 23:47 

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.