Create PDF which does not allow to print

My customer would like to use smartform HR_ESS_PAYSLIP_TO_PDF. The requirement is to convert the payslip to PDF, not allow to print the PDF.
The <b>no print</b> information should be included in the document itself.
I know this is generally possible because there a converters which have these option, e.g. http://www.abxzone.com/abx_reviews/paragon6/article_p3.html see "security ranging".
How can I set this up using smartforms?
Kind regards
Marcus

HI Paulo,
Perhaps the Preview preference file is corrupted after the upgrade.
Delete this file.
com.apple.Preview.plist
/Users/YourName/Library/Preferences. Drag that file to the Trash, empty the Trash and restart your Mac.
See if that makes a difference.
Also, check the manufacture web site for your printer and see if there are any updates available for your printer model for compatibility with 10.6. That could be part of the problem.
Some users are having luck with reinstalling the software that originally came with their printers. If you do not have the disk, go to the web site and download the drivers for 10.5. They might work.
Carolyn

Similar Messages

  • JFrame which does not allow resizing (maximizing, minimizng)

    I want to develop a login frame which does not allow resizing (maximizing, minimizing as this does not make sense) and with 2 fields, JTextField and JPasswordField.
    The frame is developed but has the usual resizing handles.
    How to do?
    Many tks for any information.
    John Pashley

    Don't use a JFrame. Also, don't expect code like this again; I did it for fun.
    It requires your modification.
    * Title:        Login Screen<p>
    * Description:  Login Screen<p>
    * Class:        Login ScreenLoginScreen<p>
    * Copyright:    who cares<p>
    * Company:      who cares<p>
    * @author who cares
    * @version who cares
    import java.awt.*;
    import java.awt.event.*;
    import java.net.URL;
    import java.util.Vector;
    import java.io.File;
    import javax.swing.*;
    public class LoginScreen extends JDialog implements ActionListener, FocusListener
       private JTextField      name;
       private JPasswordField  password;
       private JButton         loginButton;
       private JButton         cancelButton;
       private JDialog         thisDialog = this;
       private ImageIcon       splashImage;
       private String          appTitle;
       private int             logCounter;
       public LoginScreen()
          super();
          this.toFront();
          setTitle("Login");
          addWindowListener(new WindowAdapter()
             public void windowClosing(WindowEvent e)
                    System.exit(0);
          getContentPane().setLayout(new BorderLayout());
          splashImage = new ImageIcon( getClass().getResource("images" + File.separator + "image.jpg")) );
          getContentPane().add(new JLabel(splashImage), "North");
          getContentPane().add(makeLoginPanel(), "Center");
          getContentPane().add(makeButtonPanel(), "South");
          pack();
          setResizable(false);
          setLocationRelativeTo(null);
          setVisible(true);
        * make login panel
       private JPanel makeLoginPanel()
          JPanel loginPanel = new JPanel();
          JLabel label;
          loginPanel.setBorder(BorderFactory.createEmptyBorder(20, 20, 0, 20));
          GridBagLayout gbl = new GridBagLayout();
          GridBagConstraints gbc = new GridBagConstraints();
          loginPanel.setLayout(gbl);
          gbc.weightx = 1.0;
          gbc.fill = GridBagConstraints.HORIZONTAL;
          gbc.insets = new Insets(0, 5, 10, 5);
          gbc.gridx = 0;
          gbc.gridy = 0;
          label = new JLabel("Login Name:", SwingConstants.LEFT);
          gbl.setConstraints(label, gbc);
          loginPanel.add(label);
          gbc.gridx = 1;
          name = new JTextField("insider", 10);
          name.addFocusListener(this);
          gbl.setConstraints(name, gbc);
          loginPanel.add(name);
          gbc.gridx = 0;
          gbc.gridy = 1;
          label = new JLabel("Password:", SwingConstants.LEFT);
          gbl.setConstraints(label, gbc);
          loginPanel.add(label);
          gbc.gridx = 1;
          password = new JPasswordField("insider",10);
          password.addFocusListener(this);
          gbl.setConstraints(password, gbc);
          loginPanel.add(password);
          return loginPanel;
        * make button panel
       private JPanel makeButtonPanel()
          JPanel buttonPanel = new JPanel();
          buttonPanel.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
          //make LogIn button
          loginButton = new JButton("Login");
          loginButton.setActionCommand("Login");
          buttonPanel.add(loginButton);
          rootPane.setDefaultButton(loginButton);
          loginButton.addActionListener(this);
          this.getRootPane().setDefaultButton(loginButton);
          //make Cancel button
          cancelButton = new JButton("Cancel");
          cancelButton.setActionCommand("Cancel");
          buttonPanel.add(cancelButton);
          cancelButton.addActionListener(this);
          this.addKeyListener(new KeyAdapter()
             public void keyReleased(KeyEvent e)
                if(e.getKeyCode() == KeyEvent.VK_ESCAPE)
                   cancelButton.doClick();
             return buttonPanel;
        * Action handler for login and cancel buttons
       public void actionPerformed(ActionEvent e)
          JButton btn = (JButton) e.getSource();
          if (btn.getActionCommand().equals("Login"))
             // Because login() process happens before swing process (above),
             // force it to happen "later"
             SwingUtilities.invokeLater(new Runnable()
                public void run()
                   login(); //create this method, okay?!
          else if (btn.getActionCommand().equals("Cancel"))
             System.exit(0);
        * Focus gained handler for username and password buttons
       public void focusGained(FocusEvent e)
          JTextField tf = (JTextField) e.getSource();
          tf.selectAll();
        * Focus lost handler for username and password buttons
       public void focusLost(FocusEvent e) {}
       private void showErrorMessage(String message, String header)
          JOptionPane.showMessageDialog(getContentPane(),
                                        message, header,
                                        JOptionPane.ERROR_MESSAGE);
        * This method controls the cursor for login window. If isWait is set to
        * true, dialog's cursor is set to Cursor.WAIT_CURSOR. If isWait is set
        * to false, the cursor is set ta Deafult.
        * While the window is in WAIT mode, this method will also disable Login
        * and Cancel buttons to ensure the user does not accidently request
        * a cancel while loging in or launching a second login.
       private void setWaitCursor(boolean isWait)
          /* In order to disable login and cancel buttons while logging in to the
             application, this method will temporarely change action commands and
             reset them when login process failed to give user another chance.
             Note: Disabling the buttons by calling setEnabled(false) did not work
             since login() method is called from an action event handler and the
             process will not be released to AWT until login method is complete.
          if (isWait)
             this.getGlassPane().setCursor(new Cursor(Cursor.WAIT_CURSOR));
             this.getGlassPane().setVisible(true);
             loginButton.setActionCommand("none");
             cancelButton.setActionCommand("none");
          else
             this.getGlassPane().setCursor(Cursor.getDefaultCursor());
             this.getGlassPane().setVisible(false);
             loginButton.setActionCommand("Login");
             cancelButton.setActionCommand("Cancel");
    } //end loginscreen

  • HT1766 I have a pop up about  Photo stream which does not allow me to click ignore or settings - nothing happens when pressed........I cannot click on anything - the screen seems to have frozen and having tried to turn off I cannot slide to turn off. Plea

    I have a pop up about  Photo stream which does not allow me to click ignore or settings - nothing happens when pressed........I cannot click on anything - the screen seems to have frozen and having tried to turn off I cannot slide to turn off. Please can e frozen and having tried to turn off I cannot slide to turn off. Please can you help

    Reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    Note: Data will not be affected.

  • Have Yahoo Mail Plus, which does not allow ads. When on my work computer and log into my Yahoo account, ads do appear?? This does not happen on Explorer. Help

    Have a Yahoo Mail Plus account, which does not allow for ads. It works fine on Explorer, but when used on Firefox the same ads always appear both at the top and left margins "Dr. Oz New Weight Loss Secret". Yahoo says it is a Firefox issue. Please help.

    another thing you can try is to [[Reset Firefox – easily fix most problems|reset firefox]].
    in case there are still adverts shown in places where they aren't supposed to be afterwards, it sounds like an issue with malware on the system. please run a full scan of your pc with the security software already in place and different tools like the [http://www.malwarebytes.org/products/malwarebytes_free free version of malwarebytes], [http://www.microsoft.com/security/scanner/default.aspx microsoft safety scanner] or [http://www.kaspersky.com/security-scan kaspersky security scan].
    [[Troubleshoot Firefox issues caused by malware]]

  • I have an old account with purchased songs in it,however I have a new account now which does not allow me to listen to this purchased music.I have tried changing the password but to no avail.Please help

    The problem is I have an old account from an old I-pod which is now broken.Well the I-pod has been binned.I have a new i-pod and have a new user name.I have tried to access the songs i purchased yeateryear on my old device but and this  is a but .....The new account will not allow me to access these older purchased songs. I cannot listen to them or burn them onto a cd.It throws up my old account user name in a window with a password request to access this material.I have changed my password several times however I still cannot access these purchased songs.

    iPods (that are not iPod touch) are not directly linked to any "account."  They are associated with your iTunes library.  The account in iTunes is your Apple ID, which is used to purchase and download content from the iTunes Store.  It lets the iTunes Store know who you are when you sign in.
    Songs that are currently sold by the iTunes Store do not use DRM (copy protection).  However, songs purchased during the earlier days of the iTunes Store do use DRM.  If you have such songs that were purchased using a previous Apple ID (not your current Apple ID), you need to authorize your computer for that previous Apple ID.
    Find one of the songs that does not play due to this problem.  Right-click on it in any iTunes list, and select Get Info.  On the song's Info window Summary tab, look for Apple ID.  That is the Apple ID used to purchase this song.
    From the iTunes menu bar, under Store, select Authorize This Computer.  In the dialog window that appears, enter that Apple ID used to make the old song purchases (plus password).  Do not enter your current Apple ID and password.  Click Authorize.
    The computer is now authorized for BOTH your old Apple ID and your current Apple ID.

  • Adobe Create pdf icon does not appear in Firefox 36.0.1

    I am using Windows 10 TP and have used Adobe Acrobat XI with Firefox for months now and have been able to click on the Adobe Icon on the FIrefox toolbar to convert web pages into an Acrobat file. In the last couple of weeks this icon has disappered but the following items still exist:-
    1. Under Options/Applications Portable Document Format (PDF) is still set to Use Adobe Acrobat (default)
    2. In the list of Add-ons I still have an entry Adobe Acrobat 11.0.10.32. This is the Adobe PDF Plug-in for Firefoc and Netscape.
    3. I have uninstalled ALL add-ons ansd re-installed but that does not resolve the problem
    4. I have uninstalled Firefox and re-installed it again but that does not resolve the problem
    Can you please offer any suggestions to resolve this problem?

    I forgot one detail. This happened while I was having trouble seeing the mouse cursor (I use Apple's Magic Mouse). It had disappeared briefly. I had to drag the cursor out of the Firefox Window for it to reappear. I accidentally entered full screen view while the cursor was not visible.

  • FF 6.0 does not terminates itself, "plugin-container.exe" keeps running which does not allow termination of process

    After up-graduation to FF 6.0, FF fails to terminate when closed via X button or through Exit options in Menu. It was found that ''plugin-container.exe'' does not terminate causing failure to terminate ''firefox.exe''. ''plugin-container.exe'' runs as a sub-process to ''firefox.exe''

    After up-graduation to FF 6.0, FF fails to terminate when closed via X button or through Exit options in Menu. It was found that ''plugin-container.exe'' does not terminate causing failure to terminate ''firefox.exe''. ''plugin-container.exe'' runs as a sub-process to ''firefox.exe''

  • PREVIEW does not allow to print

    - If you select all pages in a preview and try to print it prints only the first one.
    - If you add PDFs JPGs to a PREVIEW and SAVE it does only save first page.
    (those two problems are snow leopard related because i used to do it on leopard).
    Is anyone know those problems and have any clue how to resolve it?
    best regards,
    Paulo

    HI Paulo,
    Perhaps the Preview preference file is corrupted after the upgrade.
    Delete this file.
    com.apple.Preview.plist
    /Users/YourName/Library/Preferences. Drag that file to the Trash, empty the Trash and restart your Mac.
    See if that makes a difference.
    Also, check the manufacture web site for your printer and see if there are any updates available for your printer model for compatibility with 10.6. That could be part of the problem.
    Some users are having luck with reinstalling the software that originally came with their printers. If you do not have the disk, go to the web site and download the drivers for 10.5. They might work.
    Carolyn

  • What can I do to fix Mail software, which does not allow me to move messages around, save "drafts", receive or send messages?

    My "Mail" software looks to have become corrupted, as I can't move messages around, save "drafts", receive or send messages.  The problem occurred after my Mac crashed and was re-started. Any ideas on what can I do to fix this? Any good suggestions appreciated!

    The Mail program is probably not what is corrupted. That would be extremely difficult because it is not written back to disk. The problem is likely in your user data.
    You could check that by logging into a different account (make one if you don't) and set up Mail in that account. If it works fine in that account then you have a problem in your user data.
    To reinstall Mail, you'll have to get out your Snow Leopard install DVD and check if it is part of the Optional Installs. If it is not, you could use a program called Pacifist to extract the Mail installer. You'd then have to install the 10.6.7 combo Update to bring Mail up to current version.
    What are the permissions on your Mail folder? Post output of this command you run in Terminal (just copy and paste):
    ls -ale ~/Library/Mail
    ls is List. -a tells it to show hidden files/folder. l tells it to make a list with details. e tells it to list Access Control List entries.

  • When making a new playlist, the screen layout has changed, the playlist header is now on the left instead of the right, this does not allow me to drag the songs onto the playlist, how do I reset?

    When Making a new play list, the play list was on the right of the screen and this allowed you to drag your music onto the playlist, my setup has changed to the left of the screen which does not allow you to drag your music across, how do I reset?

    In the top corner of iTunes is a small icon with a down arrow, click on that and choose 'show menu bar'. 
    Then on the view menu which now appears choose 'show sidebar'

  • When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the o

    When trying to PDF a webpage into a PDF, it does not work, I go through all the steps as normal, and It does nothing. I can repeat my action, where instead of "printing" to adobe, it saves the file, which it doesn't save it at all. I can't even find the original in my work folder. I need to know how to stop this from happeing and get it back to the way it has been working he last 6 months since i purchased this program.

    Hi pissedadobeuser,
    Does this issue occur with any particular web page?
    Are you able to print the webpage to 'Adobe PDF' to convert it to pdf.
    Which Browser version, OS version and Acrobat version are you using?
    Regards,
    Rave

  • Submit PDF Form by Email (does not allow connection)

    It's been sometime since I have created a PDF which included a "Submit by Email" button.  I opened the original form and changed the email addresses, saved it, then opened it in Reader.  Whenever I try to submit it by email a "Security Block" window pops up stating "Acrobat does not allow connection to:"  I have tried to call and pay for support but get the run around.  I've searched the web and only found where I need to "Extend the Rights to Reader" which I did to no avail.  I've even rebuilt the form from scratch...nothing.
    Any help would be much appreciated!
    Thanks....

    I created the form first in Microsoft Word, then "printed" it to create a PDF.  I then use Acrobat to create a bunch of fields, and set the form for distribution.
    When the user completes the form in Acrobat, and clicks on the "Submit" button, an email is created with the form as an attachment, and the body of the message is this:
    Instructions to add this form to a responses file:
    1. Double-click the attachment.
    2. Acrobat will prompt you to select a responses file.
    Those are the instructions I was referring to.  The question is, is there any way to change or eliminate those instructions?

  • I would like to create the a swatch, add it to the library and import to the swatch panel.  The help pages available relate to earlier versions of Muse, which does not work with the 2014.2 release version that I have.  I have created a library folder, imp

    I would like to create the a swatch, add it to the library and import to the swatch panel.  The help pages available relate to earlier versions of Muse, which does not work with the 2014.2 release version that I have.  I have created a library folder, imported the colour swatch as just 4 colours as a mulib file.  I drag the four colours on to the muse page in design view but that is as far as I get.  Can anyone help?  Thanks

    I don't know since I don't share anything. You'll have to peruse the help files and check the permissions and ACLs on the Shared folder. According to the permissions on the Shared folder everyone can R&W. If you want those to be inherited by everything dropped into the folder, add an ACL for
    everyone allow read, write
    Details in the manpage for chmod. The actual steps are left as an exercise.

  • I have 2 emai accounts which worked perfectly on iphone 4 but on iphone 5 my msn account wont let me reply to emails sent to that account, it leaves the message in my outbox saying recipient was rejected by the server because it does not allow relaying

    I have 2 email accounts which both worked perfectly well on my ipone 4 but since going over to iphone 5 my msn account will not allow me to reply to any emails. It places a message on my screen stating a copy has been placed in your Outbox. The recipient   @.com was rejected by the server because it does not allow relaying. Any ideas on how I can sort this. Would it be worth deleting my MSN account ant putting re-inputting the details again?

    Your email provider has blocked the standard mail port 25 for sending emails and is requiring a different port. This is to avoid mail relays that use mail clients to send spam. You need to find the port that is used by your provider for sending outgoing mail. Then change the settings in your email account on your phone to match the port. You will also have to provide some security credentials for the account.
    You can also try deleting the email account from your iphone, and the adding the email account back as this will many times set the correct port for sending emails.
    You could also do a Google search on the the settings for your device with your email provider. That will provide you with the proper settings.

  • HT2798 I have a Mac OS 10.6.8 server in my classroom that I have networked to each student's account.  How do I create a folder that allows them to place their finished assignments in it, but does not allow them to go in and remove anything from that fold

    I have a Mac OS 10.6.8 server in my classroom that I have networked to student accounts on the iMacs in the room.  How do I create a folder that allows studnts to place their finished assignments in it, but does not allow them to go in and remove anything from that folder?

    You want a "Drop Box" style folder. You should be able to achieve this by creating a folder and giving it permissions similar to the "Drop Box" folder in your users Public Folder (i.e. write only permissions.)

Maybe you are looking for