I have a button that when pressed displays all the customers in the table. Other buttons are used to add or delete a customer record, or upload a batch of numbers. How can I fire the Click event of the View button after the Add or Delete buttons code has been executed? For example, this is the code for the Upload button

Private Sub btnImport_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnImport.Click
     AddBatch(LocationCode, filename)
     BuildScript()
     SaveScript()
     UploadScript()
 End Sub

I want the code that is in my view button to execute after my UploadScript() Sub. Any ideas?

Recommended Answers

All 2 Replies

Hi,

Add the below code within your sub where xxx is the name of the button you want to click:
xxx.PerformClick()

Perfect! Thanks a lot!

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.