Custom Dialogs - JOptionPane

Hi Guys,
I was after a quick bit of advice. I've written a small routine which handles the JOptionPane dialog when a user wants to delete some files/folders from within my app. I originally had a "showConfirmDialog" type dialog, but I also needed a "Yes to All" button too (for multiple selections). In essence its a YES_NO_CANCEL_OPTION - with an added "Yes to All" choice. I couldn't find a YES_YESTOALL_NO_CANCEL option in the "optionType" parameter in the Docs.
Heres what I've got...
protected int deleteFileCheck(File theFile) {
String fileOrFolder;
fileOrFolder = theFile.isDirectory() ? "folder" : "file";
Object[] options = {"Yes", "Yes to All", "No", "Cancel"};
return JOptionPane.showOptionDialog(null,theFile.toString()
+ "\n" + "Are you sure you want to delete this "
+ fileOrFolder + "?",
"Delete files from this project",
JOptionPane.DEFAULT_OPTION,
JOptionPane.WARNING_MESSAGE,
null, options, options[0]);
which returns -1 for "close", 0 for "yes", 1 for "yes to all", 3 for "no" and 4 for "cancel". This seems to work okay.
Is this the best way to do this??
I'm just double checking really...
Many thanks in advance.

Thanks for replying. I'll try to address your questions.
- Why restrict the design to having only one instance
of the frame? What purpose or requirement does that
fulfill?The app has a single JFrame that serves as the main window for the application. It implements an MDI desktop. Since the app is capable of handling multiple documents, there's no need for other instances of the main JFrame.
You're still free to invoke another instance of the app, but that will be in its own JVM with its own singleton.
- I think you pointed out your problem without
realizing it - why is the frame being passed around
to a bunch of methods? Who controls the frame? The app has many classes that subclass JDialog. JDialog's constructor expects a reference to the Frame or Dialog that owns it. I could use null here, but it's a personal preference to include it if possible.
The frame controls itself. For example, when the user takes some action that requires adding a new JInternalFrame, the code calls MyMainClass.getMDIDesktop().addInternalFrame() (assuming getMDIDesktop() is left as a static method; if not, the call becomes MyMainClass.getInstance().getMDIDesktop().addInternalFrame()).
- Should the controller of the frame provide
it on demand (accessor) instead of handing it off to
everyone to use for their own purposes? I guess I don't understand how what you're suggesting is substantially different than what I'm proposing. The (singleton) controller of the frame (which happens to be the frame itself) provides a reference (via .getInstance()) to whoever needs it -- rather than passing it explicitly.
- Who's creating all these dialogs such that they
need their own reference to the frame - why isn't it
the same class that controls the frame?The reference is often just to establish parentage, but also to allow various dialogs access to methods to create new internal frames/update existing internal frames/etc.

Similar Messages

  • Custom Dialog Box Question

    I have a custom dialog box that uses both radio buttons and edit_text fields.  What I am trying to do is make so that when a certain radio is selected the edit_text field will be filled with a suggested answer.  Is that possible and how could it be done?

    Yes,  data is acquired from fields with the "dialog.store()" function and loaded with the "dialog.load()" function. Say that one radio button is named "Rad1" and the text box is named "Txt1".  Then this code represents the action script for the radio button, it places "New Text" into the the text field.
    "Rad1":function(dialog){
        var rslt = dialog.store();
        if(rslt["Rad1"])
            dialog.load({"Txt1": "New Text"});
    The Action script is a member of the dialog object.  You can see examples of how this can be build by downloading a trial version of AcroDialogs, which will build the correct JavaScript code for adding an action to a radio button.
    http://www.windjack.com/products/acrodialogs.html
    Thom Parker
    The source for PDF Scripting Info
    pdfscripting.com
    The Acrobat JavaScript Reference, Use it Early and Often
    http://www.adobe.com/devnet/acrobat/javascript.html
    Then most important JavaScript Development tool in Acrobat
    The Console Window (Video tutorial)
    The Console Window(article)

  • Open a custom dialog when button is pressed.

    I have a custom dialog that I want to display another custom dialog. I cannot get it work correctly. Everytime I add a function that will show the 2nd dialog It will show before the 1st one is loaded and then nothing happens when I click the dialog on the first!
    I seem to be missing something big? I have not even started to try to get the value of the 2nd dialog and return it to the first!
    Any help!!!!?
    Here is some of the code
    function showAddTokenDialog ()
        LrFunctionContext.callWithContext('showAddTokenDialog', function( context )
            local f = LrView.osFactory()
            tokenprops  = LrBinding.makePropertyTable(context)
            props.token = "val"
            -- Create the contents for the dialog.
            local token = LrView.bind('token')
            local AddTokenDialog = {
                bind_to_object = tokenprops,
                title = "Add Token",
                actionVerb = "Add Token",
                actionBinding = LrView.bind('action'),
                contents = f:row {               
                    f:static_text {
                        alignment = "right",
                        width = LrView.share "label_width",
                        title = "Token "                   
                    f:popup_menu {
                        value = LrView.bind('val'),
                        items = tokenItems,
                        width_in_chars = 15
            result = LrDialogs.presentModalDialog(AddTokenDialog)
        end)
    end
    function Mine.showCustomDialog()
        LrFunctionContext.callWithContext("showCustomDialogWithObserver", function(context)
            props = LrBinding.makePropertyTable(context)
              local c = f:row {
                                            f:static_text {
                                                alignment = "right",
                                                --width = LrView.share "label_width",
                                                title = "Caption: ",
                                                width_in_chars = 10
                                            f:edit_field {
                                                --place_horizontal = 0.5,
                                                --bind_to_object = tableTwo,
                                                value = '',
                                                height_in_lines = 2,
                                                width_in_chars = 20
                                            f:push_button {
                                                title = "Add Token",
                                                -- When the 'Update' button is clicked
                                                font = '<system/small>',
                                                action = showAddTokenDialog ()
              LrDialogs.presentModalDialog(
                    title = "Barcode Match",
                    contents = c
        end) -- end main function
         end

    See http://htmldb.oracle.com/pls/otn/f?p=24317:91
    The Toggle button does what you need.
    The button has a URL of Toggle(). The function Toggle
    is defined as
    <script>
    function Toggle()
    var txt=html_GetElement('P91_TEXT');
    txt.disabled=!txt.disabled;
    if (!txt.disabled) txt.focus();
    </script>
    I don't want to seem ignorant but where do I put this code of the function toggle. I don't seem to see a URL anywhere in the button. Maybe I'm using a different button type then you.
    Aron

  • How to continue transition rendering with custom dialog open

    Hi,
    I'm working on a plugin for some custom transitions (currently for CS6/CC on Windows).
    I'm using a custom dialog (hasCustomDialog in PiPL) during esSetup to set the transition parameters. While the dialog is open the execution of Premiere is halted until the dialog gets closed.
    The problem is, while I'm fiddling with the parameters I can't see changes in the program monitor and I don't get any feedback from Premiere.
    I tried to make the dialog non-blocking but then Premiere didn't rerender the frames when I changed something in the dialog.
    Does anybody know if it is possible to keep the dialog open and still have Premiere actively updating the rendered view?
    Regards,
    Philipp Stelzer

    Hi Zac,
    thanks for your answer.
    Currently I'm using a modal dialog to set up my parameters and the parameters are corretly applied after I close the dialog.
    But I'd like to keep the dialog open to see the changes directly without reopening the dialog each time I want to tweak a value. Is that possible with a custom dialog?
    I'll take a look at the new transition extensions, but I'm already working on this plugin for a few month and my dialog and the transition effects are already quite extensive. So, I don't know if it is possible to port everything to the new extensions (at least not in reasonable time).
    Regards,
    Philipp

  • Remote Custom Dialog Crashes (Subscription Success Window)

    Hi everyone,
    I'm having a bug for a very long time, which I can't seem to be able to solve or understand, where it comes from.
    In Viewer Builder there is this field:
    Optional Remote Custom Dialog URL
    This URL loads when the customer completes the subscription process. For example, you can request user information or provide additional details about your products.
    When I fill this with a URL on my publications marketing page, it's pretty sure, what happens: When a user subscribes to my publication this window appears after the subscription process is finished.
    The problem is, that with every App I built for the last months, the App always stops at this window showing the content of the given url, but with no possibilty to leave this window. There is no "Finished" button whatsoever and no way to get back to the library. The only way to leave the window is by killing the App through task manager.
    Does any one else encounter this problem? The only solution is to keep the field empty in Viewer Builder and not showing a success window to the customer (though having no ability to ask him or her for his or her contact data).
    Does the URL one states in this field have to fullfill special features (like a a callback of some kind?)
    Thanks very much in advance,
    Richard

    Have you tried implementing a Javascript close/cancel/ok Button?
    <html> 
    <head>
       <title>JavaScript Window Close Example </title>
    </head>
    <script type="text/javascript">
       function popuponclick()
          my_window = window.open("",
           "mywindow","status=1,width=350,height=150");
          my_window.document.write('<h1>The Popup Window</h1>');
       function closepopup()
          if(false == my_window.closed)
             my_window.close ();
          else
             alert('Window already closed!');
    </script>
    <body>
       <p>
          <a href="javascript: popuponclick()">Open Popup Window</a>
       </p>
       <p>
          <a href="javascript: closepopup()">Close the Popup Window</a>
       </p>
    </body>
    </html>

  • Adding images in custom dialog box

    Hi!
    Do  you know if it's possibile to insert an image in a custom dialog box? I mean during the custom dialog box design (during the .dre file creation).
    Thanks to all!

    Hi Stemens,
    I'm hesitant to answer your questions anymore because somebody always comes behind and shows everybody how much I don't know   Anyway, I do not know of a way. I remember that there have been other developers discussing this and I think everybody just gave up. I have never seen an image in a dialog box, so that tends to indicate to me that no one has found a way.
    Russ

  • Subscription tile Optional remote custom dialog URL

    Hi All,
    we have finally managed to sort out our subscription error with the infinate spinning issue.
    But now we have put back in a URL to open up a newsletter signup after the subsciption has gone through. The page opens up, but it doesnt not load with the normal in app browser window, so once you filled out the details you cant get back into the app?
    Is this normal?

    Does this help?
    Optional Library Subscription Tile URL - Specify a URL that is displayed in an in-app browser window when the customer taps the subscription tile. This webpage can include messaging that is not necessarily related to subscriptions.
    Optional Remote Custom Dialog URL - This URL loads when the customer completes the subscription process. For example, you can request user information or provide additional details about your products.

  • Return results from custom dialog box not visibly updating field value

    I have a form with custom dialog boxes (execDialog) for data entry. The dialog box is being called from the Entry event successfully. I also have it called from the Click event. So, here's what I get:
    1. On entering the field, I get the dialog box pop up, I select a value, it visibly changes the field raw value and leaves focus in the field.
    2. If I exit the field and re-enter, it also works as in point 1 (as expected)
    3. If, while focus is already in the field, I click in the field, I get the dialog box, as expected, but after selecting a value from the dialog, the field raw value DOES NOT VISIBLY change until I exit the field! It's kind of like the click event is working in conjunction with the Exit event. This is totally counter-intuitive for a production form that is being designed for the general populace.
    Anyone had any experience with this?
    Cheers,
    Marty.

    Thom Parker answered this here: http://forums.adobe.com/message/2614570#2614570
    Answer copied below:
    "The problem is that when the focus is on the text box
    it's in edit mode. It's only displaying the value interactively entered by
    the user, or as a consequence of the change event.  What you need to do is
    force the focus off of the text box in code.  You can do a little trick
    where you bounce it to a tiny transparent field, which then bounds the focus
    back so it doesn't look like the focus changed."
    What I ended up doing was calling up the dialog box, then using setfocus with no parameters to remove focus from the field, as follows:
    this.rawValue = this.dialogBoxFunction(this.rawValue); // passing current value so dialog box defaults to that value
    xfa.host.setFocus();
    Cheers,
    Marty.

  • Custom dialog window tools list.

    Does anyone have, or know where to find a list of all the usable tools for a custom dialog window?  By tools, I mean the code for putting in the various interactive parts available for custom interfaces, such as checkboxes, text input, etc.  I know how to do the checkboxes, radio buttons, text, and buttons, but that's about it so far, and I would think there is much more than that available.  Anyway, if anyone knows where I could find a list of the available tools and could point me to it, it would be much appreciated.
    dgolberg

    I think you will find this as a great resource...
    http://www.kahrel.plus.com/indesign/scriptui.html

  • Customizing dialoge

    I have made customizing dialog
    I  compare two values
    One from a fieldsysmbol and other from the domain fix value
    The fieldsymbol value is ASB. This value comes from the domain fix value
    if <test> -testvalue = domain fix value
    <test>-testvalue have the value ASB
    How can I access the domain fix value on right side of if.
    thanks
    waseem

    Hello Ahmad,
    Try using FUM : DD_DD07V_GET to get the fixed values.
    Regards,
    Sandeep

  • Using the Optional Remote Custom Dialog URL

    Can anybody point me to a magazine that uses the Optional Remote Custom Dialog URL (preferably with a free subscription).
    Lately, we've been testing the implementation of the remote custom dialog feature.
    As we understand, this is not be a standard web page that get's loaded to the internal browser, but a dialog that displays as an overlay, but we still didn't manage to implement it.
    Any sample or tutorial we can refer to?

    Have you tried implementing a Javascript close/cancel/ok Button?
    <html> 
    <head>
       <title>JavaScript Window Close Example </title>
    </head>
    <script type="text/javascript">
       function popuponclick()
          my_window = window.open("",
           "mywindow","status=1,width=350,height=150");
          my_window.document.write('<h1>The Popup Window</h1>');
       function closepopup()
          if(false == my_window.closed)
             my_window.close ();
          else
             alert('Window already closed!');
    </script>
    <body>
       <p>
          <a href="javascript: popuponclick()">Open Popup Window</a>
       </p>
       <p>
          <a href="javascript: closepopup()">Close the Popup Window</a>
       </p>
    </body>
    </html>

  • How can I change Calendar UI to Custom Dialog in the Outlook?

    I can't English very well...understand me please. :)
    I make MDI project using MFC and I selected Office style in the MFC application wizard.
    So, now I can see the basic Outlookbar in my program.
    but, I want to change calender to My Dialog(anything OK) in the Outlookbar.
    It is possible? 
    Thank you for read
    have a nice day!!

    Hi LimSeungkyun,
    You cannot use a dialog as a CMFCOutlookBarPane.
    You may need create a class derives from CWnd as a tab in the outlook bar. Creating the child controls in OnCreate() and drawing picture in the OnPaint(). See the steps of how to implement a Outlook Bar in this document.
    https://msdn.microsoft.com/en-us/library/bb982639.aspx
    If you want to some example, you could check the Outlook Demo sample or create a MDI office style template project.
    Best regards,
    Shu
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Custom dialog

    hello guys,
    I need help with some code. I am trying to request a user to click a button to get a number and then use this number in the program.
    The problem is that the program continues before the user gets a chance to do this. This is my "code"!
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    class MyFrame extends JFrame{
        public MyFrame(){
            super("Choose a number");
            NumberInput numberInput = new NumberInput();
            int any_number;
            any_number = numberInput.getNumber();
            JOptionPane.showMessageDialog(null, "You have chosen the number "
                + any_number, " ", JOptionPane.INFORMATION_MESSAGE);
        public static void main(String[] args){
            MyFrame myframe = new MyFrame();
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.*;
    public class NumberButton extends JButton implements ActionListener{
        boolean isClicked = false;
        private int number;
        public NumberButton(int num){
            setNumber(num);
            setText("" + num);
            addActionListener(this);
        public int getNumber(){
            return number;
        public void setNumber(int num){
            this.number = num;
        public boolean getClicked(){
            return isClicked;
        public void setClicked(boolean ic){
            this.isClicked = ic;
        public void actionPerformed(ActionEvent e) {
            if(isClicked == false){
                setClicked(true);
            else{
                setClicked(false);
    import java.awt.event.*;
    import javax.swing.*;
    import java.awt.*;
    import java.util.*;
    class NumberInput extends JDialog{
        final static ArrayList numberlist = new ArrayList(27);
        private JButton okayButton = new JButton("OKAY");
        private static JPanel numberPanel = new JPanel();
        private int chosen_number = 0;
        public NumberInput(){
            for (int i = 0; i < 10; i++){
                NumberButton numbutton = new NumberButton(i);
                numberPanel.add(numbutton);
                numberlist.add(numbutton);
            okayButton.addActionListener(new ActionListener(){
                public void actionPerformed(ActionEvent e) {
                    for (int i = 0; i < 10; i++){
                        NumberButton n = (NumberButton)numberlist.get(i);
                        if(n.getClicked()== true){
                            chosen_number = n.getNumber();
                            break;
                        else if(n.getClicked() == false)
                            chosen_number = 20;
                    dispose();
            getContentPane().add(new JLabel("Click a number ", SwingConstants.CENTER), BorderLayout.NORTH);
            getContentPane().add(numberPanel, BorderLayout.CENTER);
            getContentPane().add(okayButton, BorderLayout.SOUTH);
            setVisible(true);
            setSize(500, 150);
            show();
        public int getNumber(){
            return chosen_number;
    }I would really, sincerely appreciate any pointers or suggestions... Thanks in advance.

    the simplest solution is to make your dialog modal. This will enfore the user to enter a value before the next line of code can be executed.
    below is an exmaple of a Login Dialog that prompt the user for the loogin and password. the main() method shows how to use the dialog.
    public class LoginDialog  {
        public final static int CANCEL_OPTION     = 0; 
        public final static int UNDECIDED_OPTION  = 1; 
        public final static int APPROVE_OPTION    = 2; 
        private JDialog        dialog      = null;  // the Login dialog
        private JFrame         parent      = null;  // the owner of this object
        private JPanel         loginPanel  = null;   
        private JPanel         buttonPanel = null;
        private JLabel         prompt1     = new JLabel("Login:");
        private JLabel         prompt2     = new JLabel("Password:");
        private JTextField     txtLogin    = new JTextField(15);
        private JPasswordField txtPwd      = new JPasswordField(15);     
        private int            retValue    = UNDECIDED_OPTION;
        * Main driver
        public static void main(String args[]){
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.setSize(200,250);
            frame.setVisible(true);
            LoginDialog dialog = new LoginDialog();
            dialog.showDialog(frame, true);
            if (dialog.getUserOption() == LoginDialog.APPROVE_OPTION){
                System.out.println("Ret Value = " + dialog.getUserOption());
                System.out.println("Login     = " + dialog.getLogin());
                System.out.println("Password  = " + dialog.getPassword());
        * Default constructor to instantiate an instance of this class.
         public LoginDialog(){
             loginPanel  = createLoginPanel();
             buttonPanel = createButtonPanel();
        * Pops up a "Login" input dialog.
        * @param parent the owner of this dialog (usually a Frame or a Dialog)
        * @param modal true if this dialog is modal, false otherwise.
         public void showDialog(JFrame parent, boolean modal){
              txtPwd.setText("");
              txtLogin.setText("");
              retValue = UNDECIDED_OPTION;
              this.parent = parent;
              dialog = new JDialog(parent, "Login", modal);
              dialog.setLayout(new BorderLayout());
              dialog.add(loginPanel,  CENTER);
              dialog.add(buttonPanel, SOUTH);
              dialog.setResizable(false);
              dialog.setDefaultCloseOperation(JDialog.DO_NOTHING_ON_CLOSE);
              dialog.setLocationRelativeTo(parent);
              dialog.setSize(350, 130);
              dialog.setVisible(true);
        * Create and return a login panel.  This panel contains the two textfields
        * for entering the user's login and password.
        * @return a login panel.
         private JPanel createLoginPanel(){
             JPanel p1 = new JPanel(new GridLayout(2,1));
             JPanel p2 = new JPanel(new GridLayout(2,1));
             p1.add(prompt1);
             p1.add(prompt2);
             p2.add(txtLogin);
             p2.add(txtPwd);
             JPanel panel = new JPanel();
             panel.add(p1);
             panel.add(p2);
             panel.setBorder(BorderFactory.createEmptyBorder(5,5,0,5));
             return panel;
        * Create and return a button panel. This panel contains the "Cancel" and
        * "OK" buttons.
        * @return a button panel.
         private JPanel createButtonPanel(){
              Dimension dim = new Dimension(80, 23);
              JButton btnCancel = new JButton("Cancel");
              btnCancel.setMnemonic('C');
              btnCancel.setPreferredSize(dim);
              btnCancel.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                       retValue = CANCEL_OPTION;
                       dialog.setVisible(false);     
              JButton btnLogin = new JButton("Login");
              btnLogin.setMnemonic('L');
              btnLogin.setPreferredSize(dim);
              btnLogin.addActionListener(new ActionListener(){
                   public void actionPerformed(ActionEvent e){
                        retValue = APPROVE_OPTION;
                       dialog.setVisible(false);     
              JPanel panel = new JPanel();
              panel.add(btnLogin);
              panel.add(Box.createRigidArea(new Dimension(10,10)));
              panel.add(btnCancel);
              panel.setBorder(BorderFactory.createEmptyBorder(0,10,10,10));
             return panel;
        * Return the state of the login dialog option. The states can be one of the
        * following:
        *    LoginDialog.CANCEL_OPTION
        *    LoginDialog.APPROVE_OPTION
        *    LoginDialog.UNDECIDED_OPTION
        * @return the state of the login dialog option.
         public int getUserOption(){ return retValue; }
        * Return the login if the user's option is FontDialog.APPROVE_OPTION;
        * otherwise, return null.
        * @return the login.
         public String getLogin(){
             return (retValue == APPROVE_OPTION)? txtLogin.getText(): null;
        * Return the password if the user's option is FontDialog.APPROVE_OPTION;
        * otherwise, return null.
        * @return the login.
         public String getPassword(){
             return (retValue == APPROVE_OPTION)? new String(txtPwd.getText()): null;
    }

  • Paste picture as signature from custom dialog box?

    Hi, I have created a custom plugin signature dialog box using c++ with picture control and want to paste the picture as a signature, but as soon as I click ok, the John Doe dialog comes up and my picture is not getting pasted. How can I suppress this dialog box and paste my picture? Thanks!

    Please repost in the Acrobat SDK forum.

  • Calling custom dialog screen from Standard Transaction(user Exit)

    Hi, I'm calling Standard Transaction from a Custom Screen. I'm calling a custom screen again with in standard transaction (implemented custom screen thru user exits using macros). But when I click 'continue/cancel' in the custom screen, control is going back to main cutom screen rather go back to standard transaction. Could anyone please help me out how to come back to standard transaction from custom screen rather going back to main cutom screen.
    ***INCLUDE LZ_R_FORWARD_FORWARD_LOADI01 .
    *&      Module  USER_COMMAND_9000  INPUT
    MODULE user_command_9000 INPUT.
      CASE sy-ucomm.
        WHEN 'EXEC'.
          PERFORM validate_popup_data.
          IF flag_error_screen NE 'X'.
            MOVE-CORRESPONDING ZFFL_POPUP to var_ZFFL_POPUP.
            clear flag_return.
            SET SCREEN 0.
            LEAVE SCREEN.
          ENDIF.
        WHEN 'CANC'.
          flag_return = 'X'.
          SET SCREEN 0.
          LEAVE SCREEN.
        WHEN OTHERS.
      ENDCASE.
    ENDMODULE.                 " USER_COMMAND_9000  INPUT
    *&      Module  exit_9000  INPUT
    MODULE exit_9000 INPUT.
      CASE sy-ucomm.
        WHEN 'CANC'.
    *      MOVE perf_flag TO lbpla_exist_flag.
          flag_return = 'X'.
          SET SCREEN 0.
          LEAVE SCREEN.
      ENDCASE.
    ENDMODULE.                 " exit_9000  INPUT
    Thanks in advance.

    Hi
    So the command SET SCREEN 0. LEAVE SCREEN. should "place" the program just after the calling of the popup so here:
    FUNCTION z_call_screen.
    * Call the Pop up screen
        CALL SCREEN 9000 STARTING AT 35 05.
    "<------------------------- The program should be here after going back from popup 9000
    ENDFUNCTION.
    Is it true?
    Max

Maybe you are looking for

  • Errors in Dreamweaver CS4 need help

    Just yesterday I started getting the following error when trying to open Recordsets: While executing onLoad in ServerBeh-ASPVbs-SimpRS.htm, the following JavaScript error(s) occured: At line 271 of file "C:\Program Files\Adobe\Adobe Dreamweaver CS4\C

  • What are the Golden Transactions in Fico

    What are the Golden Transactions in Fico Regards, G G REDDY

  • Change getURL with a variable

    quote: I have a movie clip with instance name "launch". I created a global variable with: _global.launchwebsite = ""; I have a scrolling menu with thumbnail images. I want each thumbnail to dynamically change the URL of the launchwebsite variable. I

  • TrackPoint Keyboard & Numeric Pad don't seem to play nicely

    Hi all. I have just bought a 55Y9003 TrackPoint Keyboard and 33L3225 Numeric KeyPad to replace my ancient (circa 1997) full trackpoint keyboard; which, by the way has been sensational.  I was very disappointed to see it leave the product range. When

  • Import utility IMP-00009: abnormal end of export file.

    IMP-00009: abnormal end of export file. I have received a 34 GB dmp file exported using exp utility 9.2. and i am importing it into 10.2.0.1.0 1) Not sure wheher its exported from Unix or windows.. how to make out? 2)I imported using ...BIN>imp user1