Click here to Skip to main content
15,887,683 members
Home / Discussions / C#
   

C#

 
QuestionCreate an entry in the left-click menu of word files Pin
Muhammad Nauman Yousuf14-Feb-07 3:56
Muhammad Nauman Yousuf14-Feb-07 3:56 
QuestionDeploy Font in Windows Application Pin
yesufollower14-Feb-07 3:28
yesufollower14-Feb-07 3:28 
AnswerRe: Deploy Font in Windows Application Pin
sharpiesharpie14-Feb-07 5:29
sharpiesharpie14-Feb-07 5:29 
GeneralRe: Deploy Font in Windows Application Pin
Martin#14-Feb-07 5:40
Martin#14-Feb-07 5:40 
QuestionFTP code Pin
Glau14-Feb-07 3:26
Glau14-Feb-07 3:26 
AnswerRe: FTP code Pin
sharpiesharpie14-Feb-07 4:09
sharpiesharpie14-Feb-07 4:09 
AnswerRe: FTP code Pin
Ed.Poore14-Feb-07 6:43
Ed.Poore14-Feb-07 6:43 
QuestionLooping Pin
Jim Warburton14-Feb-07 3:19
Jim Warburton14-Feb-07 3:19 
I am running through a list (named sublist in my code) of lines checking to see if any match where the user has clicked. At the moment I am using the following code which does work
bool test = false;
int hold;
int i =0;
while (!test && i < sublist.Count)
{
    test = sublist[i].DeleteLine(new Point(e.X, e.Y));
    if (test)
        hold = i;
    i++;
}

If there is a match I will delete the line from the list, so I need to know the location where the match occurred. I would like to just be able to use i, but either I get an out of bounds error or miss the last line in the array. I have looked at do/while with the same results. With for/foreach I either go through the whole list and still need to remember where the match occurred or use break which I understand is poor coding practice in a for loop.
My question is, is there a way to not have to use the variable hold with a do/while or while loop?
AnswerRe: Looping Pin
andyharman14-Feb-07 3:27
professionalandyharman14-Feb-07 3:27 
AnswerRe: Looping Pin
tarasp14-Feb-07 3:44
tarasp14-Feb-07 3:44 
AnswerRe: Looping Pin
tarasp14-Feb-07 3:48
tarasp14-Feb-07 3:48 
AnswerRe: Looping Pin
Luc Pattyn14-Feb-07 7:43
sitebuilderLuc Pattyn14-Feb-07 7:43 
Questionhow to get first 5 records from a dataset having 100 records Pin
romanchita14-Feb-07 2:33
romanchita14-Feb-07 2:33 
AnswerRe: how to get first 5 records from a dataset having 100 records Pin
Matglas14-Feb-07 2:41
Matglas14-Feb-07 2:41 
AnswerRe: how to get first 5 records from a dataset having 100 records Pin
ednrgc14-Feb-07 2:43
ednrgc14-Feb-07 2:43 
QuestionHow to make the text bold in richTextBox? Pin
frossie14-Feb-07 2:17
frossie14-Feb-07 2:17 
AnswerRe: How to make the text bold in richTextBox? Pin
Abisodun14-Feb-07 2:37
Abisodun14-Feb-07 2:37 
QuestionRichTextBox Problem Pin
Abisodun14-Feb-07 2:07
Abisodun14-Feb-07 2:07 
QuestionChanging the Form's and controlBox looks Pin
ThetaClear14-Feb-07 1:56
ThetaClear14-Feb-07 1:56 
AnswerRe: Changing the Form's and controlBox looks Pin
Mircea Puiu14-Feb-07 4:29
Mircea Puiu14-Feb-07 4:29 
GeneralRe: Changing the Form's and controlBox looks Pin
ThetaClear14-Feb-07 4:45
ThetaClear14-Feb-07 4:45 
GeneralRe: Changing the Form's and controlBox looks Pin
ThetaClear14-Feb-07 4:54
ThetaClear14-Feb-07 4:54 
AnswerRe: Changing the Form's and controlBox looks Pin
Martin#14-Feb-07 5:09
Martin#14-Feb-07 5:09 
GeneralRe: Changing the Form's and controlBox looks Pin
ThetaClear14-Feb-07 5:14
ThetaClear14-Feb-07 5:14 
QuestionHow to set an default button Pin
hiremath7114-Feb-07 1:55
hiremath7114-Feb-07 1:55 

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.