krishnanhemanth
Registered User.
- Local time
- Today, 12:33
- Joined
- Jun 12, 2009
- Messages
- 115
hi everybody
how to handle check box in a form where all textboxes are calculated
Let me explain
i have a form DELIVERY FORM in which i record material deliverd to customers on a day to day basis withrespect to a order no
i have another form called DELIVERY STATUS which shows all records pertaining to a order no.
In this form all the data come from the qry..there is no data entry
i have filedS QTY ORDERD and QTY DELIVERD
QTY ORDERD gets the value from the qry
QTY DELIVERD is a calculated field which sums all qty deliverd wrt order no
i Also have a check box called ORDER COMPLETE
I want this to be checked if QTY ORDERD = QTY DELIVERD
How can i triger this
what is the event required?
if me.qtyorderd = me.qtydeliverd then
me.ordercomplete = true
else
me.ordercomplete = false
the above code is not working for ... the following
form current
qtydeliverd after update
what could be wrong
please help
how to handle check box in a form where all textboxes are calculated
Let me explain
i have a form DELIVERY FORM in which i record material deliverd to customers on a day to day basis withrespect to a order no
i have another form called DELIVERY STATUS which shows all records pertaining to a order no.
In this form all the data come from the qry..there is no data entry
i have filedS QTY ORDERD and QTY DELIVERD
QTY ORDERD gets the value from the qry
QTY DELIVERD is a calculated field which sums all qty deliverd wrt order no
i Also have a check box called ORDER COMPLETE
I want this to be checked if QTY ORDERD = QTY DELIVERD
How can i triger this
what is the event required?
if me.qtyorderd = me.qtydeliverd then
me.ordercomplete = true
else
me.ordercomplete = false
the above code is not working for ... the following
form current
qtydeliverd after update
what could be wrong
please help