Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am trying to determine the state of a particular set of controls, the states are stored in a text file, I have a function, below, which iterates round the text within the file and seperates out state(checked, in this case) to the unique value which identifies the control. The problem im having is that the function doesn't return after each iteration of my loop and It is necessarry that I do this because I aim to enable the check property of the corresponding control which I am searching for

   Public Function getControlState(ByVal file As String, ByVal identifier As String) As String

    Dim s As New IO.StreamReader(file)
    Dim result As String = ""

    Do While (s.Peek <> -1)
        Dim line As String = s.ReadLine
        If line.ToLower.StartsWith(identifier.ToLower & ":") Then
            result = line.Substring(identifier.Length + 2)
        End If
    Loop
    Return result
End Function

The function reads the text file line by line separating out the identifier from the state and assigns it to the variable "result"

The contents within the text file are:

checked: 0
checked: 2
checked: 4

The problem is it only returns the value 4, even though when watching the code during debug, I can see result being updated with 0, then 2, then 4, then as it reaches the end of the file, it simply returns 4. I tried moving the return result around within the loop, outside the loop, within the If statement, with mixed results, but not what I'm after

Another long winded question to what sounds an easy solution for most!

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.