Click here to Skip to main content
15,902,114 members
Home / Discussions / C#
   

C#

 
QuestionCustom Pocket PC sync Pin
DaveyM6913-Nov-07 9:38
professionalDaveyM6913-Nov-07 9:38 
AnswerRe: Custom Pocket PC sync Pin
Vasudevan Deepak Kumar13-Nov-07 20:21
Vasudevan Deepak Kumar13-Nov-07 20:21 
GeneralRe: Custom Pocket PC sync Pin
DaveyM6913-Nov-07 22:59
professionalDaveyM6913-Nov-07 22:59 
QuestionUpdate, Delete On multi Tables Pin
mehrdadc4813-Nov-07 8:03
mehrdadc4813-Nov-07 8:03 
AnswerRe: Update, Delete On multi Tables Pin
Vasudevan Deepak Kumar13-Nov-07 20:23
Vasudevan Deepak Kumar13-Nov-07 20:23 
QuestionSearching an Item in a ComboBox and get its index Pin
Jonso13-Nov-07 6:33
Jonso13-Nov-07 6:33 
AnswerRe: Searching an Item in a ComboBox and get its index Pin
Ravi Bhavnani13-Nov-07 6:48
professionalRavi Bhavnani13-Nov-07 6:48 
GeneralRe: Searching an Item in a ComboBox and get its index Pin
Jonso13-Nov-07 10:27
Jonso13-Nov-07 10:27 
Thanks Ravi it worked

Below is the final code:

private void pnlDriverAddress_Enter(object sender, EventArgs e)
{
if (Mode == eMode.Add || Mode == eMode.Edit)
{
if (cmbDACountry.SelectedIndex == -1)
{
int nIndex = cmbDACountry.FindString(MDI.Country.ToString());
if (nIndex != -1)
{
cmbDACountry.SelectedIndex = nIndex;
cmbDACountry.Text = cmbDACountry.SelectedItem.ToString();
}
}
}
}
QuestionHow to create a full-fledged Browser and additional custom tool bar? Pin
Khoramdin13-Nov-07 6:24
Khoramdin13-Nov-07 6:24 
AnswerRe: How to create a full-fledged Browser and additional custom tool bar? Pin
Ravi Bhavnani13-Nov-07 6:40
professionalRavi Bhavnani13-Nov-07 6:40 
Questionscanner barcode Pin
SVb.net13-Nov-07 5:47
SVb.net13-Nov-07 5:47 
AnswerRe: scanner barcode Pin
DaveyM6913-Nov-07 7:26
professionalDaveyM6913-Nov-07 7:26 
GeneralRe: scanner barcode Pin
SVb.net13-Nov-07 22:10
SVb.net13-Nov-07 22:10 
AnswerRe: scanner barcode Pin
Vasudevan Deepak Kumar13-Nov-07 20:25
Vasudevan Deepak Kumar13-Nov-07 20:25 
QuestionCulture Pin
SVb.net13-Nov-07 5:38
SVb.net13-Nov-07 5:38 
QuestionHow to implement c# written app as Firefox plugin Pin
gordon2413-Nov-07 5:23
gordon2413-Nov-07 5:23 
AnswerRe: How to implement c# written app as Firefox plugin Pin
Judah Gabriel Himango13-Nov-07 5:57
sponsorJudah Gabriel Himango13-Nov-07 5:57 
GeneralRe: How to implement c# written app as Firefox plugin Pin
gordon2413-Nov-07 6:15
gordon2413-Nov-07 6:15 
GeneralRe: How to implement c# written app as Firefox plugin Pin
Judah Gabriel Himango13-Nov-07 8:19
sponsorJudah Gabriel Himango13-Nov-07 8:19 
GeneralRe: How to implement c# written app as Firefox plugin Pin
gordon2413-Nov-07 8:22
gordon2413-Nov-07 8:22 
AnswerRe: How to implement c# written app as Firefox plugin Pin
led mike13-Nov-07 5:58
led mike13-Nov-07 5:58 
QuestionTreeview nodes Pin
NewToAspDotNet13-Nov-07 5:17
NewToAspDotNet13-Nov-07 5:17 
AnswerRe: Treeview nodes Pin
Ravi Bhavnani13-Nov-07 6:42
professionalRavi Bhavnani13-Nov-07 6:42 
GeneralRe: Treeview nodes Pin
ckelker15-Nov-07 7:35
ckelker15-Nov-07 7:35 
Questionopen/move application to secondary display? Pin
adamdz13-Nov-07 5:12
adamdz13-Nov-07 5:12 

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.