Capturing the Cancel button with Before Print event handler

I put together a script that is triggered by a beforePrint event handler. Everything works fine but I can't figure out how and where to capture the user clicking on the Cancel button in the Print dialog?
Any ideas? Thanks, Dan

Alen,
My bet is you are using JDeveloper 11.1.1.5. This is a known ADF bug 12551764 in this release, not related to JHeadstart.
Here are the details:
http://adfbugs.blogspot.com/2011/05/jdeveloper-11115-serius-bug.html
I just checked the bug database, it is fixed in patch 12399372. You can go to metalink to download the patch.
Steven Davelaar,
JHeadstart Team.

Similar Messages

  • I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue?

    I am walking through Apples tutorial getting started with iOS development. I am at the storyboard area and can't seem to drag the cancel button to the green exit. I am not sure why the exit button doesn't except it. Is anyone else having this issue? Is there a work around? I have done this app twice and still cant get the exit to except the Cancel or Done  bar buttons

    Yes I checked it.  As far as I can see I did everything Apple said to do.  I took some screen shot so you can see how the screens are connected and what and where the code is, and what it does when I drag the cancel and done bar buttons to the exit

  • How to handle the "cancel" button and "close" icon of a popup ?

    Hi,
    I have a popup with "cancel button" and "close icon"(on the top right corner of the popup), I want the same operations to be performed on clicking of any of these two components.
    Is there a way to handle such situation ?
    I read about 2 cases to look into this but they didn't work too well for me.
    1. I read about the "popcancellistener" but that listener is called whenever the popup closes, so suppose I have an "ok button" on the popup to create a record, after the record is created, the popup closes and goes into the "popcancellistener", now the question is "how do we know if it came there because of the 'ok button' or 'some other event'".
    2. I even checked the "DialogListener", now I'm able to distinguish between the 'OK' and 'CANCEL' button in the dialoglistener using the "Dialog.Outcome.ok/cancel", but when a user clicks on the close icon, we do not enter the "DialogListener" at all, so in this case "how do we handle the close icon click event"
    Do let me know if you need any more information from my side.
    Thanks for the help in advance.

    The following mechanism responds to any of the following events: <Esc> key, Close icon ('x'), Cancel button
    JavaScript part:
    function popupClosedListener(event){
                  var source = event.getSource();
                  var popupId = source.getClientId();
                  var params = {};
                  params['popupId'] = popupId;
                  var type = "serverPopupClosed";
                  var immediate = true;
                  AdfCustomEvent.queue(source, type, params, immediate);
    }JSF part:
             <af:popup ....>
                  <af:clientListener method="popupClosedListener"
                                           type="popupClosed"/>
                  <af:serverListener type="serverPopupClosed"
                                          method="#{myBean.serverPopupClosedMetod}"/>
            </af:popup>Finally, Java part:
    public void serverPopupClosedMetod(ClientEvent event){
    }

  • How to use the cancel button in showInputDialog

    um how would i go with overriding the cancel button's deafult function in JOptionPane.showInputDialog?
    in my code:
    package alphaOne;
    * this program takes in a number and gets the factorial of that number
    import javax.swing.*;
    public class Factorial {
         public Factorial() {
               * variables intilization, input is where the option pane puts the data
               * number is teh actucal number entered parsed from string result is
               * where the resutl is stored flag1 is the indicator if the user had
               * entered an integer
              String input;
              int flag1 = 0;
              int number = 0;
              long result = 0;
               * this while loop runs continously unless an integer is entered
              while (flag1 != 1)
                   try {
                        input = JOptionPane
                                  .showInputDialog("Enter the number to be factored, Integer only: ");
                        number = Integer.parseInt(input);
                        flag1 = 1;
                   } catch (NumberFormatException ea) {
                        JOptionPane.showMessageDialog(null,
                                  "The input was not a integer!", "Warning",
                                  JOptionPane.ERROR_MESSAGE);
              result = number;
              for (int x = 1; x < number; x++) {
                   result = result * (x);
              JOptionPane.showMessageDialog(null, "The result is: " + result,
                        "Result", JOptionPane.CLOSED_OPTION);
              try {
                   System.exit(0);
              } catch (SecurityException ea) {
                   System.out.print("ARRRRR its dead!");
         public static void main(String[] args) {
              Factorial One = new Factorial();
    }the cancel button does not break the while loop

    what is the value of null compared to when you compare it, and do we use the String.equals() or the String == null to compare? as seen in here i tried with input.equals(null) as a comparison but it deos not exit when i press cancel
    package alphaOne;
    * this program takes in a number and gets the factorial of that number
    import javax.swing.*;
    public class Factorial {
         public Factorial() {
               * variables intilization, input is where the option pane puts the data
               * number is teh actucal number entered parsed from string result is
               * where the resutl is stored flag1 is the indicator if the user had
               * entered an integer
              String input;
              boolean flag1 = false;
              int number = 0;
              long result = 0;
               * this while loop runs continously unless an integer is entered
              while (flag1 != true){
                   try {
                        input = JOptionPane
                                  .showInputDialog("Enter the number to be factored, Integer only: ");
                        number = Integer.parseInt(input);
                        System.out.println(input);
                        flag1 = true;
                        if (input.equals(null))
                             try {
                                  System.exit(0);
                             } catch (SecurityException ea) {
                                  System.out.print("ARRRRR its dead!");
                   } catch (NumberFormatException ea) {
                        JOptionPane.showMessageDialog(null,
                                  "The input was not a integer!", "Warning",
                                  JOptionPane.ERROR_MESSAGE);
              result = number;
              for (int x = 1; x < number; x++) {
                   result = result * (x);
              JOptionPane.showMessageDialog(null, "The result is: " + result,
                        "Result", JOptionPane.INFORMATION_MESSAGE);
              try {
                   System.exit(0);
              } catch (SecurityException ea) {
                   System.out.print("ARRRRR its dead!");
         public static void main(String[] args) {
              Factorial One = new Factorial();
    }i have also tried to ue input == null, input == "", input.equals(""), input.equals(" ")
    Message was edited by:
    TheHolyLancer
    i edited the part so it is bold
    Message was edited by:
    TheHolyLancer

  • Urgent: Getting the 'Cancel' button to work

    Hi everyone!!!
    I am having problems with a button that should close a JFrame that is created in another class file. Basically I dont know how to pass the required object (that is the "NewWizardFrame" object) through to the action listener for the cancel button that exists as a inner class within "NewWizardPanel". I am getting nullpointerexceptions when I click on the 'cancel' button to close the frame. I will post all the code below so that anyone can compile it and see what the hell i'm going on about!!! If you know how to fix the problem just post the fixed code back here and everything will be perfect!!! Thanks
    p.s. I will give 5 duke dollars to the first person who can post me back the fixed code. Thanks again.
    The code follows below, just run the NewChartTest file.
    * NewChartTest.java
    * 23/11/02 (Date start)
    * This class is for test purposes for
    * the "New Chart" wizard
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class NewChartTest extends JPanel
    private JButton newButton;
    public JFrame wizardFrame;
    public NewChartTest()
    // create new button
    newButton = new JButton("New Chart");
    // create tooltip for every button
    newButton.setToolTipText("New Chart");
    // add our button to the JPanel
    add(newButton);
    // construct button action
    NewButtonListener listener1 = new NewButtonListener();
    // Add action listener to button
    newButton.addActionListener(listener1);
    private class NewButtonListener implements ActionListener
    public void actionPerformed(ActionEvent evt)
    wizardFrame = new JFrame("New Chart Wizard*");
    NewWizardPanel wizardPanel = new NewWizardPanel();
    wizardFrame.getContentPane().add(wizardPanel);
    wizardFrame.setSize(380, 220);
    wizardFrame.setVisible(true);
    // Main entry point into the ToolBarPanel class
    public static void main(String[] args)
    // Create a frame to hold us and set its title
    JFrame frame = new JFrame("New Chart Test");
    // Set frame to close after user request
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // Add our tab panel to the frame
    NewChartTest nct = new NewChartTest();
    frame.getContentPane().add(nct, BorderLayout.CENTER);
    // Resize the frame
    frame.setSize(680, 480);
    // Make the windows visible
    frame.setVisible(true);
    * NewWizardPanel.java
    * 23/11/02 (Date start)
    * This class is for test purposes for
    * the "New Chart" wizard
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class NewWizardPanel extends JPanel
    private JLabel projectNameLabel;
    private JLabel maxCharacterLabel;
    private JLabel durationLabel;
    private JLabel monthLabel;
    private JTextField projectName;
    private JComboBox projectDuration;
    private JButton okButton;
    private JButton cancelButton;
    private JFrame wizardFrame;
    public NewWizardPanel()
    // create additional panels to hold objects
    JPanel topPanel = new JPanel();
    JPanel lowerPanel = new JPanel();
    JPanel buttonPanel = new JPanel();
    // Create a border around the "nextpanel"
    Border etched = BorderFactory.createBevelBorder(BevelBorder.RAISED, Color.black, Color.blue);
    Border titled = BorderFactory.createTitledBorder(etched, "Please provide a title to your project");
    topPanel.setBorder(titled);
    // Create a border around the "lowerpanel"
    Border etched1 = BorderFactory.createBevelBorder(BevelBorder.RAISED, Color.black, Color.blue);
    Border titled1 = BorderFactory.createTitledBorder(etched1, "Please select the duration of your project");
    lowerPanel.setBorder(titled1);
    // initialise label objects
    projectNameLabel = new JLabel("Project Name", JLabel.LEFT);
    maxCharacterLabel = new JLabel("(Max 20 Chars)");
    durationLabel = new JLabel("Duration (in months)", JLabel.LEFT);
    monthLabel = new JLabel("1 - 12 months");
    projectName = new JTextField("Default Name", 20);
    projectName.setColumns(15);
    topPanel.validate();
    projectDuration = new JComboBox();
    projectDuration.setEditable(false);
    projectDuration.addItem("1");
    projectDuration.addItem("2");
    projectDuration.addItem("3");
    projectDuration.addItem("4");
    projectDuration.addItem("5");
    projectDuration.addItem("6");
    projectDuration.addItem("7");
    projectDuration.addItem("8");
    projectDuration.addItem("9");
    projectDuration.addItem("10");
    projectDuration.addItem("11");
    projectDuration.addItem("12");
    // initialise buttons
    okButton = new JButton("Ok", new ImageIcon("Test/ok.gif"));
    cancelButton = new JButton("Cancel", new ImageIcon("Test/cancel.gif"));
    // add objects to panels
    topPanel.add(projectNameLabel);
    topPanel.add(projectName);
    topPanel.add(maxCharacterLabel);
    lowerPanel.add(durationLabel);
    lowerPanel.add(projectDuration);
    lowerPanel.add(monthLabel);
    buttonPanel.add(okButton);
    buttonPanel.add(cancelButton);
    // create instance of cancelButtonListener
    CancelButtonListener cancelListen = new CancelButtonListener(wizardFrame);
    // add actionListener for the cancel button
    cancelButton.addActionListener(cancelListen);
    // use Box layout to arrange panels
    Box hbox2 = Box.createHorizontalBox();
    hbox2.add(topPanel);
    Box hbox4 = Box.createHorizontalBox();
    hbox4.add(lowerPanel);
    Box hbox5 = Box.createHorizontalBox();
    hbox5.add(buttonPanel);
    Box vbox = Box.createVerticalBox();
    vbox.add(hbox2);
    vbox.add(Box.createGlue());
    vbox.add(hbox4);
    vbox.add(Box.createGlue());
    vbox.add(hbox5);
    this.add(vbox, BorderLayout.NORTH);
    private class CancelButtonListener implements ActionListener
    public CancelButtonListener(JFrame awizardFrame)
    wizardFrame = awizardFrame;
    public void actionPerformed(ActionEvent event)
    Object source = event.getSource();
    if(source == cancelButton)
    wizardFrame.setVisible(false);
    // Main entry point into the ToolBarPanel class
    public static void main(String[] args)
    // Create a frame to hold us and set its title
    JFrame frame = new JFrame("New Chart Wizard");
    // Set frame to close after user request
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // Add our tab panel to the frame
    NewWizardPanel nwp = new NewWizardPanel();
    frame.getContentPane().add(nwp, BorderLayout.CENTER);
    // Resize the frame
    frame.setSize(680, 480);
    // Make the windows visible
    frame.setVisible(true);

    Hi everyone!!!
    I am having problems with a button that should close a
    JFrame that is created in another class file.
    Basically I dont know how to pass the required object
    (that is the "NewWizardFrame" object) through to the
    action listener for the cancel button that exists as a
    inner class within "NewWizardPanel". I am getting
    nullpointerexceptions when I click on the 'cancel'
    button to close the frame. I will post all the code
    below so that anyone can compile it and see what the
    hell i'm going on about!!! If you know how to fix the
    problem just post the fixed code back here and
    everything will be perfect!!! Thanks
    p.s. I will give 5 duke dollars to the first person
    who can post me back the fixed code. Thanks again.
    The code follows below, just run the NewChartTest
    file.
    * NewChartTest.java
    * 23/11/02 (Date start)
    * This class is for test purposes for
    * the "New Chart" wizard
    import javax.swing.*;
    import javax.swing.event.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class NewChartTest extends JPanel
    private JButton newButton;
    public JFrame wizardFrame;
    static NewChartTest instance;
    public NewChartTest()
    {  instance = this;
    >
    // create new button
    newButton = new JButton("New Chart");
    // create tooltip for every button
    newButton.setToolTipText("New Chart");
    // add our button to the JPanel
    add(newButton);
    // construct button action
    NewButtonListener listener1 = new
    1 = new NewButtonListener();
    // Add action listener to button
    newButton.addActionListener(listener1);
    private class NewButtonListener implements
    nts ActionListener
    public void actionPerformed(ActionEvent evt)
    wizardFrame = new JFrame("New Chart
    ("New Chart Wizard*");
    NewWizardPanel wizardPanel = new
    Panel = new NewWizardPanel();
    wizardFrame.getContentPane().add(wizardPanel);
    wizardFrame.setSize(380, 220);
    wizardFrame.setVisible(true);
    // Main entry point into the ToolBarPanel class
    public static void main(String[] args)
    // Create a frame to hold us and set its
    set its title
    JFrame frame = new JFrame("New Chart Test");
    // Set frame to close after user request
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // Add our tab panel to the frame
    NewChartTest nct = new NewChartTest();
    frame.getContentPane().add(nct,
    dd(nct, BorderLayout.CENTER);
    // Resize the frame
    frame.setSize(680, 480);
    // Make the windows visible
    frame.setVisible(true);
    * NewWizardPanel.java
    * 23/11/02 (Date start)
    * This class is for test purposes for
    * the "New Chart" wizard
    import javax.swing.*;
    import javax.swing.event.*;
    import javax.swing.border.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.io.*;
    public class NewWizardPanel extends JPanel
    private JLabel projectNameLabel;
    private JLabel maxCharacterLabel;
    private JLabel durationLabel;
    private JLabel monthLabel;
    private JTextField projectName;
    private JComboBox projectDuration;
    private JButton okButton;
    private JButton cancelButton;
    private JFrame wizardFrame;
    public NewWizardPanel()
    // create additional panels to hold objects
    JPanel topPanel = new JPanel();
    JPanel lowerPanel = new JPanel();
    JPanel buttonPanel = new JPanel();
    // Create a border around the "nextpanel"
    Border etched =
    tched =
    BorderFactory.createBevelBorder(BevelBorder.RAISED,
    Color.black, Color.blue);
    Border titled =
    itled = BorderFactory.createTitledBorder(etched,
    "Please provide a title to your project");
    topPanel.setBorder(titled);
    // Create a border around the "lowerpanel"
    Border etched1 =
    ched1 =
    BorderFactory.createBevelBorder(BevelBorder.RAISED,
    Color.black, Color.blue);
    Border titled1 =
    tled1 = BorderFactory.createTitledBorder(etched1,
    "Please select the duration of your project");
    lowerPanel.setBorder(titled1);
    // initialise label objects
    projectNameLabel = new JLabel("Project Name",
    Name", JLabel.LEFT);
    maxCharacterLabel = new JLabel("(Max 20
    (Max 20 Chars)");
    durationLabel = new JLabel("Duration (in
    ion (in months)", JLabel.LEFT);
    monthLabel = new JLabel("1 - 12 months");
    projectName = new JTextField("Default Name",
    Name", 20);
    projectName.setColumns(15);
    topPanel.validate();
    projectDuration = new JComboBox();
    projectDuration.setEditable(false);
    projectDuration.addItem("1");
    projectDuration.addItem("2");
    projectDuration.addItem("3");
    projectDuration.addItem("4");
    projectDuration.addItem("5");
    projectDuration.addItem("6");
    projectDuration.addItem("7");
    projectDuration.addItem("8");
    projectDuration.addItem("9");
    projectDuration.addItem("10");
    projectDuration.addItem("11");
    projectDuration.addItem("12");
    // initialise buttons
    okButton = new JButton("Ok", new
    k", new ImageIcon("Test/ok.gif"));
    cancelButton = new JButton("Cancel", new
    l", new ImageIcon("Test/cancel.gif"));
    // add objects to panels
    topPanel.add(projectNameLabel);
    topPanel.add(projectName);
    topPanel.add(maxCharacterLabel);
    lowerPanel.add(durationLabel);
    lowerPanel.add(projectDuration);
    lowerPanel.add(monthLabel);
    buttonPanel.add(okButton);
    buttonPanel.add(cancelButton);
    // create instance of cancelButtonListener
    CancelButtonListener cancelListen = new
    n = new CancelButtonListener(wizardFrame);
    // add actionListener for the cancel button
    cancelButton.addActionListener(cancelListen);
    // use Box layout to arrange panels
    Box hbox2 = Box.createHorizontalBox();
    hbox2.add(topPanel);
    Box hbox4 = Box.createHorizontalBox();
    hbox4.add(lowerPanel);
    Box hbox5 = Box.createHorizontalBox();
    hbox5.add(buttonPanel);
    Box vbox = Box.createVerticalBox();
    vbox.add(hbox2);
    vbox.add(Box.createGlue());
    vbox.add(hbox4);
    vbox.add(Box.createGlue());
    vbox.add(hbox5);
    this.add(vbox, BorderLayout.NORTH);
    private class CancelButtonListener implements
    nts ActionListener
    public CancelButtonListener(JFrame
    (JFrame awizardFrame)
    public void actionPerformed(ActionEvent
    onEvent event)
    Object source = event.getSource();
    if(source == cancelButton)
    NewChartTest.instance.wizardFrame.setVisible(false);
    // Main entry point into the ToolBarPanel class
    public static void main(String[] args)
    // Create a frame to hold us and set its
    set its title
    JFrame frame = new JFrame("New Chart
    w Chart Wizard");
    // Set frame to close after user request
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    // Add our tab panel to the frame
    NewWizardPanel nwp = new NewWizardPanel();
    frame.getContentPane().add(nwp,
    dd(nwp, BorderLayout.CENTER);
    // Resize the frame
    frame.setSize(680, 480);
    // Make the windows visible
    frame.setVisible(true);

  • How to change the behaviour of the Cancel-Button of SSO-Login-Page (Forms)?

    Hi Folks,
    we use SSO-Login to authenticate users using Forms. How do I change the URL which is opened when a user clicks on the cancel button on the SSO Login page?
    In the formsweg.cfg file there is a parameter named ssoCancelUrl, but if I define it, it doesn't work anyway. Seems like it has something to do with ssoDynamicResourceCreate, but I don't exactly understand what.
    Can't I simply change the URL which is opened (globally), when a user hits the cancel button on any SSO-Loginpage.
    Thanks in advance.
    Regards.

    Exactly this does not work! Please watch my settings:
    Global Setting in formsweb.cfg
    # Single Sign-On OID configuration parameter: indicates whether we allow
    # dynamic resource creation if the resource is not yet created in the OID.
    ssoDynamicResourceCreate=false
    # Single Sign-On parameter: URL to redirect to if ssoDynamicResourceCreate=false
    ssoErrorUrl=
    # Single Sign-On parameter: Cancel URL for the dynamic resource creation DAS page.
    ssoCancelUrl=
    # Single Sign-On parameter: indicates whether the url is protected in which
    # case mod_osso will be given control for authentication or continue in
    # the FormsServlet if not. It is false by default. Set it to true in an
    # application-specific section to enable Single Sign-On for that application.
    ssoMode=false
    App-Specific settings in formsweb.cfg
    [proz]
    envFile=proz.env
    form=proz.fmx
    title=proz
    separateFrame=true
    width=1280
    height=960
    ssoMode=true
    ssoDynamicResourceCreate=false
    ssoCancelURL=http://machinename:port/zugangsportal/
    otherparams=useSDI=yes P_SERVER_URL=machinename:port P_REP_SERVERNAME=machinename_proz ZP_TARGET_ID=%ZP_TARGET_ID%
    When I now access http://machinename:port/forms/frmservlet?config=proz I got redirected to the SSO-Login-Page but the Cancel-Button still links to Middletier Home. Why?
    Regards.

  • I have my username, password, and sync key but I cannot click the next button to complete the sync setup?! Neither the next button nor the cancel button press?!

    I try to setup my sync account with Ubuntu 13.10 and I am able to enter my user name and password and recovery key but the next button will not click and neither will the cancel button. Only the back button, sync options button, and the x at the top of the screen are functioning?

    Did you enable the Side Bar?
    Select "Show Side Bar" from the "View" menu of iTunes.

  • JOptionPane.showInputDialog and the cancel button

    so i'm using a JOptionPane.showInputDialog, and everything works except when i click the cancel button to exit the window, it gives me an error.
    how can i remedy this?
    here's a section of my code: (a is an array, as is b)
    firstWord = JOptionPane.showInputDialog
    ("What company's sloagan is/was: "+a[count]+"?");
    if(firstWord.equalsIgnoreCase(b[count]))
    JOptionPane.showMessageDialog (null,
    "Thats Right, the company was "+b[count]+".");
    count++;
    int YesNo = JOptionPane.showConfirmDialog (null,
    "Do you want to play again?", "Choose One", JOptionPane.YES_NO_OPTION,JOptionPane.INFORMATION_MESSAGE);
    if(YesNo==1) //this should exit out if you click no
    System.exit (0);
    if(count==10)
    JOptionPane.showMessageDialog(null,
    "Game Over. You Won.");
    System.exit (0);
    else
    JOptionPane.showMessageDialog (null,
    "Sorry, you aren't that smart. Guess again.");
    }]

    1- Seems like you misstyped your code tags...
    2- When you say: "it gives me an error", please provide details (e.g. stack trace)
    3- Read the API doc, it says: showInputDialog returns user's input, or null meaning the user canceled the input.
    So firstWord.equalsIgnoreCase(b[count]) will throw a NullPointerException in that case.
    You might check for null value.
    Note:str1.equals(str2) will throw a NullPointerException when str1 is null, but str2 can be null without a NullPointerException being thrown:String str1 = null;
    String str2 = "toto";
    System.out.println(str1.equals(str2)); // NullPointerException
    System.out.println(str2.equals(str1)); // ok (prints false)

  • How can I unsubscribe while the cancel button is u...

    There is no next payment for my subscription and the cancel button is missed. Is that mean the subscription will not automatically subscribe the next one until I confirm?

    I find that I will not have need of a skype account.  My free month is expired 09/22/14. I am a bit confused on how to do this on the web page - I do not see a"call phone tab" to go on to subscription settings.   So sorry.  I need your help with this.  Please cancel any renewal that may  be pending on my account.  Notify me with a confirmation on the cancellation.. Thank you very much.
    [Name redacted for privacy.]

  • On my ipad if I accidentally press buy it now on ebay, the cancel button won't work and I end up buying something I don't want. What can I do

    If I accidentally press the Buy it now Button on ebay, I should be able to cancel it at checkout but the cancel button won't do this and I end up buying something I don't want.  Help ?

    Downloading (using iOS or computer) past purchases from the App Store, iBookstore, and iTunes Store - http://support.apple.com/kb/ht2519 - enabled with iTunes 10.3 and newer; not all media formats are available in all countries (see: iTunes in the Cloud and iTunes Match Availability by Country - http://support.apple.com/kb/HT5085); apps, books (not audiobooks), music, t.v. shows, and movies (some - not all studios have permitted this).  Downloading previously purchased movies and TV shows requires iTunes 10.6 or later.  Discontinued items not available. For items not included in the iCloud list (e.g., ringtones), or locations or computer systems where iCloud is not (yet?) available, you only get one download per fee paid.  Apple notes it is your responsibility to back up your purchases.
    Select the store on the left side of iTunes.
    Click on Purchased on the right side under Quick Links.
    You can re-download your available previous purchases.

  • Reg: How to capture the Excise Invoice with respect to Inbound delivery

    Hi All,
    Please give the process follow for capturing the excise invoice with respect to inbound delivery.
    Thanks & Regards
    Siva

    Hi Siva,
    Please check this link
    CIN with Example..?
    Regards,
    Bijoy Kumar

  • How to disable the cancel button in the ProgressMonitor

    hi,
    I need to know, is there any way to disable/remove the (cancel)button in the ProgressMonitor?
    One more problem is,
    Once i click the cancel button, isCanceled() return true, how to make it false again so that the process continue....
    It is very urgently.....
    please help me out.
    Thanks in advance.
    Regards,
    Deepa Raghuraman

    I don't think that's a good solution, because Cancel button itself is not disabled, so user is tempted to click it and nothing happens.
    A better but dangerous solution is this:
    progressMonitor = new ProgressMonitor(ProgressMonitorDemo.this,
                                         "Running a Long Task",
                                         "", 0, 100);
    progressMonitor.setMillisToDecideToPopup(0);
    progressMonitor.setMillisToPopup(0);
    progressMonitor.setProgress(0);
    JDialog dialog = (JDialog)progressMonitor.getAccessibleContext().getAccessibleParent();
    JOptionPane pane = (JOptionPane)dialog.getContentPane().getComponent(0);
    pane.setOptions(new Object[]{});Refer to the same question here [http://stackoverflow.com/questions/512151/how-do-i-disable-the-cancel-button-when-using-javax-swing-progressmonitor] .

  • How to disable the cancel button in InputDialogBox?

    Can someone please tell me how to disable the cancel button in an input dialog box?
    thanks,

    Cross posted: [http://www.coderanch.com/t/487888/Swing-AWT-SWT-JFace/java/disable-cancel-button-input-dialog]

  • How to change the text in the Cancel button of JFileChooser ?

    Hello,
    In french the standart text in the Cancel button of the JFileChooser class is "Annuler". For a good reason which will be too long to explain, I need to change it by another term.
    I tried to create a super class and redefine the CANCEL_SELECTION string, but this does not work. I can't either change it directly because it has the final attribute.
    Where does JFileChooser get this word from ? ( I guess it is not hard coded for multilanguage support purpose).
    Any help would be appreciated
    Gege

    I believe the standard Look and feel implementations look in UIManager for a string called FileChooser.cancelButtonText.
    Therefore you might be able to change it after you've loaded your LnF by using the following code:
    UIManager.put("FileChooser.cancelButtonText", "---change me---");Note that this would change all file choosers in your application.
    If you only want to update one type of file chooser you could extend, for example, MetalFileChooserUI and set its cancel button text by overriding installStrings. You'd then need to install this UI on the file chooser you want to change.
    There may be an easier way to do this!
    Hope this helps.

  • TS3297 hi. I am trying to change my billing address in itunes but it is not letting me do this. When I go to edit, I see only the 'cancel' button at the bottom of the page, no 'done' button to make changes. Why? I am a US registered itunes user but live o

    hi all. Hope someone can help me because I'm getting very frustrated and not finding answers! I am trying to change my billing address in my itunes store account, but itunes is not allowing me to do this. At the bottom of the page, I only get the 'cancel' button, no 'done' button to make changes. I am using an HP mini, and am a registered US itunes account holder, living outside the US right now (East Timor to be precise).
    Why won't the store let me change my info? I'm not having any other problems.

    The possible reasons are:
    1. Store credits in your account
    2. Pending downloads
    For more information contact iTunes Customer Support:
    http://www.apple.com/support/itunes/contact/

Maybe you are looking for

  • Common headers and footers in web applications

    I want to include common headers and footers in all web applications. I do not want to include the header/footer in each application WAR file. I've tried to follow Orion's tutorial for building a response filter, and I get it working to the point tha

  • Can't select more than one instance

    Hi All, wonder if anyone can help, I'm trying to get Qmaster to use more than one core(instance). but the options for selected service is greyed out for compressor, and its stuck on 1 instance, "Rendering" service is allowing me to change instances,

  • Keyboard on 13" acting strange

    I've got a MacBook 13" that I bought used, the previous owner had spilled Coke onto the keyboard, got it for cheap as the backspace key didn't work. I replaced the keyboard with a new (used) one, although it is Backlit (the original was not). Now non

  • Email a month, a week, then 48 hours before event starts

    I am having trouble figuring out the logic for this workflow request. A calendar event is added with an "End Date"  E-mail 30 days before "End Date" then E-mail 7 days before and then 48 hours before.  I am running into issues with knowing what to pu

  • Help with buggy brushes in aperture 3.2.2

    i just installed aperture 3.2.2 on my macbook air, running lion. there is a glitch when i try to resize "brushes" in the mid range, whereby the brush becomes invisible on the picture. previous versions of aperture 3 did not do this. any thoughts?