You can used If Else statement for checking Strings
If My.Settings.Something <> TextboxName.Text Then // to do if... ElseIf My.Settings.Something = TextboxName.Text Then // to do else if... ElseIf My.Settings.Something = 999 Then // to do else if... Else // to do else... End If
Depending on variable types you using in the settings you might need to use My.Settings.Something.ToString() instead of My.Settings.Something Additionally, it might be needed to first store the variable from the textbox into a variable of the right type.
Dim dblVar as Double dblVar = TextBoxName.Text
Markdown for AI
A clean, structured version of this page for AI assistants and LLMs.
We use cookies to ensure you have the best browsing experience on our website. By using our site, you
acknowledge that you have read and understood our
Cookie Policy &
Privacy Policy.
Can you answer this question?
Write Answer1 Answers