You can disable the button 2 ways that I can think of. First one method is when you click the button in its properties there will be one called (Enabled) set it to false and it will start the application with the button disabled.

The second method is clicking the form twice which will give you a form_load and inside this method you add button3.Enabled = false; This will run when the application loads and will disable your button at the beginning.