Click here to Skip to main content
15,899,475 members
Home / Discussions / C#
   

C#

 
AnswerRe: WIndows XML Pin
blackjack215027-Mar-07 23:26
blackjack215027-Mar-07 23:26 
GeneralRe: WIndows XML Pin
7127-Mar-07 23:30
7127-Mar-07 23:30 
GeneralRe: WIndows XML Pin
blackjack215028-Mar-07 0:09
blackjack215028-Mar-07 0:09 
QuestionHyperlink in textbox Pin
mark_w_27-Mar-07 23:04
mark_w_27-Mar-07 23:04 
AnswerRe: Hyperlink in textbox Pin
mark_w_27-Mar-07 23:23
mark_w_27-Mar-07 23:23 
QuestionMDI form Pin
sinosoidal27-Mar-07 22:57
sinosoidal27-Mar-07 22:57 
AnswerRe: MDI form Pin
Pete O'Hanlon27-Mar-07 23:37
mvePete O'Hanlon27-Mar-07 23:37 
GeneralRe: MDI form Pin
sinosoidal27-Mar-07 23:41
sinosoidal27-Mar-07 23:41 
<code

this is="" my="" main:

static="" void="" main()
="" {
="" application.enablevisualstyles();
="" application.setcompatibletextrenderingdefault(false);
="" application.run(new="" coordinator());
="" }
<="" code="">

This is the event code for the new document button:
<code>
private void ShowNewForm(object sender, EventArgs e)
{
// Create a new instance of the child form.
Form childForm = new Form();
// Make it a child of this MDI form before showing it.
childForm.MdiParent = this;
childForm.Text = "Window " + childFormNumber++;
childForm.Show();
}

GeneralRe: MDI form Pin
sinosoidal28-Mar-07 0:08
sinosoidal28-Mar-07 0:08 
GeneralRe: MDI form Pin
Pete O'Hanlon28-Mar-07 1:23
mvePete O'Hanlon28-Mar-07 1:23 
QuestionHow to use HTMLBROWSER to display the body of an email Pin
kev.net27-Mar-07 22:45
kev.net27-Mar-07 22:45 
AnswerRe: How to use HTMLBROWSER to display the body of an email Pin
mark_w_27-Mar-07 23:00
mark_w_27-Mar-07 23:00 
QuestionRemoting Thread Queue Pin
Alper Camel27-Mar-07 22:29
Alper Camel27-Mar-07 22:29 
AnswerRe: Remoting Thread Queue Pin
joon vh.28-Mar-07 3:54
joon vh.28-Mar-07 3:54 
Questionstyle for all application form C#.Net2005 Pin
Rasoul Heidari27-Mar-07 22:16
Rasoul Heidari27-Mar-07 22:16 
QuestionAbout MDI applications Pin
Raheem MA27-Mar-07 22:15
Raheem MA27-Mar-07 22:15 
AnswerRe: About MDI applications Pin
Muammar©27-Mar-07 22:48
Muammar©27-Mar-07 22:48 
AnswerRe: About MDI applications Pin
Pete O'Hanlon27-Mar-07 23:09
mvePete O'Hanlon27-Mar-07 23:09 
AnswerRe: About MDI applications Pin
jack_claudine27-Mar-07 23:39
jack_claudine27-Mar-07 23:39 
QuestionFlash style for C#.net 2005 Pin
Rasoul Heidari27-Mar-07 22:12
Rasoul Heidari27-Mar-07 22:12 
QuestionDon't open files when loading a project Pin
WillemM27-Mar-07 22:01
WillemM27-Mar-07 22:01 
AnswerRe: Don't open files when loading a project Pin
jack_claudine27-Mar-07 23:44
jack_claudine27-Mar-07 23:44 
QuestionVoice over modem - HOWTO Pin
logicon27-Mar-07 21:58
logicon27-Mar-07 21:58 
QuestionXML writing problem Pin
JacquesDP27-Mar-07 21:53
JacquesDP27-Mar-07 21:53 
AnswerRe: XML writing problem Pin
darkcalin27-Mar-07 22:14
darkcalin27-Mar-07 22:14 

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.