Pokouším se spustit kód makra, ale protože používám 64bitový Excel 2016, tento kód nefunguje. Prosím, pomozte mi, jak to opravit. V 32bitovém Exelu to funguje. Díky.
Private Declare Function MultiByteToWideChar Lib “kernel32” ( _
ByVal CodePage As Long, ByVal dwFlags As Long, _
ByVal lpMultiByteStr As String, ByVal cchMultiByte As Long, _
ByVal lpWideCharStr As String, ByVal cchWideChar As Long) As Long
Private Declare Function WideCharToMultiByte Lib “kernel32” ( _
ByVal CodePage As Long, ByVal dwFlags As Long, _
ByVal lpWideCharStr As String, ByVal cchWideChar As Long, _
ByVal lpMultiByteStr As String, ByVal cchMultiByte As Long, _
ByVal lpDefaultChar As String, ByVal lpUsedDefaultChar As Long) As Long
user25016601 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.