Hello,
I'm probably being stupid (staring at the screen too long!) but here's my problem....
I have created a subroutine in a module called Transfer_Batch with a number of arguments. When I try to call this sub from another it brings up the error "Compile Error: Expected(" I don;t get it! Here's the sub I'm trying to call
and here's how i'm trying to call it......
Am I being really dumb?
Cheers,
Ben
I'm probably being stupid (staring at the screen too long!) but here's my problem....
I have created a subroutine in a module called Transfer_Batch with a number of arguments. When I try to call this sub from another it brings up the error "Compile Error: Expected(" I don;t get it! Here's the sub I'm trying to call
Code:
Public Sub Transfer_Batch(Exam As String, UCN As String, P2UCN As String, UID As String, Computer As String)
Code:
Call Transfer_Batch (strExam, strUCN, strP2UCN, strUID, strComp)
Cheers,
Ben
Comment