dwelsh
|
| Posted: 10/10/2002, 9:54 AM |
|
After adding code to a label for a BeforeShow event.
I cannot reference the label to change its value.
using code like so
PRTSQTY.Text = ( CHKINP.Text - INVQTY.Text )
does not seem to work.
What am i missing
Im using ASP/VB
|
|
|
 |
Nicole
|
| Posted: 10/11/2002, 7:10 AM |
|
Hello,
in CC put the code into form Before Show event:
fldPRTSQTY = (fldCHKINP - fldINVQTY )
in CCS put the code into form before Show Row event of field before show:
form_name.PRTSQTY.Value = form_name.CHKINP.Value - form_name.INVQTY.Value
|
|
|
 |
|