Open form in Word

  • Thread starter Thread starter Michael E Phillps
  • Start date Start date
M

Michael E Phillps

Look friend, I'm not a programmer I'm a system administrator setting in
Barrow friggin' Alaska which is just north of no place. All I'm trying to do
it place a command button on an Access intake form which will make it print
to a word document. So no I'm not sure as to how to make it run outside of
the application. At this point in time I would almost kill to have a
programmer in the area, but the closest one to me is about 800 by Air; and
that's the only way in here.
So if you a suggestion I would be much in your debt.
Mike
 
Place a "breakpoint" in your VBA code on the line starting with "Set". To do
this, highlight that line and press F9 ... you should see a red dot in the
margin of your code, and your code should be shown with a red box. Now run
your code. When your code gets to the breakpoint, it will stop and highlight
that line. You are now in "break" mode. Press F8 to step through your code
line by line and determine where the error occurs.

Assuming your references are correct, your code should run. Make sure you
don't have other reference problems (go to Tools - References and make sure
none are marked "MISSING").
 
Back
Top