How I can take the text of the button to use it like a resource name?
My try:
Public Sub LlamadaButton(ByVal sender As Object, ByVal e As System.EventArgs)
Dim ButtonN As Button = CType(sender, Button)
Dim ResourceName = ButtonN.Text
ReadDelimitedText(My.Resources._(ResourceName), ";") ' The problem: My.Resources._(ResourceName)
End Sub
Error: Identifier expected
Use the My.Resources.ResourceManager.GetString Method.