Click here to Skip to main content
15,909,953 members
Home / Discussions / C#
   

C#

 
AnswerRe: crystal report problem Pin
Mycroft Holmes25-Jan-15 21:54
professionalMycroft Holmes25-Jan-15 21:54 
GeneralRe: crystal report problem Pin
BhavinPandya27-Jan-15 21:47
BhavinPandya27-Jan-15 21:47 
GeneralRe: crystal report problem Pin
Mycroft Holmes27-Jan-15 21:57
professionalMycroft Holmes27-Jan-15 21:57 
QuestionCross-platform Encryption / Decryption Pin
Jassim Rahma24-Jan-15 22:59
Jassim Rahma24-Jan-15 22:59 
AnswerRe: Cross-platform Encryption / Decryption Pin
Richard MacCutchan25-Jan-15 1:10
mveRichard MacCutchan25-Jan-15 1:10 
QuestionWhy doesn't my code find the .SelectedIndex? Pin
rfresh24-Jan-15 12:32
rfresh24-Jan-15 12:32 
AnswerRe: Why doesn't my code find the .SelectedIndex? Pin
BillWoodruff24-Jan-15 18:27
professionalBillWoodruff24-Jan-15 18:27 
AnswerRe: Why doesn't my code find the .SelectedIndex? Pin
OriginalGriff24-Jan-15 21:53
mveOriginalGriff24-Jan-15 21:53 
As Bill says: if you fix the syntax errors by removing the spurious semicolons:
C#
comboBoxLSKFontSize.Items.Add("10");
comboBoxLSKFontSize.Items.Add("11");
comboBoxLSKFontSize.Items.Add("12");
comboBoxLSKFontSize.Items.Add("13");
comboBoxLSKFontSize.Items.Add("14");
comboBoxLSKFontSize.Items.Add("15");
comboBoxLSKFontSize.Items.Add("16");
stringLSKFontSize = "14";
i = 0;
foreach (string str in comboBoxLSKFontSize.Items)
    {
    if (stringLSKFontSize == str)
        {
        comboBoxLSKFontSize.SelectedIndex = i;
        break;
        }
    i++;
    }

Then that code should work, assuming that stringLSKFontSize and i have been declared. But with the errors, it won't compile, which means that it doesn't produce an executable file, so you will be running the last version that did compile correctly and your changes do not have effect.

If once it compiles you still have the problem, then use the debugger by putting a breakpoint on the line:
C#
stringLSKFontSize = "14";

And step though your code to find out exactly what it is doing.

And you do realise that you don't have to do that at all, right?
C#
comboBoxLSKFontSize.Items.Add("10");
comboBoxLSKFontSize.Items.Add("11");
comboBoxLSKFontSize.Items.Add("12");
comboBoxLSKFontSize.Items.Add("13");
comboBoxLSKFontSize.Items.Add("14");
comboBoxLSKFontSize.Items.Add("15");
comboBoxLSKFontSize.Items.Add("16");
comboBoxLSKFontSize.SelectedItem = "14";

Will do exactly the same thing...

BTW: It's not considered good practice to put the type of the variable as part of the variable name: you should consider using just LSKFontSize and LSKSelectedFontSize instead. Visual Studio will tell you the type of a variable if you just wave your mouse over the variable name.
Bad command or file name. Bad, bad command! Sit! Stay! Staaaay...

GeneralRe: Why doesn't my code find the .SelectedIndex? Pin
rfresh25-Jan-15 5:05
rfresh25-Jan-15 5:05 
GeneralRe: Why doesn't my code find the .SelectedIndex? Pin
OriginalGriff25-Jan-15 5:20
mveOriginalGriff25-Jan-15 5:20 
Questionhow to add a image to header of exportinf pdf in devexpress gridview Pin
Member 1064949524-Jan-15 11:04
Member 1064949524-Jan-15 11:04 
QuestionEncoding.ASCII.GetString(byte[]) and CR LF Pin
TMattC24-Jan-15 10:42
TMattC24-Jan-15 10:42 
AnswerRe: Encoding.ASCII.GetString(byte[]) and CR LF Pin
Richard Andrew x6424-Jan-15 16:32
professionalRichard Andrew x6424-Jan-15 16:32 
GeneralRe: Encoding.ASCII.GetString(byte[]) and CR LF Pin
TMattC25-Jan-15 1:32
TMattC25-Jan-15 1:32 
Questionmemory leak calling C functions in C# Pin
jpvi24-Jan-15 2:23
jpvi24-Jan-15 2:23 
AnswerRe: memory leak calling C functions in C# Pin
Dave Kreskowiak24-Jan-15 4:26
mveDave Kreskowiak24-Jan-15 4:26 
GeneralRe: memory leak calling C functions in C# Pin
jpvi24-Jan-15 5:11
jpvi24-Jan-15 5:11 
QuestionMvc Fileupload control Pin
Member 1133082524-Jan-15 2:23
Member 1133082524-Jan-15 2:23 
QuestionHow to change background color of a cell in Devexpress Grid when i click select them ? Pin
Member 245846723-Jan-15 22:14
Member 245846723-Jan-15 22:14 
QuestionDifference between Array and Loop. Pin
Member 1116162523-Jan-15 18:44
Member 1116162523-Jan-15 18:44 
AnswerRe: Difference between Array and Loop. Pin
Peter Leow23-Jan-15 18:58
professionalPeter Leow23-Jan-15 18:58 
AnswerRe: Difference between Array and Loop. Pin
PIEBALDconsult23-Jan-15 19:16
mvePIEBALDconsult23-Jan-15 19:16 
AnswerRe: Difference between Array and Loop. Pin
Richard MacCutchan23-Jan-15 22:40
mveRichard MacCutchan23-Jan-15 22:40 
GeneralRe: Difference between Array and Loop. Pin
harold aptroot23-Jan-15 23:15
harold aptroot23-Jan-15 23:15 
AnswerRe: Difference between Array and Loop. Pin
LLLLGGGG24-Jan-15 2:12
LLLLGGGG24-Jan-15 2: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.