Hello everybody,
I have a report (invoice) I made module called "number2string" (int double) as string
My module takes the number and return to me the number written as string. Example number2string(4 )="four"
Every time I print out my reports I need the sum of [total] be written in a label called amountlabel.
I use this code it is working well when I open "Invoice" but not on printing out.
Where Do I have to put my code for each time we print out the invoice report the amountlabel will be filled automatically
NB: I tried to put it on page event and it is not working too.
Any suggestion about this subject.
CHEERS
WASSIM S DACCACHE
CCE
I have a report (invoice) I made module called "number2string" (int double) as string
My module takes the number and return to me the number written as string. Example number2string(4 )="four"
Every time I print out my reports I need the sum of [total] be written in a label called amountlabel.
I use this code it is working well when I open "Invoice" but not on printing out.
Code:
MsgBox [total] Me.amountlabel.Caption =number2string(total)
NB: I tried to put it on page event and it is not working too.
Any suggestion about this subject.
CHEERS
WASSIM S DACCACHE
CCE
Comment