SetVisible(false) doesn't work with JDialog

Hi evry one in this forum, i am using JDialog to get some inputs from user, when the user click on the ok button, i start processing and the JDialog must be invisible, for that i use myJdialog.setVisible(false) methode, but the JDialog is still visible, i may be use the wrong component or there is a problem.
I write some thing like this:
actionPerformed(){
//getinputs and make some controls
if(test){
this.setVisible(false);
//some traitments
//some traitments
}I think there is no thing wrong, not? what happen?

I am sorry, this is some thing complicated:
public class OpenKeyStore
    extends JDialog
    implements ActionListener, KeyListener, WindowListener {
  JPanel jPanel1 = new JPanel();
  Border border1;
  JLabel lprivateKey = new JLabel();
  JLabel lkeyPass = new JLabel();
  JTextField tkeyStorePath = new JTextField();
  JPasswordField tkeyPass = new JPasswordField();
  JButton bvalidate = new JButton();
  JButton bopenKeyStore = new JButton();
  JButton breset = new JButton();
  GridBagLayout gridBagLayout1 = new GridBagLayout();
  JFileChooser jfc = new JFileChooser();
  JOptionPane jop = new JOptionPane();
  private UploadParameters uploadParameters;
  private OpenRequest openRequest;
  private OpenResponse openResponse;
  private CheckCertRequest checkCertRequest;
  private CheckCertResponse checkCertResponse;
  private WaitBox waitBox;
  UploadApplet uploadApplet;
  public OpenKeyStore(Frame frame, String title, boolean modal) {
    super(frame, title, modal);
    try {
      jbInit();
    catch (Exception ex) {
      ex.printStackTrace();
  public OpenKeyStore(UploadApplet uploadApplet) {
    this(null, "", false);
    this.uploadApplet = uploadApplet;
  private void jbInit() throws Exception {
    uploadParameters = new UploadParameters();
    border1 = new EtchedBorder(EtchedBorder.RAISED, Color.white,
                               new Color(148, 145, 140));
    this.setModal(true);
    this.setTitle("Ouvrir");
    jPanel1.setBorder(border1);
    jPanel1.setLayout(gridBagLayout1);
    jPanel1.setSize(400, 140);
    lprivateKey.setText("Cl� priv�e :");
    lkeyPass.setText("Mot de passe : ");
    bopenKeyStore.setActionCommand("openKeyStore");
    bopenKeyStore.setText("Ouvrir");
    bopenKeyStore.setMnemonic(KeyEvent.VK_O);
    bopenKeyStore.addKeyListener(this);
    bopenKeyStore.addActionListener(this);
    bvalidate.setActionCommand("bvalidate");
    bvalidate.setText("Valider");
    bvalidate.setMnemonic(KeyEvent.VK_V);
    bvalidate.addKeyListener(this);
    bvalidate.addActionListener(this);
    breset.setActionCommand("breset");
    breset.setText("R�etablir");
    breset.setMnemonic(KeyEvent.VK_R);
    breset.addKeyListener(this);
    breset.addActionListener(this);
    tkeyStorePath.setText("C:\\y.p12");
    tkeyStorePath.addKeyListener(this);
    tkeyPass.setText("y");
    tkeyPass.addKeyListener(this);
    this.getContentPane().add(jPanel1, BorderLayout.CENTER);
    this.getContentPane().setSize(410, 150);
    jPanel1.add(lprivateKey, new GridBagConstraints(0, 0, 1, 1, 0.0, 0.0
        , GridBagConstraints.WEST, GridBagConstraints.NONE,
        new Insets(5, 5, 5, 5), 0, 0));
    jPanel1.add(lkeyPass, new GridBagConstraints(0, 1, 1, 1, 0.0, 0.0
                                                 , GridBagConstraints.WEST,
                                                 GridBagConstraints.NONE,
                                                 new Insets(5, 5, 5, 5), 0, 0));
    jPanel1.add(tkeyStorePath, new GridBagConstraints(1, 0, 1, 1, 10.0, 0.0
        , GridBagConstraints.WEST, GridBagConstraints.HORIZONTAL,
        new Insets(5, 5, 5, 5), 150, 0));
    jPanel1.add(tkeyPass, new GridBagConstraints(1, 1, 1, 1, 10.0, 0.0
                                                 , GridBagConstraints.WEST,
                                                 GridBagConstraints.HORIZONTAL,
                                                 new Insets(5, 5, 5, 5), 200, 0));
    jPanel1.add(bvalidate, new GridBagConstraints(1, 2, 1, 1, 0.0, 0.0
                                                  , GridBagConstraints.EAST,
                                                  GridBagConstraints.NONE,
                                                  new Insets(5, 5, 5, 5), 0, 0));
    jPanel1.add(bopenKeyStore, new GridBagConstraints(2, 0, 1, 1, 0.0, 0.0
        , GridBagConstraints.CENTER, GridBagConstraints.NONE,
        new Insets(5, 5, 5, 5), 0, 0));
    jPanel1.add(breset, new GridBagConstraints(2, 2, 1, 1, 0.0, 0.0
                                               , GridBagConstraints.CENTER,
                                               GridBagConstraints.NONE,
                                               new Insets(5, 5, 5, 5), 0, 0));
    this.initFileChooser();
    this.tkeyStorePath.requestFocus();
    this.pack();
    Rectangle screenRect = this.getGraphicsConfiguration().getBounds();
    this.setLocation(
        screenRect.x + screenRect.width / 2 - this.getSize().width / 2,
        screenRect.y + screenRect.height / 2 - this.getSize().height / 2);
    this.show();
  public void actionPerformed(ActionEvent e) {
    if (e.getActionCommand().equals("openKeyStore")) {
      this.showOpenFileChooser();
      return;
    if (e.getActionCommand().equals("bvalidate")) {
      this.acte();
      return;
    if (e.getActionCommand().equals("breset")) {
      this.reset();
      return;
  public void keyPressed(KeyEvent e) {
    if (e.getKeyCode() == KeyEvent.VK_ENTER) {
      if (e.getSource() == this.bopenKeyStore ||
          e.getSource() == this.tkeyStorePath) {
        this.showOpenFileChooser();
        return;
      if (e.getSource() == this.bvalidate ||
          e.getSource() == this.tkeyPass) {
        this.acte();
        return;
      if (e.getSource() == this.breset) {
        this.reset();
        return;
  public void keyReleased(KeyEvent e) {}
  public void keyTyped(KeyEvent e) {
  private void initFileChooser() {
    jfc.setFileFilter(new javax.swing.filechooser.FileFilter() {
      public boolean accept(File f) {
        return (f.getName().endsWith(".p12") || f.isDirectory());
      public String getDescription() {
        return "(.p12) fichier key store";
    jfc.setDialogTitle("Selectionnez un fichier .p12");
    jfc.setMultiSelectionEnabled(false);
    jfc.setDialogType(JFileChooser.OPEN_DIALOG);
    jfc.setFileSelectionMode(JFileChooser.FILES_ONLY);
  private void showOpenFileChooser() {
    int returnVal = jfc.showOpenDialog(this);
    if (returnVal == JFileChooser.APPROVE_OPTION && jfc.getSelectedFile() != null &&
        jfc.getSelectedFile().exists()) {
      this.tkeyStorePath.setText(jfc.getSelectedFile().getAbsolutePath());
      this.tkeyPass.requestFocus();
    else {
      this.tkeyStorePath.requestFocus();
  private void reset() {
    this.tkeyStorePath.setText("");
    this.tkeyStorePath.requestFocus();
    this.tkeyPass.setText("");
  private void acte() {
//waitBox = new WaitBox();
    openRequest = new OpenRequest();
    openRequest.setStorePath(this.tkeyStorePath.getText());
    if (!openRequest.isValide()) {
      jop.showMessageDialog(null,
                            "S.V.P v�rifiez le chemin de votre cl�!",
                            "Echec...", jop.ERROR_MESSAGE);
      this.tkeyStorePath.requestFocus();
      this.tkeyStorePath.selectAll();
      return;
    openRequest.setStorePass(new String(this.tkeyPass.getPassword()));
    openRequest.setReciverCert(this.uploadParameters.getReciverCert());
    OpenAction openAction = new OpenAction(this.openRequest);
    try {
      while (openResponse == null) {
        Thread.sleep(100);
        openResponse = (OpenResponse) openAction.getResponse();
    catch (Exception e) {
      e.printStackTrace();
    if (openResponse.getSenderPK() == null) {
      jop.showMessageDialog(null,
          "S.V.P entrez une cl� valide, \n ou verifiez votre mot de passe !",
          "Echec...", jop.ERROR_MESSAGE);
      this.tkeyStorePath.requestFocus();
      this.tkeyStorePath.selectAll();
      return;
    if (openResponse.getCaCert() == null) {
      this.setVisible(false);
      jop.showMessageDialog(null,
          "Votre cl� n'est pas valide.\n contactez votre administrateur!",
          "Echec...", jop.ERROR_MESSAGE);
      this.gotoPreviousPage();
      return;
    if (this.uploadParameters.getCipher() && openResponse.getReciverCert() == null) {
this.setVisible(false);//*********************Does not work
jop.showMessageDialog(null,
          "Vous ne disposez pas de certificat pour votre correspondant!",
          "Echec...", jop.ERROR_MESSAGE);
      this.gotoPreviousPage();
      return;
    this.setVisible(false);//*********************Does not work
    if (this.uploadParameters.getCipher()) {
      String compte;
      while (true) {
        compte = (String) JOptionPane.showInputDialog(
            this, "S.V.P. entrez le compte de votre correspondant : ",
            "Customized Dialog", JOptionPane.PLAIN_MESSAGE, null, null, "");
        if (compte == null) {
          //gotoprevious page
          return;
        this.checkCertRequest.setCommunName(compte);
        if (this.checkCertRequest.isValide()) {
          this.checkCertRequest.setReciverCert(this.openResponse.getReciverCert());
          this.checkCertRequest.setCaCert(this.openResponse.getCaCert());
          CheckCertAction checkCertAction = new CheckCertAction(this.
              checkCertRequest);
          try {
            while (this.checkCertResponse == null) {
              Thread.sleep(100);
              this.checkCertResponse = (CheckCertResponse) checkCertAction.
                  getResponse();
          catch (Exception e) {
            e.printStackTrace();
          if (this.checkCertResponse.getReciverCertState()) {
            return;
          else {
            jop.showMessageDialog(null,
                "L'identit� de votre correspondant n'a pas pu etre v�rifier!",
                "Echec...", jop.ERROR_MESSAGE);
  public void windowActivated(WindowEvent e) {}
  public void windowClosed(WindowEvent e) {}
  public void windowDeactivated(WindowEvent e) {}
  public void windowDeiconified(WindowEvent e) {}
  public void windowIconified(WindowEvent e) {}
  public void windowOpened(WindowEvent e) {}
  public void windowClosing(WindowEvent e) {
    this.gotoPreviousPage();
  public void gotoPreviousPage() {
}

Similar Messages

  • EXIT_ON_CLOSE doesn't work with JDialog

    Is there a way to make the frame exit without having to use the killer statement "System.exit(0)"?
    The code below should work but doesn't!
    import javax.swing.JDialog;
    public class ExitOnCloseProblem extends JDialog {
         public static void main(String args[]) {
              ExitOnCloseProblem me = null;
              me = new ExitOnCloseProblem();
              me.setDefaultCloseOperation(JDialog.EXIT_ON_CLOSE);
              me.show();
    }When extending JFrame instead of JDialog and using JFrame.EXIT_ON_CLOSE, it works!
    But I need JDialog.

    Try
    import javax.swing.JDialog;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    public class ExitOnCloseProblem extends JDialog {
        public static void main(String args[]) {
         final ExitOnCloseProblem me = new ExitOnCloseProblem();
         me.addWindowListener(new WindowAdapter() {
              public void windowClosing(WindowEvent we) {
                  me.hide();
                  me.dispose();
                  me.getOwner().dispose();
         me.show();
    }When you read the API documentation for JDialog it says that a shared, hidden
    frame is set as the owner of this dialog - and you have to 'destroy' that one
    as well.
    HTH
    Cheers,
    Torsten
    PS: this is a simplified version of what you would actually do (therefore the
    'final ExitOnCloseProblem me' stuff). Usually you would do a
    WindowEvent.getSource(), cast it to JDialog and then hide() and dispose() all
    the relevant things.

  • The mouse scroll wheel doesn't work with Xorg

    I recently installed Solaris 10 on my x86 box. One issue is that the mouse scroll wheel doesn't work with Xorg. Hmmm... Okay, it sometimes did work, and most of the time went on strike, and recovered at random. This pattern continued.
    My mouse is an ordinary PS/2 one with two buttons and a scroll wheel. I want to promise that there's absolutely nothing wrong with it per se. Here is some info:
    $ uname -a
    SunOS arbiter 5.10 Generic_127112-07 i86pc i386 i86pc
    $ grep -i mouse /var/log/Xorg.0.log
    (**) |-->Input Device "Mouse0"
    (II) LoadModule: "mouse"
    (II) Loading /usr/X11/lib/modules/input//mouse_drv.so
    (II) Module mouse: vendor="X.Org Foundation"
    (==) NVIDIA(0): Silken mouse disabled
    (II) Mouse0: Setting Device option to "/dev/mouse"
    (**) Mouse0: Protocol: VUID
    (**) Mouse0: Core Pointer
    (**) Option "Device" "/dev/mouse"
    (**) Mouse0: ZAxisMapping: buttons 4 and 5
    (**) Mouse0: Buttons: 9
    (II) XINPUT: Adding extended input device "Mouse0" (type: MOUSE)
    # The section about mouse in /etc/X11/xorg.conf follows:
    Section "InputDevice"
            Identifier  "Mouse0"
            Driver      "mouse"
            Option      "Protocol" "auto"
            Option      "Device" "/dev/mouse"
            Option      "Buttons" "5"
            Option      "ZAxisMapping" "4 5"
            Option      "Emulate3Buttons" "false"
    EndSection
    # Note that the only result of explicitly changing protocol to ExplorerPS/2, PS/2, IMPS/2 or whatever else is that the cursor jumped here and there and everywhere when I moved the mouse.I ever post one in comp.unix.solaris to ask for help but got no effective solution. Thank you all.

    You remember correctly, Yvan.
    The 6.2.9 updater is available http://www.apple.com/support/downloads/appleworks629formac.htmlhere. Note that the updater is language specific. The one at the top of the list is for the International English version of AppleWorks. The US English version is the one in the box at the upper right, identified only by its file size.
    Regards,
    Barry

  • HttpServletRequest.isRequestedSessionIdValid() doesn't work with SSL

    In OC4J 9.0.3, when SSL is enabled, the call to
    HttpServletRequest.isRequestedSessionIdValid() method doesn't seem to work. It always returns false when it is called even though the session has not yet expired.
    On the contrary, when SSL is disabled, the HttpServletRequest.isRequestedSessionIdValid() works correctly as specified in the servlet specification.
    Can anyone in this forum explain to me why HttpServletRequest.isRequestedSessionIdValid() doesn't work with SSL? Any solution for that problem?
    Thanks in advance.

    Hi Sanjit,
    I've tried this on multiple PCs and get the same problem everywhere.
    See picture with IE11 and chrome.
    Sincerely,
    Davy

  • Trying to load illustrator 6cs onto new mac and the old activation code for my ill cs doesn't work with it

    Trying to load a downloaded version of illustrator 6cs onto new mac and the old activation code for my illustrator cs doesn't work with it.  Do I need a new code or am I missing something?  Same goes for my Photoshop cs.

    you need your serial number.
    if you purchased from or registered with adobe check your account, https://www.adobe.com/account.html

  • Cinema Display (clear) with DVI/ADC box doesn't work with MacBook Pro

    Cinema Display (clear) with DVI/ADC box doesn't work with MacBook Pro when plugged in with a dvi to mini dvi cable. Any ideas what to do to make it work? I lugged the 23" 2500 miles into the wilderness and I need help

    Okay, here's an update: the DVI to ADC adapter does work with the Apple displays that I have tried, but it won't work with the Formac. I have tried multiple time to contact them, but to no avail... they don't even respond to threats of posting my opinion of them, which is this:
    DON'T BUY ANYTHING FROM FORMAC! They make quality products, but their customer service is a big time joke! They won't take care of you.

  • HT201210 hi everyone, i have a problem about my iphone 4S, doesn't work with wifi connection and bluetooth since upgrade to the IOS 7.0.3. Can anyone can help me tosolve this problem?????Thank's regards paulus

    hi everyone, i have a problem about my iphone 4S, doesn't work with wifi connection and bluetooth since upgrade to the IOS 7.0.3. Can anyone can help me tosolve this problem?????Thank's regards paulus

    Try the suggestions here to see if they resolve your problem:
    http://support.apple.com/kb/ts1559
    If these don't work you may have a hardware problem. Visit an Apple store for an evaluation or contact Apple Support.

  • TS1253 I have a printer epson TX210, but it doesn't work with my time-capsule. What need to do?

    I have a printer epson TX210, but it doesn't work with my time-capsule. What need to do?

    What have you tried?
    You are going to get nowhere quick with the 6.1 utility in Mountain Lion if this is the only OS you have available.
    Look up how to install 5.6 utility under ML. At least then you can see printers. That is assuming you are trying to use USB.
    Has this worked ever on Mountain Lion? Did you download the drivers for that printer for ML?
    Plug it into a computer directly.. does it work? If it doesn't work locally it sure will not work via the network.

  • My i pod nano first generation doesn't work with windows 8

    My i pod nano first generation doesn't work with windows 8

    Howdy yvesmd,
    Thanks for using the Apple Support Communities.
    If your iPod nano is not being recognized in iTunes on your Windows computer, then I'd like you to please follow the directions in the link below.
    Apple - Support - iPod - iPod nano Troubleshooting
    Cheers,
    Alex H.

  • Quicklook doesn't work with .avi files

    Hello, i've got a little problem right here on my mac. The thing is that I used to have Snow Leopard as a OS and quicklook used to work great, it opened all the extensions I used to work with. The thing change when I format my HDD and installed a clean copy of Lion OS. Now quicklook works fine as it used to but not any more with .avi files. I remember that this feature was working great on my previous OS, and it's really important for me to find a solution because quicklook is an absolutely amazing feature of our Macs.
    I've tryed to download plugins, restoring permissions or even trying it with a guest user, but no success.
    Please help me. If you need more info about specs or something i'll be glad to give them to you.
    Thank you!!!

    Also doesn't work with Grapher (.gcx) documents (an Apple format).

  • The Bluetooth on my 2012 Lexus doesn't work with my iPhone 5.  My old android phone worked perfectly with my car.  Even the tech guy at Lexus couldn't get it to work.  What is apple doing to fix this.

    The Bluetooth on my 2012 Lexus doesn't work with my iPhone 5.  My old android worked perfectly with my car.  Even the tech specialist at Lexus couldn't get it to work.  Lexus said that other iPhone 5s were having the same problem.  What is apple doing to fix this?

    Going to the local Apple store this morning...
    My problem is not uncommon as the board is showing signs of this happening to many others as well. That is where I found the restore and reboot information to try to solve the issue of crashing apps.
    I understand that Apple will not "give away the cow", but letting iPhone users know that the problems they are having are being addressed by Apple is a little more comforting than nothing at all. Other wise, all the apps in world are useless and even more importantly worthless, if a person has to reset/reboot/reload just to get them to work.
    IF Apple can not address the basic problems with todays iPhone apps, why should one believe that the iPhone 3.0 OS is any better? Using a PC comparison, which is better, XP or Vista. If the current iPhone OS of 2.2. what ever is not working that well (as related to down loaded apps and iTunes), will OS 3.0 be any better?
    The waste of time I refer to is in going to the apps store and downloading the apps... Again why by apps if the free version does not work?

  • Satellite M40-129: PCMCIA Card doesn't work with Linux

    I have D-Link DWL-G650 with Atheros Chipset which is good supported under linux (madwifi). But if I boot Linux the card is not found. I tested the card with an Fujitsu Siemens Notebook and it worked out of the box!
    Any idea why it doesn't work with my M40-129 ?

    Hi
    Like you know Toshiba doesnt support the Linux and there are no Toshiba drivers for the Linux OS but I was able to find this useful Toshiba page about the notebook configuration with Linux:
    http://newsletter.toshiba-tro.de/main/
    You should check the OS machine compatibility and the other areas.
    Im sure you will find many useful tips.
    Good luck

  • HT5706 I am trying to set up Apple TV with my Uverse WiFi, but I get errors when entering my password.  One site said that Apple TV doesn't work with WPA which Uverse uses.  Is there anyway around this or will Uverse and Apple TV just not work together.

    Trying to set up Apple TV with ATT Uverse.  I get errors when trying to enter my WiFi password.  One site says that Apple TV doesn't work with Uverse because it uses WPA for encryption.  If true, does that mean Uverse subscribers cannot use Apple TV?

    Spurs63 wrote:
    does that mean Uverse subscribers cannot use Apple TV?
    No, that's a rather silly conclusion.
    There are two options:
    stop using the crappy router provided by the ISP.
    Physically connect the ATV to the router via Ethernet.

  • My cellcom line doesn't work with my iPhone here in Israel, why? Is there any way I can solve this issue?

    My cellcom line doesn't work with my iPhone here in Israel, why? Is there any way I can solve this issue?

    Please explain.
    What does "cellcom line doesn't work with my iPhone" mean?
    What are you trying?  What is happening?
    Where did you buy the iphone?
    Any info abnout your issue at all?

  • Media Encoder CS4 doesn't work with Premiere (pic related)

    Oh hai!
    I just got Adobe Master Collection CS4 and my Media Encoder doesn't work with Premiere CS4. When I try to export the file, Encoder starts normally. Then I click "Start queue" and Encoder starts loading. Loading takes almost five minutes, which is a long time, because my project is very simple. After that nothing happens, just a warning sign appears. When I click it open, some kind of log file open and it says:
    Encoding failed
    Could not read from the source. Please check if it has moved or been deleted.
    And I didn't deleted anything. So what does that mean? Why that "Source Name's" path is different than my project files path? Can this problem relate that somehow?
    I have also another problem with Premiere CS4, maybe there's a link between these two problems. I can't get Premiere projects linked to open in Premiere CS4. When I right-click the project icon, and click “Open with…”, I can't find Premiere from the list. When I click "Browse", I can find Premiere.exe from my computer, but if i doubel-clicked it, nothing happens. It won't appear to the list or anywhere else. Or have I missed something? So now the project files are linked to open in After Effects. Of course I can open projects from Premiere, but how do I get them open straight from file?
    I have long experience using Adobe Premiere and this is the first time I got this kind of problems. I have also downloaded new updates for Premiere and Encoder, this didn't help. Does that matter, that I didn't installed Premiere in C-drive? However it's in my computers internal drive, I have divided my hard drive for five parts, one part contains all of my softwares. My scratch disks are in different hard drive (external), does that matter? I tried different location, but that didn't help.
    Please help, I can't do any video editing, because of this problem. And sorry for my english, ask if you didn't understand something. =)

    Hello, this is terrible problem, which i found in CS 6 softwares ...
    solution i found only working, is uninstall and reinstall full package.. but it is not all,
    you need to do BRAND NEW admin account in windows, and install it there.
    that means, i could not export after repair from encoder in my original account never more (!!)   .. this is really terrible way how to repair this issue, because :
    1.by reinstalling of software, client WASTE HIS TIME
    2.by necessity to begin work in another windows profile you again WASTE YOUR TIME because of learning and migrating all other profile modifications, which i see really unaccpetable. Adobe means, this solution of repair is ok, and they did not do till today any steps of creating some "clever" solution.
    I ask everybody, who will meet this issue in future, guys, please, complain about this situation, give "BUG Report" to them, and write "feature request" to them , in the way of creating some repair tool, which check actual  "broken" connections between encoder and premiere, which refuses to "take material" from it and encode, and REPAIR it automatically..  
       I am not IT, but ..does it seems so hard to create this ? Adobe IT developers should know their systems, and should create such utility tool really easy.
    History of this problem and detailed description, HOW i did "repair" this. With wasting of app 2,5 days of my working time :
    1. after repairing "error 5" problem , i solved it by reinstalling the suite from the new admin user profile (profile B) . 
    I continued my work on my normal working windows profile . (profile A)
    Every cooperation (AE+Pr, export media via "queue" to Encoder) was working fine . . .
    2. suddenly it stop working (without knowing any possible reason - i did not do installations )
    and showed in error export log file :
    "Could not read from the source. Please check if it has moved or been deleted."
    3.repair via procedure(procedure "a"):
    i did this procedure on the profile B (profile from last time installation of repairing problem error 5)
    I did these steps :
    a-uninstall master coll suite
    b-i used Adobe cleaner tool (remove ALL)
    c-removed raw directories in locations
    •C:\Program Files\Adobe
    •C:\Program Files(x86)\Adobe
    •C:\Program Files\Common Files\Adobe
    •C:\Program Files(x86)\Common Files\Adobe
    •C:\ProgramData\Adobe
    d-removed these links from registry file
    •HKEY_LOCAL_MACHINE\SOFTWARE\Adobe
    •HKEY_CURRENT_USER\Software\Adobe
    •HKEY_LOCAL_MACH INE\SOFTWARE\Wow6432Node\Adobe
    •HKEY_CURRENT_USER \Software\Wow6432Node\Adobe
    e-restarted the PC
    f- newly installed the Master Coll CS6
    g-update the software
    result of repair of "3" : problem still exists
    4.Ok i find out after coordination with support, it should have been created  ANOTHER NEW admin account.
    4a:so i did the same procedure (uninstalling) in profile B
    4b: and then i created brand new admin profile (profile C)for INSTALLATION of software
    4c: restarted the pc (and did not updated it yet)
    result :
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile C) : export WORKS
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile B) : export WORKS
    ==exporting of any sequence/raw/AE link video material from premiere via "queue" (Encoder) (profile A) : export DOES NOT WORK ! ! !
    (in profile A, is possible to export some raw video material in encoder which is imported to it via "drag and drop)
    problem i see:, i have my basic profile A, which i am interested to work, because of all my directory modifications are in there..
    this issue should be some "broken" connections between encoder and premiere, which refuses to "take material" from it and encode.
    what i expect :
    to get from Adobe some repair tool, which automatically checks these connections and repair if necessary, without necessity of founding the new profile and reinstallation of whole software.. this is madness !
    what i do NOT expect from Adobe:
    to get from Adobe advice of kind : you have to reinstall full software in new admin profile. sorry , we do not know the solution, because we do not know, how do behave our software.

Maybe you are looking for

  • Key Figure values based on characteristic Drill-downs

    Hello All, I have Issue with my drilldown options in the report. The values of Sales qty need to change at particular drilldown. I have Sales Revenue and Sales QTY key figures in my DSO with  plant, factory, customer and Business type (Values A, B, C

  • I show that my tv shows that are purchased show up in my iCloud folder, but they will not download. Is there something wrong on the Apple end?

    I cannot download any of the new episodes that I recently purchased. It begins to initiate the download but then the status bar in iTunes goes blank and no activity is displayed. I cannot get it to download through the "download previous purchases" e

  • Errors were detected:

    "Errors were detected items can not be copied "when library book is sent to Nook How do you fix this?

  • Cryptic Error ?

    Hello, The j2ee logs show the below error msg. Does anyone have any quick ideas as to what this might mean / encountered before ? #1.5#000D600BBDC5005200000187000AD0EE00041ABE0447F4D5#1155303324775#/Applications/ExchangeInfrastructure#sap.com/com.sap

  • Geotagging option missing in 808 PureView

    My Nokia 808 PureView does not have the option to turn on (or off) the geotagging. The option "Save location info in Camera" in "Settings" never appears in the "Privacy" menu. May I know if this feature is limited to certain area/variants only, or is