Click here to Skip to main content
15,891,136 members
Home / Discussions / C#
   

C#

 
GeneralRe: string.remove doesn't work Pin
Zoltan Balazs17-Apr-08 5:58
Zoltan Balazs17-Apr-08 5:58 
GeneralRe: string.remove doesn't work Pin
Ravenet17-Apr-08 15:30
Ravenet17-Apr-08 15:30 
GeneralRe: string.remove doesn't work Pin
joie717017-Apr-08 18:23
joie717017-Apr-08 18:23 
GeneralRe: string.remove doesn't work Pin
Ravenet17-Apr-08 20:11
Ravenet17-Apr-08 20:11 
GeneralRe: string.remove doesn't work Pin
Zoltan Balazs17-Apr-08 20:05
Zoltan Balazs17-Apr-08 20:05 
QuestionHow to get network computers hostname without importing dll's Pin
Jordanwb16-Apr-08 9:53
Jordanwb16-Apr-08 9:53 
GeneralReflecting form controls in inherited user controls Pin
Thomas Wells16-Apr-08 8:23
Thomas Wells16-Apr-08 8:23 
QuestionMessageBox with a timer? Pin
Vertekal16-Apr-08 8:15
Vertekal16-Apr-08 8:15 
How would I add a timer to this? To keep things simple, I have a form with 1 button and 1 textbox. I have a messagebox that pops up when the textbox loses focus ... if the user clicks OK, it does something. However, if the user doesn't click OK within 3 seconds, I need the box to close and do something else. This is for a mobile app using .NETCF 3.5. Here's what I have so far in regards to the messagebox:

private void TextBox1_LostFocus(object sender, EventArgs e)<br />
{<br />
<br />
DialogResult result = MessageBox.show("message text","title",MessageBoxButtons.OK,MessageBoxIcon.None,MessageBoxDefaultButton.Button1):<br />
<br />
if (result == DialogResult.OK)<br />
  {<br />
    Button1.Focus();<br />
  }<br />
else<br />
  {<br />
  //Close messagebox and do some other things if 3 seconds have elapsed and OK was not clicked<br />
  }<br />
}


Any help would be appreciated! Thanks!
AnswerRe: MessageBox with a timer? Pin
Judah Gabriel Himango16-Apr-08 8:21
sponsorJudah Gabriel Himango16-Apr-08 8:21 
GeneralRe: MessageBox with a timer? Pin
Vertekal16-Apr-08 8:54
Vertekal16-Apr-08 8:54 
GeneralRe: MessageBox with a timer? Pin
Luc Pattyn16-Apr-08 8:36
sitebuilderLuc Pattyn16-Apr-08 8:36 
GeneralRe: MessageBox with a timer? Pin
Vertekal16-Apr-08 8:53
Vertekal16-Apr-08 8:53 
GeneralRe: MessageBox with a timer? Pin
Luc Pattyn16-Apr-08 9:00
sitebuilderLuc Pattyn16-Apr-08 9:00 
GeneralRe: MessageBox with a timer? Pin
Vertekal16-Apr-08 9:57
Vertekal16-Apr-08 9:57 
QuestionObject of type 'A' cannot be converted to type 'A' with own Control. Pin
Roland Bär16-Apr-08 7:33
Roland Bär16-Apr-08 7:33 
AnswerRe: Object of type 'A' cannot be converted to type 'A' with own Control. Pin
Judah Gabriel Himango16-Apr-08 8:19
sponsorJudah Gabriel Himango16-Apr-08 8:19 
GeneralRe: Object of type 'A' cannot be converted to type 'A' with own Control. Pin
Roland Bär20-Apr-08 23:31
Roland Bär20-Apr-08 23:31 
Generalsave data to application settings Pin
Razvan Dimescu16-Apr-08 5:38
Razvan Dimescu16-Apr-08 5:38 
GeneralRe: save data to application settings Pin
Alan N16-Apr-08 7:40
Alan N16-Apr-08 7:40 
Generalread write lock in C# Pin
George_George16-Apr-08 4:51
George_George16-Apr-08 4:51 
GeneralRe: read write lock in C# Pin
Zoltan Balazs16-Apr-08 9:07
Zoltan Balazs16-Apr-08 9:07 
GeneralRe: read write lock in C# Pin
George_George16-Apr-08 17:29
George_George16-Apr-08 17:29 
GeneralRe: read write lock in C# [modified] Pin
N a v a n e e t h16-Apr-08 18:21
N a v a n e e t h16-Apr-08 18:21 
GeneralRe: read write lock in C# Pin
Zoltan Balazs16-Apr-08 19:38
Zoltan Balazs16-Apr-08 19:38 
GeneralRe: read write lock in C# Pin
N a v a n e e t h16-Apr-08 19:54
N a v a n e e t h16-Apr-08 19:54 

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.