[Solved] How to Add Private Function to a button in VB.NET [closed]


If you need the button to use this text, try somethin like:

Button1.Text = NewAward(73)

Is that what you want?

If you want to change the code that executes when the button is pressed:

Sub Button1Click(sender As Object, e As EventArgs) Handles Button1.Click
    'Your code
End Sub

2

solved How to Add Private Function to a button in VB.NET [closed]