paulthepaddy
Well-known member
hey guys i was using a sub routine like this
but now it wont let me use it, i must use it as
this happened after i did a format and reinstalled VS2010
any idea's? i tried messing with the rules but no luck
Private Sub discount(selectcar As car) lbl_Dis_add.Text = "Discount" Call selectcar.Calculate_SubTotal() selectcar.Discount = SSR_add_Minus.Value selectcar.Total = selectcar.Subtotal - selectcar.Discount Car_Price_Total.Value = selectcar.Total End Sub
but now it wont let me use it, i must use it as
Private Sub discount(ByVal selectcar As car) lbl_Dis_add.Text = "Discount" Call selectcar.Calculate_SubTotal() selectcar.Discount = SSR_add_Minus.Value selectcar.Total = selectcar.Subtotal - selectcar.Discount Car_Price_Total.Value = selectcar.Total End Sub
this happened after i did a format and reinstalled VS2010
any idea's? i tried messing with the rules but no luck
Last edited by a moderator: