Print Options dialog box

Tortus

New Member
Joined
May 8, 2007
Messages
26
I've searched everywhere looking for a way to bypass the print dialog/option box when printing .HTM files. I have a macro that opens hyperlinks and presses ctrl+p (SendKeys). This works and is great... except I still have to press the print button each time. I am so lazy I don't want to press that Print button!! I understand that what the dialog is doing, but I like the default settings... I just want my printer to start printing!
 
So I've created the piece that creates the folder - Now how do I copy and move that hyperlink file to the folder I created? So I'm using column A looking for TRUE (Based on a check box). If True then copy the file that is offset from the TRUE 6 to right. Should I create a new post for this question?
 
Upvote 0

Excel Facts

Can a formula spear through sheets?
Use =SUM(January:December!E7) to sum E7 on all of the sheets from January through December
Code:
  Dim lc As Range
  For Each lc In ActiveSheet.Range("A4:A" & Cells(Rows.Count, "A").End(xlUp).Row)
  If lc = "True" Then fso.copyfile (lc.Offset(0, 6).Address)
  Next lc

Something like this.. but not sure how to copy the file using the hyperlink.
 
Upvote 0

Forum statistics

Threads
1,225,738
Messages
6,186,734
Members
453,369
Latest member
juliewar

We've detected that you are using an adblocker.

We have a great community of people providing Excel help here, but the hosting costs are enormous. You can help keep this site running by allowing ads on MrExcel.com.
Allow Ads at MrExcel

Which adblocker are you using?

Disable AdBlock

Follow these easy steps to disable AdBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the icon in the browser’s toolbar.
2)Click on the "Pause on this site" option.
Go back

Disable AdBlock Plus

Follow these easy steps to disable AdBlock Plus

1)Click on the icon in the browser’s toolbar.
2)Click on the toggle to disable it for "mrexcel.com".
Go back

Disable uBlock Origin

Follow these easy steps to disable uBlock Origin

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back

Disable uBlock

Follow these easy steps to disable uBlock

1)Click on the icon in the browser’s toolbar.
2)Click on the "Power" button.
3)Click on the "Refresh" button.
Go back
Back
Top