I while ago I downloaded a VB demo that had an Ascii function:
It wasn't working properly on my NT4 workstation so I wrote to the author and he replied back instructing me to change the A to a W to change it from Ascii from Unicode - that fixed the problem.
My question is... if I distribute a program based on this code, would I have to have both an A and W version? If so, is there any way to detect whether to call it as ascii or unicode ??? Seemingly the A version works on the authors system while the W version works on mine
I've never really had to call any unicode APIs before other than that one, so any insight to this is very much appreciated
------------------
Code:
Public Function IShellExecuteHook[b]A[/b]_Execute(ByVal This As Object, pei As shlext.SHELLEXECUTEINFO2) As Long
My question is... if I distribute a program based on this code, would I have to have both an A and W version? If so, is there any way to detect whether to call it as ascii or unicode ??? Seemingly the A version works on the authors system while the W version works on mine
I've never really had to call any unicode APIs before other than that one, so any insight to this is very much appreciated
------------------
Comment