Hi Guys.. still trying to do this on my own but need help with below code.. im slowly getting there and loving it
(so wish I had discovered this stuff years ago, im actually enjoying my self while at work... :-) )
im not sure if ive got it queit right.. Basics:
I have a yes/no tick box [WireBound] once clicked
allows [WirePrice] box to calculate and to show:
[NumberOfBox] ( which user types in Number in "123" format)
times by (ExtraPricePerU nit) which is in another form, tbl or query
Private Sub WireBound_Click ()
End Sub
now it dosnt show anything in the box [WirePrice]
Should i place code in [WirePrice] and code [WireBound] something like
If True then goto [WirePrice] or place it all in a modual as I have 8 more chek boxes for this to work with..
As Always thanks in anticipation
Sal
(so wish I had discovered this stuff years ago, im actually enjoying my self while at work... :-) )
im not sure if ive got it queit right.. Basics:
I have a yes/no tick box [WireBound] once clicked
allows [WirePrice] box to calculate and to show:
[NumberOfBox] ( which user types in Number in "123" format)
times by (ExtraPricePerU nit) which is in another form, tbl or query
Private Sub WireBound_Click ()
If WireBound = True Then Val(WirePrice) = Val(NumberOfWir eBound) * Forms![frmExtras]!Val(ExtraPrice PerUnit)
End Sub
now it dosnt show anything in the box [WirePrice]
Should i place code in [WirePrice] and code [WireBound] something like
If True then goto [WirePrice] or place it all in a modual as I have 8 more chek boxes for this to work with..
As Always thanks in anticipation
Sal
Comment