hide buttons on userform when print it

leap out

Active Member
Joined
Dec 4, 2020
Messages
271
Office Version
  1. 2016
  2. 2010
hello
I have userform name's "frmprint" and I have many buttons (search,print , exit) what I would when print the userform hide any button
thanks in advance
 

Excel Facts

Show numbers in thousands?
Use a custom number format of #,##0,K. Each comma after the final 0 will divide the displayed number by another thousand
You should be able to place any number of buttons and use the command, specifying each button 3.

Be sure you make them visible again after printing.
 
Upvote 0
sorry logit , I'm too late to reply you I tested this code but unfortunately it shows the buttons when I print userform
may you correct my mistake , please ?
 
Upvote 0
Post your workbook to a cloud site so it can be downloaded. Post the link here.
No confidential data please.
 
Upvote 0
I am confused. Do you want to print the data located on the worksheet ?
If so, which worksheet ?

Or ... are you wanting to print the userform itself ?
 
Upvote 0
VBA Code:
Option Explicit

Private Sub CommandButton1_Click()
Dim RetStat
    CommandButton1.Visible = False
    RetStat = Application.Dialogs(xlDialogPrinterSetup).Show
    If RetStat Then Me.PrintForm
    Unload Me
End Sub
 
Upvote 0
Solution

Forum statistics

Threads
1,215,514
Messages
6,125,273
Members
449,219
Latest member
daynle

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