remote-connections

Proxying HTTPS traffic through Fiddler fails for remote clients?

旧城冷巷雨未停 提交于 2019-12-12 10:39:35
问题 Started fiddler on one machine, enabled remote connections and HTTPs. When trying to open IE browser on a remote machine (after configuring proxy settings manually) and trying to browse to https://www.gmail.com, I am getting the usual warning. When trying to "Continue to Web Site" I am getting a "Certificate error: Navigation failed". Everything works fine when Fiddler and the browser are running on the same machine. Any help would be appreciated. 回答1: You must configure the client machine to

Code to execute when ActiveWorkbook.Connections(“x”).Refresh is finished

梦想与她 提交于 2019-12-08 06:38:30
问题 select data from external source I have a data connection that retreives data using a select query from SQL-server into an Excel sheet using vba code like this: With ActiveWorkbook.Connections("x"). _ OLEDBConnection .BackgroundQuery = True .CommandText = Array( _ "SELECT ... FROM ... ... ActiveWorkbook.Connections("x").Refresh linked pivot table to imported data needs to be refreshed as well However as far as I can tell ActiveWorkbook.Connections("x").Refresh runs asynchonious and I want to

Code to execute when ActiveWorkbook.Connections(“x”).Refresh is finished

亡梦爱人 提交于 2019-12-06 19:31:32
select data from external source I have a data connection that retreives data using a select query from SQL-server into an Excel sheet using vba code like this: With ActiveWorkbook.Connections("x"). _ OLEDBConnection .BackgroundQuery = True .CommandText = Array( _ "SELECT ... FROM ... ... ActiveWorkbook.Connections("x").Refresh linked pivot table to imported data needs to be refreshed as well However as far as I can tell ActiveWorkbook.Connections("x").Refresh runs asynchonious and I want to execute code that runs after the refresh has finished, so that I can run this code: Private Sub