vb6 Declare an Array - Stack Overflow
I have this code : ' Option Explicit Public Function Clean(Text) On Error Resume Next ' Dim Chars As ????? Chars = Array("\", "/", ":", "*", "?", """", "", "|") For... ... Corrected version: Option Explicit Public Function Clean(ByVal Text As String) ...