Vb Compile Expected error: list separator or)
1 answer
As per what I'm reading, the line of code:
BreakDown(Full As String, FName As String, PName As String, Ext As String) As Integer
It should be:
Function BreakDown(Full As String, FName As String, PName As String, Ext As String) As Integer
Perhaps with a modifier before a word Function
, such as Private
or Public
. When the function code is complete, make sure you also have this line:
End Function
+1
source to share