![]() |
Sergey Kornilov admin 4/29/2011 |
This code doesn't make much sense. The best idea is to print SQL query on the page first to see if it looks right. dbConnection.Execute "Exec SP_GetCustInfo " & values("SchID") & "," & values("CustID") |
B
|
beachldy author 4/29/2011 |
Thanks. That works on the form "after update", but using the button on the Edit form does not produce the change. Usually, in VB, I'd write code to refresh the screen after doing a SQL update. What code needs to be added to get the updated fields once the Stored Proc from SQL runs? |
![]() |
Sergey Kornilov admin 4/30/2011 |
You can add the following code to ClientAfter button event to reload the page: location.reload(); |