Results 1 to 3 of 3

Thread: Running String Search Count?

Threaded View

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2012
    Posts
    4

    Running String Search Count?

    Had this issue I was wondering about. This is what it actually DOES then Ill say what I want it to DO. It grabs the word from a notepad I have saved in the directory, and brings it forward onto a form in designated area's and after whoever is done with the word and definition. It'll tell you how many times it's been looked up. Problem is the count applies NOT to the individual words as I'd have liked but EVERY word that has been searched for in the session.: Here's a snip-it
    Code:
     try
                        {
                            WordList = Word.Split('_');
                            WordListCount = Word.Split('_');
    
                            if (WordFound == true)
                            {
                                MessageBox.Show("The word " + WordList[0] + " means" + WordList[1] + WordList[2]);
                                for (Clicks = 0; Clicks < 1; Clicks++)
                                {
                                    ClickCount = ClickCount + 1;
                                }
                                MessageBox.Show("The word " + WordList[0] + " has been searched for " + ClickCount + " time(s)");
                            }
                        }
    I would greatly appreciate any insight as to how to get the count to apply for each word individually. Either just within the session or, if possible, keep a constant running total of searched words.
    Last edited by Redwit; May 10th, 2012 at 05:45 PM. Reason: grammar nazis made me do it

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width