Ok I am having problems saving some button setups to the registry. In the button to save it to the registry I have this

SaveSetting App.Title, "Settings", "buttontag", pvarButton.Tag
SaveSetting App.Title, "Settings", "buttontooltiptext", pvarButton.ToolTipText
SaveSetting App.Title, "Settings", "buttoncaption", pvarButton.Caption

the pvarbutton stuff is some things I did to make the coding easier for some other stuff
in the load button i have this

On Error Resume Next
pvarButton.Tag = GetSetting(App.Title, "Settings", "buttontag")
On Error Resume Next
pvarButton.ToolTipText = GetSetting(App.Title, "Settings", "buttontooltiptext"
On Error Resume Next
pvarButton.ToolTipText = GetSetting(App.Title, "Settings", "buttoncaption"

but i do not see the problem in it
if you can help please do so