-
Unicode...
the damn strconv function doesnt allow you to convert to unicode anymore, so I need a new solution. Im using the
Code:
Declare Auto Function NetScheduleJobAdd Lib "netapi32.dll" (ByVal Servername As String, ByVal Buffer As Object, ByVal Jobid As Integer) As Long
api. The problem is...the servername needs to be unicode encoded in order to function properly. I need to take a regular string and convert it to unicode. Can anyone help?
-
I think to problem is solved if you change
Declare Auto Function
to
Declare Unicode Function
-
Nope, that wont do it. I need to pass a unicode formatted string to it.