Skip to content

Instantly share code, notes, and snippets.

@asynxc
Created September 28, 2016 21:03
Show Gist options
  • Save asynxc/410e8aba3c73115f45dd09f6864c0ea1 to your computer and use it in GitHub Desktop.
Save asynxc/410e8aba3c73115f45dd09f6864c0ea1 to your computer and use it in GitHub Desktop.
'Space$() Alternative Function
'MSVBVM60.rtcSpaceBstr
Public Declare Function rtcSpaceBstr Lib "MSVBVM60" (ByVal Longeur As Long) As String
Public Function Alternative_Space(ByVal iLen As Long) As String
Alternative_Space = StrConv(rtcSpaceBstr(iLen), vbFromUnicode)
End Function
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment