Aug 27, 2002 #1 mwojo MIS Aug 27, 2002 1 US I would like to create a Command Button to take the current record that I am viewing in one form and print it out using another form. TIA Micheal
I would like to create a Command Button to take the current record that I am viewing in one form and print it out using another form. TIA Micheal
Aug 27, 2002 #2 Rolliee Programmer Jun 23, 2002 1,551 US If the field names are the same, you can use code like this. dim ar(20) as variant for i = 0 to 19 ar(i) = me.fields(i) next i use the docmd.openform ??..' check these out w/ the wizard docmd.???record acNewRecord for i = 0 to 19 me.fields(i) = ar(i) next i rollie@bwsys.net then to a Upvote 0 Downvote
If the field names are the same, you can use code like this. dim ar(20) as variant for i = 0 to 19 ar(i) = me.fields(i) next i use the docmd.openform ??..' check these out w/ the wizard docmd.???record acNewRecord for i = 0 to 19 me.fields(i) = ar(i) next i rollie@bwsys.net then to a