» 
A problem with my program
Hmm, is this in the right forum? I couldn't figure out which one it would go in so I guessed... What's up with all the changes?
Anyway, my problem is puting a funtion in a label.
The Function is
Private Function CalculateTotal (ByRef dblPrice as Double, ByRef dblQuantity as Double) As Double
CalculateTotal = dblPrice * dblQuantity
End Function
lblTotal.text = CalculateTotal
Under the "CalculateTotal" it gives me squiglies that says "Arguements not specified for paramiter for dblQuantity." What's the problem?
|