Need help finding where a text box value is coming from.
I tried to find on the text box name but it does not seem anywhere in code to be assigning anything to it. Like I am looking for txtSPath.text = @"\path\etc"
The path in this text box changes on clicking a row in a DataGridView control. Would that be an on selection_change event or what. I could not see it on selection change anywhere either.
Really another way to find when it is puting the wrong path in the text box is to add a watch to the txt.text value. Is this possible? I know you can set watches for variables But to catch when a textbox.text value changes?
Thanks in advance
I tried to find on the text box name but it does not seem anywhere in code to be assigning anything to it. Like I am looking for txtSPath.text = @"\path\etc"
The path in this text box changes on clicking a row in a DataGridView control. Would that be an on selection_change event or what. I could not see it on selection change anywhere either.
Really another way to find when it is puting the wrong path in the text box is to add a watch to the txt.text value. Is this possible? I know you can set watches for variables But to catch when a textbox.text value changes?
Thanks in advance