View Single Post
Join Date: Sep 2006
Posts: 90
Reputation: bajanpoet is an unknown quantity at this point 
Solved Threads: 0
bajanpoet bajanpoet is offline Offline
Junior Poster in Training

Getting a button's code to run programatically

 
0
  #1
Sep 12th, 2007
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

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

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