I have an INI file that stores the selected radio box on exit. It's like:
[Settings] SearchWhat=RadioButtonName
When my form loads I am wanting to take that name and set it as checked. I tried:
Dim searchwhat = ini.ReadValue("settings", "searchwhat")
searchwhat.checked = True
But that returns the error: checked' is not a member of 'String'
That INI function gives the value but I can't figure out to "make it true"
MTIA