R
Ronald S. Cook
I have a function in which I'm trying to make the parameter optional.
However, when I put Optional in front of ByVal below I get the error
"optional parameters cannot have structure types".
Public Function SelectPenType(ByVal PenTypeID As Guid) As DataSet Implements
IPen.SelectPenType
Any idea how I should be doing this?
Thanks,
Ron
However, when I put Optional in front of ByVal below I get the error
"optional parameters cannot have structure types".
Public Function SelectPenType(ByVal PenTypeID As Guid) As DataSet Implements
IPen.SelectPenType
Any idea how I should be doing this?
Thanks,
Ron