Click here to Skip to main content
15,898,222 members
Home / Discussions / C#
   

C#

 
AnswerRe: delete files from a directory Pin
Jim Conigliaro24-Oct-06 11:03
Jim Conigliaro24-Oct-06 11:03 
QuestionTransactions between layers Pin
Luis C. Lopez24-Oct-06 9:32
Luis C. Lopez24-Oct-06 9:32 
AnswerRe: Transactions between layers Pin
Dustin Metzgar24-Oct-06 9:46
Dustin Metzgar24-Oct-06 9:46 
GeneralRe: Transactions between layers Pin
Luis C. Lopez24-Oct-06 10:01
Luis C. Lopez24-Oct-06 10:01 
QuestionShould I have outlook in order to show mht file in my c# application? Pin
AngryC24-Oct-06 7:47
AngryC24-Oct-06 7:47 
AnswerRe: Should I have outlook in order to show mht file in my c# application? Pin
Dave Kreskowiak24-Oct-06 8:11
mveDave Kreskowiak24-Oct-06 8:11 
AnswerRe: Should I have outlook in order to show mht file in my c# application? Pin
bradsnobar24-Oct-06 8:43
bradsnobar24-Oct-06 8:43 
QuestionMessagebox pop up behind mainform Pin
bradsnobar24-Oct-06 7:34
bradsnobar24-Oct-06 7:34 
I have a custom control that I has embedded controls.
When I show a messagebox, the messagebox shows up behind the form.
Topmost on the form is set to false.
OpenFileDialog works as it is supposed to, why not messagebox?
Any ideas?

private void button13_Click_1(object sender, EventArgs e)
{
  item i = new item();
  Button b = new Button();
  b.Text = "hello";
  b.Click += new EventHandler(b_Click);
  subItem s = new subItem("hello");

  s.EmbeddedControl = b;
  i.SubItems.Add(s);

  this.myListView1.Items.Add(i);
}

void b_Click(object sender, EventArgs e)
{
  //using (OpenFileDialog dlg = new OpenFileDialog())
  //{
  // dlg.ShowDialog(this);
  //}
  MessageBox.Show(this, "hello");
}
AnswerRe: Messagebox pop up behind mainform Pin
engsrini24-Oct-06 18:53
engsrini24-Oct-06 18:53 
QuestionTranslating key codes to a System.Windows.Forms.Keys value. Pin
Shy Agam24-Oct-06 6:25
Shy Agam24-Oct-06 6:25 
AnswerRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Ed.Poore24-Oct-06 6:32
Ed.Poore24-Oct-06 6:32 
GeneralRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Shy Agam24-Oct-06 6:48
Shy Agam24-Oct-06 6:48 
GeneralRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Ed.Poore24-Oct-06 12:08
Ed.Poore24-Oct-06 12:08 
GeneralRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Ed.Poore24-Oct-06 12:09
Ed.Poore24-Oct-06 12:09 
GeneralRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Shy Agam24-Oct-06 12:43
Shy Agam24-Oct-06 12:43 
GeneralRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Ed.Poore24-Oct-06 13:06
Ed.Poore24-Oct-06 13:06 
GeneralRe: Translating key codes to a System.Windows.Forms.Keys value. Pin
Shy Agam24-Oct-06 13:19
Shy Agam24-Oct-06 13:19 
Questionodbcdatareader hangs on close Pin
BlackDice24-Oct-06 5:19
BlackDice24-Oct-06 5:19 
AnswerRe: odbcdatareader hangs on close Pin
ednrgc24-Oct-06 6:27
ednrgc24-Oct-06 6:27 
GeneralRe: odbcdatareader hangs on close Pin
BlackDice24-Oct-06 6:47
BlackDice24-Oct-06 6:47 
GeneralRe: odbcdatareader hangs on close Pin
ednrgc24-Oct-06 6:54
ednrgc24-Oct-06 6:54 
GeneralRe: odbcdatareader hangs on close Pin
BlackDice24-Oct-06 8:33
BlackDice24-Oct-06 8:33 
GeneralRe: odbcdatareader hangs on close Pin
ednrgc24-Oct-06 8:39
ednrgc24-Oct-06 8:39 
GeneralRe: odbcdatareader hangs on close Pin
BlackDice24-Oct-06 9:04
BlackDice24-Oct-06 9:04 
GeneralRe: odbcdatareader hangs on close Pin
BlackDice24-Oct-06 9:15
BlackDice24-Oct-06 9:15 

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.