Click here to Skip to main content
15,900,378 members
Home / Discussions / C#
   

C#

 
GeneralRe: MDIParent, MDIChild and MDI..ermmm..GrandChild? (How to set the MDIParent on a form that is called through a child form?) Pin
DaveyM6913-Nov-07 7:43
professionalDaveyM6913-Nov-07 7:43 
GeneralRe: MDIParent, MDIChild and MDI..ermmm..GrandChild? (How to set the MDIParent on a form that is called through a child form?) Pin
MNantu13-Nov-07 21:12
MNantu13-Nov-07 21:12 
Questiondatagridview problem Pin
xenepp13-Nov-07 5:03
xenepp13-Nov-07 5:03 
Questiondatagridview checkbox not functioning Pin
arkiboys13-Nov-07 4:37
arkiboys13-Nov-07 4:37 
AnswerRe: datagridview checkbox not functioning Pin
led mike13-Nov-07 4:44
led mike13-Nov-07 4:44 
GeneralRe: datagridview checkbox not functioning Pin
arkiboys13-Nov-07 5:01
arkiboys13-Nov-07 5:01 
QuestionHow Do I Set a Combo Box Default Item? Pin
Jonso13-Nov-07 4:12
Jonso13-Nov-07 4:12 
AnswerRe: How Do I Set a Combo Box Default Item? Pin
Justin Perez13-Nov-07 4:23
Justin Perez13-Nov-07 4:23 
You could do it like this:

private void YourFormForm_Load(object sender, EventArgs e)
{
  // United States is this users default country, and the index for the US is 7, so set the
  // selected index to that of the united states.

  int defaultCountryIndex = 7;
  countryComobBox.SelectedIndex = defaultCountryIndex ;
}


"If an Indian asked a programming question in the forest, would it still be urgent?" - John Simmons / outlaw programmer

I get all the news I need from the weather report - Paul Simon (from "The Only Living Boy in New York")

GeneralRe: How Do I Set a Combo Box Default Item? Pin
Jonso13-Nov-07 4:53
Jonso13-Nov-07 4:53 
GeneralRe: How Do I Set a Combo Box Default Item? [modified] Pin
Justin Perez13-Nov-07 4:56
Justin Perez13-Nov-07 4:56 
QuestionListViewItem Transparent BackColor Pin
MWaqas Badar13-Nov-07 3:53
MWaqas Badar13-Nov-07 3:53 
AnswerRe: ListViewItem Transparent BackColor Pin
Judah Gabriel Himango13-Nov-07 4:13
sponsorJudah Gabriel Himango13-Nov-07 4:13 
QuestionHow to get the names of all classes wich are derived from a base class ? Pin
MarkPhB13-Nov-07 3:49
MarkPhB13-Nov-07 3:49 
AnswerRe: How to get the names of all classes wich are derived from a base class ? Pin
Judah Gabriel Himango13-Nov-07 4:08
sponsorJudah Gabriel Himango13-Nov-07 4:08 
AnswerRe: How to get the names of all classes wich are derived from a base class ? [modified] Pin
ss2013-Nov-07 4:30
ss2013-Nov-07 4:30 
GeneralRe: How to get the names of all classes wich are derived from a base class ? Pin
Scott Dorman13-Nov-07 12:28
professionalScott Dorman13-Nov-07 12:28 
Questionconverting image to bitmap Pin
dogmatic6913-Nov-07 3:36
dogmatic6913-Nov-07 3:36 
AnswerRe: converting image to bitmap Pin
Judah Gabriel Himango13-Nov-07 4:04
sponsorJudah Gabriel Himango13-Nov-07 4:04 
JokeRe: converting image to bitmap Pin
Not Active13-Nov-07 5:08
mentorNot Active13-Nov-07 5:08 
GeneralRe: converting image to bitmap Pin
Vasudevan Deepak Kumar13-Nov-07 20:28
Vasudevan Deepak Kumar13-Nov-07 20:28 
QuestionDisabling default context Menu Pin
Adnan Siddiqi13-Nov-07 3:19
Adnan Siddiqi13-Nov-07 3:19 
AnswerRe: Disabling default context Menu Pin
Judah Gabriel Himango13-Nov-07 4:04
sponsorJudah Gabriel Himango13-Nov-07 4:04 
GeneralRe: Disabling default context Menu Pin
Adnan Siddiqi13-Nov-07 5:53
Adnan Siddiqi13-Nov-07 5:53 
QuestionHow to convert to C# code Pin
Programm3r13-Nov-07 3:15
Programm3r13-Nov-07 3:15 
AnswerRe: How to convert to C# code Pin
Anthony Mushrow13-Nov-07 3:54
professionalAnthony Mushrow13-Nov-07 3: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.