0

Today I continue to work with TextBox1_LastValue. In MSDN manuals is everything awesome, as always. I followed those instructions and had got a fail like shown below. This is in scopes of FormClosed event handler. How to do that writeable (not readonly)?

enter image description here

this is textBox1_LastValue itself.

enter image description here

Thanks in advance!

CodeNotFound
  • 22,153
  • 10
  • 68
  • 69
Msorich
  • 113
  • 1
  • 10

1 Answers1

1

You have to make this setting user- instead of application-scope. Then it's not readonly and you can save it.

How do I get around application scope settings being read-only?

Tim Schmelter
  • 450,073
  • 74
  • 686
  • 939
  • I considered that I needed app settings, not user. OK, first I'll try 'user' variant. We'll see... Yeahhh, I've got read of a fail, however last value is still not retaining...((( – Msorich Jun 28 '18 at 08:26