views:

115

answers:

1

I want to show a MS Word environment in an Iframe without all the toobars. The document that is being showed contains input fields. After these fields are filled in, the document must be printed. I have created the print button and want the (filled in) document printed when this button is clicked.

I hope you understand want I want and hope you can help out.

A: 

I think this link may be the answer to your question.

SleepyCod
Can you tell how this ActiveX component can help? I don't see how to disable the menubar, toolbar and ribbon.
Martijn
Try this within your vbscript call.Dim oBar As CommandBar For Each oBar In Application.CommandBars If oBar.Visible Then oBar.Visible = FalseNext oBar
SleepyCod
I've tried this, but didn't work. I'm working with word 2007
Martijn