Printing Forms and usage of the "Me"-variable

  • Thread starter Christofer Dutz
  • Start date
C

Christofer Dutz

Hi,

I am having a small Problem when printing Forms.
I have two ordinary String fields in my Access-DB which have to be
printed each letter in an individual box (looks like typed into boxes on
the form). I do this in the Froms Form_Current() Sub. Unfortunately I
found out that this Method is called for each Form that is printed but
the Me-Variable always has the value of the first data-entry for this
Form (the one that is beeing displayed when the user hits the Print-Button)

How can I reference the currently active data-row while printing?

Tanks in advance,

Chris
 
C

Christofer Dutz

Lynn said:
Well, since forms are designed for data entry and reports are designed for
printout, I would suggest that you use a report for what you are trying to
do. Could you give a little more detail about what you are trying to
accomplish?
I have to admit, that I can't remeber why I did it that way, but I had
some Problems that made me transform the Report into a Form. i was just
wondering why all form elements that are simply printed as-is come out
the way they should and the ones I set in the Funciton don't why is the
Function called for each data-row but the data provided is only the one
of the first ? Sort of doesn't make any sens to me :(

Chris
 
Top