You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
As suggested in the ticket at Microsoft I replaced the path in all functions depending on libc.dylib.
For example I replaced Private Declare PtrSafe Function web_popen Lib "libc.dylib" Alias "popen" (ByVal web_Command As String, ByVal web_Mode As String) As LongPtr
with Private Declare PtrSafe Function web_popen Lib "/usr/lib/libc.dylib" Alias "popen" (ByVal web_Command As String, ByVal web_Mode As String) As LongPtr
With that change it started working again.
No idea if Microsoft will fix this issue in a future version, but I would suggest to edit the paths.
What do you think?
Regards
Werner
The text was updated successfully, but these errors were encountered:
Ah, I see the issue. I actually downloaded 4.1.5 due to my too fast clicking on this screen I missed the 4.1.6 link. My eye missed that I just saw the Big Blue 4.1.5 section.
Hi all,
First of all thanks for this great tool!
My http webclient stopped working few days ago after updating to the new Mac office version. In the logs I found an error stating that the libc.dylib was not found at webclient execute.
This error is also documented here: https://answers.microsoft.com/en-us/msoffice/forum/all/libcdylib-not-found-in-mac-excel-2016-vba-code/91bba8a5-6179-445f-b097-fd9ea34971f6
As suggested in the ticket at Microsoft I replaced the path in all functions depending on libc.dylib.
For example I replaced
Private Declare PtrSafe Function web_popen Lib "libc.dylib" Alias "popen" (ByVal web_Command As String, ByVal web_Mode As String) As LongPtr
with
Private Declare PtrSafe Function web_popen Lib "/usr/lib/libc.dylib" Alias "popen" (ByVal web_Command As String, ByVal web_Mode As String) As LongPtr
With that change it started working again.
No idea if Microsoft will fix this issue in a future version, but I would suggest to edit the paths.
What do you think?
Regards
Werner
The text was updated successfully, but these errors were encountered: