Click here to Skip to main content
15,913,722 members
Home / Discussions / C#
   

C#

 
AnswerRe: Validate Textbox only to accept numeric Pin
Martin#24-Jan-07 1:02
Martin#24-Jan-07 1:02 
AnswerRe: Validate Textbox only to accept numeric Pin
David Domingues24-Jan-07 1:27
David Domingues24-Jan-07 1:27 
AnswerRe: Validate Textbox only to accept numeric Pin
engsrini24-Jan-07 3:39
engsrini24-Jan-07 3:39 
Questionregular expression Pin
shweta.shrivastava24-Jan-07 0:31
shweta.shrivastava24-Jan-07 0:31 
QuestionNETtoCOM Pin
MozhdehQeraati24-Jan-07 0:15
MozhdehQeraati24-Jan-07 0:15 
AnswerRe: NETtoCOM Pin
Ed.Poore24-Jan-07 0:50
Ed.Poore24-Jan-07 0:50 
Questionmenu strip....... Pin
quiteSmart23-Jan-07 23:53
quiteSmart23-Jan-07 23:53 
AnswerRe: menu strip....... Pin
GunaChinna24-Jan-07 0:36
GunaChinna24-Jan-07 0:36 
This code works for me.

MenuStrip mainmenu;
ToolStripMenuItem File;
ToolStripMenuItem News;
ToolStripMenuItem Exit;

mainmenu = new MenuStrip();
File = new ToolStripMenuItem();
News = new ToolStripMenuItem();
Exit = new ToolStripMenuItem();

mainmenu.BackColor = Color.Red;
mainmenu.ForeColor = Color.Yellow;

File.BackColor = Color.Violet;
File.ForeColor = Color.Cyan;

News.BackColor = Color.DarkBlue;
News.ForeColor = Color.DarkGreen;

Exit.BackColor = Color.DarkViolet;
Exit.ForeColor = Color.DeepPink;

File.Text = "File";
News.Text = "News";
Exit.Text = "Exit";

File.DropDownItems.Add(News);
File.DropDownItems.Add(Exit);

mainmenu.Items.Add(File);

this.Controls.Add(mainmenu);
GeneralRe: menu strip....... Pin
quiteSmart24-Jan-07 0:43
quiteSmart24-Jan-07 0:43 
GeneralRe: menu strip....... Pin
quiteSmart24-Jan-07 1:42
quiteSmart24-Jan-07 1:42 
AnswerRe: menu strip....... Pin
samtam24-Jan-07 1:15
samtam24-Jan-07 1:15 
GeneralRe: menu strip....... Pin
quiteSmart24-Jan-07 1:52
quiteSmart24-Jan-07 1:52 
QuestionRemove Fixed Column from dataGridview1 Pin
M Riaz Bashir23-Jan-07 23:30
M Riaz Bashir23-Jan-07 23:30 
Questionhow to manage onmouseup event on IHTLDocument2? Pin
lulaleila23-Jan-07 22:53
lulaleila23-Jan-07 22:53 
QuestionPassing parameter to Property. Pin
M LN Rao23-Jan-07 22:44
M LN Rao23-Jan-07 22:44 
AnswerRe: Passing parameter to Property. Pin
jdkulkarni23-Jan-07 23:00
jdkulkarni23-Jan-07 23:00 
AnswerRe: Passing parameter to Property. Pin
Martin#23-Jan-07 23:18
Martin#23-Jan-07 23:18 
AnswerRe: Passing parameter to Property. Pin
Colin Angus Mackay23-Jan-07 23:30
Colin Angus Mackay23-Jan-07 23:30 
GeneralRe: Passing parameter to Property. Pin
Martin#23-Jan-07 23:49
Martin#23-Jan-07 23:49 
GeneralRe: Passing parameter to Property. [modified] Pin
aSarafian23-Jan-07 23:53
aSarafian23-Jan-07 23:53 
QuestionAxMSChart20Lib.AxMSChart Pin
GunaChinna23-Jan-07 22:26
GunaChinna23-Jan-07 22:26 
QuestionHow to Make combobox UnEditable in C#.Net Pin
aaraaayen23-Jan-07 20:40
aaraaayen23-Jan-07 20:40 
AnswerRe: How to Make combobox UnEditable in C#.Net Pin
Parwej Ahamad23-Jan-07 20:46
professionalParwej Ahamad23-Jan-07 20:46 
GeneralRe: How to Make combobox UnEditable in C#.Net Pin
aaraaayen23-Jan-07 20:58
aaraaayen23-Jan-07 20:58 
Questionok, now how do i add six " " into a string by multiplying it Pin
NZSmartie23-Jan-07 20:31
NZSmartie23-Jan-07 20:31 

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.