SteveDingle
Programmer
Heya All,
Just checking that I'm not doing something wrong. If you put the following in a PRG, then try to compile it into a DLL you should recieve a "Must specific additional parms.." error.
If I change the function header to the following, no error.
Is this expected behaviour?
Toodles,
Steve Dingle
D&S Business Solutions Ltd
Just checking that I'm not doing something wrong. If you put the following in a PRG, then try to compile it into a DLL you should recieve a "Must specific additional parms.." error.
Code:
DEFINE CLASS cusTest AS custom OLEPUBLIC
FUNCTION Test
PARAMETERS tcParm as Character
ENDFUNC
DIMENSION test_COMATTRIB[5]
test_COMATTRIB[ 1 ] = 0
test_COMATTRIB[ 2 ] = ""
test_COMATTRIB[ 3 ] = "test"
test_COMATTRIB[ 4 ] = "Logical"
test_COMATTRIB[ 5 ] = 1
ENDDEFINE
Code:
FUNCTION Test( tcParm )
Is this expected behaviour?
Toodles,
Steve Dingle
D&S Business Solutions Ltd