Setting an unbound text box value

  • Thread starter Thread starter Bill
  • Start date Start date
B

Bill

I've done something to inhibit the setting of
a un-bound text box whose format is "General
Number.

The text box, tbAccumulator, gets incremented
each time the PageFooter event fires.

Me.tbAccumulator = Me.tbAccumulator + intPgAccum

Debug shows: "null = null + 94"

At some point, I've done something to cause the
tbaccumulator to become null. I get a runtime
error if I attempt to initialize:

Me.tbAccumulator = 0

The tbAccumulator has been working just fine for
weeks. What could I have possibly done to cause
this?

Bill
 
Me.tbAccumulator = 0 statement was mistakenly
put in the Open event rather than Activate.

My post wasn't a fair question to begin with......
sorry.

Bill
 
Back
Top