Line of code is:
BreakDown(Full As String, FName As String, PName As String, Ext As String) As Integer
took this from a tutorial so not sure what I'm doing wrong :/
thats a new function if it isn't obvious
Line of code is:
BreakDown(Full As String, FName As String, PName As String, Ext As String) As Integer
took this from a tutorial so not sure what I'm doing wrong :/
thats a new function if it isn't obvious
According to what I'm reading, the line of code is:
BreakDown(Full As String, FName As String, PName As String, Ext As String) As Integer
That should be:
Function BreakDown(Full As String, FName As String, PName As String, Ext As String) As Integer
Perhaps with a modifier before the word Function
, such as Private
or Public
. When the function code is complete, make sure you also have this line:
End Function