Jump to content

starting with visual basic

Go to solution Solved by madknight3,

It looks like your button events are unfinished. Incorrect parameters and no event handle

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click    ' Code hereEnd Sub

In the designer, you should just be able to double click on the button which is a shortcut for the click event method in code.

hi there, im starting with a simple visual basic program "hello world". used to create "hello""goodbye" clear and exit commands. i have setup the code and for some reason it wont work can someone tell me where i have gone wrong? i ama total code noob if you didnt notice. thanks in advance. screenshot shown attached.

post-16686-0-37215800-1412816900_thumb.p

Link to comment
https://linustechtips.com/topic/229916-starting-with-visual-basic/
Share on other sites

Link to post
Share on other sites

It looks like your button events are unfinished. Incorrect parameters and no event handle

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click    ' Code hereEnd Sub

In the designer, you should just be able to double click on the button which is a shortcut for the click event method in code.

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×