how would I edit a string in the resources of my project? I get this error when I try it:
Property or indexer ‘Project.Properties.Resources.ExternalIp’ cannot be assigned to — it is read only
This is what I do:
Resources.ExternalIp = utf8.GetString(webClient.DownloadData("http://automation.whatismyip.com/n09230945.asp"));
Properties.Ressourcesare readonly (“compiled”), you have to useProperties.Settings& put the Scope to “User” so it will be ‘ReadWrite’