antdickens
Programmer
I have created a function called process, which is basically
Function ccard(cardnumber As String, amount As Integer, issuenumber As Integer, expires As Integer, validfrom As Integer, cashback As Integer, transtype As Integer) As String
#########
code here
###########
end function
I call this function from a onclick event with this line
transaction = process(cardnumber, amount, issuenumber, expires, validfrom, cashback)
i keep getting an error saying compile error
expected variable or procedure, not module
this is really baffling but i am sure it has a simple resolutioin.
thanks in advance
ant
Function ccard(cardnumber As String, amount As Integer, issuenumber As Integer, expires As Integer, validfrom As Integer, cashback As Integer, transtype As Integer) As String
#########
code here
###########
end function
I call this function from a onclick event with this line
transaction = process(cardnumber, amount, issuenumber, expires, validfrom, cashback)
i keep getting an error saying compile error
expected variable or procedure, not module
this is really baffling but i am sure it has a simple resolutioin.
thanks in advance
ant