getting wrong characters and "???" instead of Hebrew when trying to retrieve folder path from VBA (by user browse selection)then plot it with question marks
I've changed the locale and still happening.. is there any command to convert to UTF-8?
this is an example from recording macro from SOLIDWORKS that save as the opening file in a hebrew folder path (happening also in excel or every other app):
Dim swApp As ObjectDim Part as ObjectDim boolstatus As BooleanDim longstatus As Long, longwarnings As LongSub main() Set swApp = Application.SldWorks Set Part = swApp.ActiveDoc Save As longstatus = Part.SaveAs3("\\domain\users_profiles$\lila\Desktop\??? ????\models\FH-02-003.SLDASM", 0, 0)End Sub