Survey NULL exception dialog box

function promptEditSave(){
    try {
        blackberry.ui.dialog.standardAskAsync("Continue without saving?", blackberry.ui.dialog.D_SAVE, editSavePromptCallBack(), {title : "Save changes?", size: blackberry.ui.dialog.SIZE_MEDIUM, position : blackberry.ui.dialog.CENTER});
    }catch (e) {
        alert("Exception in: " + e);
    }
}

For some reason every time I call promptEditSave(); I get this error try/catch: "Exception in: null"

Now ripple is not throwing any errors, but when testing on a device of 9700 OS6 error is thrown...

What I'm doing wrong?

Hi, the only thing that seems to stand out for me is where you set your reminder.  Can you remove the "()" and make it look like this:

... ("Continue without saving?", blackberry.ui.dialog.D_SAVE, editSavePromptCallBack, {title : "Save changes?" ...

Tags: BlackBerry Developers

Similar Questions

  • Why can't I add an exception in the security of the Web sites dialog box? There is only a remove, remove and a close button.

    The bar top security dialog box States exceptions: "passwords for the following Web sites will not be saved:" Unfortunately, there is no way to enter the website! I'm puzzled.

    Hello

    You must enter the log information on the pages themselves, and Firefox will ask you if you want to save this information or not. If you do not save this information, you can see the sites listed in this dialog box.

  • Constantly receipt dialog box message "Windows - No disk" Exception Processing Message c0000013 parameters 75b6f7c 75b6bf7c 75b6bf7c; with the options to CANCEL, TRY AGAIN, or CONTINUOUS.

    Constantly receipt dialog box message "Windows - No disk" Exception Processing Message c0000013 parameters 75b6f7c 75b6bf7c 75b6bf7c; with the options to CANCEL, TRY AGAIN, or CONTINUOUS. By selecting CANCEL or CONTINIUE four times to close the box, but in a short time box reappears.

    I refer you here:
    http://answers.Microsoft.com/en-us/Windows/Forum/windows_xp-system/win-XP-Pro-Windows-nodisk-error-just-agravating/5e0de54b-D921-4897-BEBC-c882e19a76c0?page=1&TM=1307282043410

    You can expect ad try some things.

    You can actually ask why forums MS Answers just can not help with XP problems?

  • I upgraded Lightroom to LR 4.1 on Windows 7. It seems complete and works well with one exception - in the library, the file management module, dialog box (top right) went

    There is probably an easy fix. I reinstalled the upgrade - no change. Council would be ppreciated

    There is a menu bar at the top right of the Lightroom screen which should say 'developing the library' and other things. If you are the menus that you do mean by "File management dialog box" then click on develop and place a check next to the library. If 'File handling dialog' means something else, I guess you need to describe more in detail.

    You can still get at the library from anywhere else in Lightroom by pressing G

  • Problem with dismissing the dialog box

    Hello world

    This is my first post here. Sorry if the question is very simple...

    I need to download an image on server. I display a dialog box to confirm if the file should be downloaded.

    Everything works well except that the dialog box is dismissed after that the whole process is over. I know I'm missing something-related threads. pls help me to understand.

    Here is my code:

    public void fieldChanged(Field f, int context) {
        if (f == addButton) {
                        FileSelectorPopupScreen fps = new   FileSelectorPopupScreen();
            fps.pickFile();
            theFile = fps.getFile();
    
            if (theFile == null) {
                Dialog.alert("Screen was dismissed.  No file was selected.");
            }
            else {
                UiApplication.getUiApplication().invokeAndWait (new  Runnable(){
                public void run(){
                    int confirmationResult = Dialog.ask(Dialog.D_YES_NO, "Do you                    want to upload?", Dialog.YES);
                    if (confirmationResult==Dialog.YES) {
                             status=1;
                    } else {
                             status=0;
                    }
                }
              });
    
            }
    
            if(status==1){
                Thread t= new Thread(){
                    public void run(){
                        //MY CALL TO WEBSERVICE                     }
                }};
    
                try{
                    t.start();
                    t.join();                                           refreshData(); //call to method to post the image data to server                        //and refresh the screen with new image
                }
                catch(Exception e){
    
                }
    
                }
            }
    
        }
    

    My problem is that the I selected YES the dialog box only after the call to webservice licensees are completed and the image is published on the server and the screen is refreshed with the new image.

    Let me know what I'm missing.

    Welcome to the forum!

    Correctly, you start the process of network on a separate Thread.  Then you attach the wire event for this Thread by using the following instructions:

    t.Start ();
    t.Join ();

    So you give up the thread of events not until your networking activity has finished.  It does not block your event feed so that your application will become unresponsive to the user and as you noted, activities requiring feed event, such as the removal of your dialog box, cannot occur.

    You must reprogram your treatment so that the activity of the network as a completely asynchronous operation.  You can't wait on this.  You should get to tell you when it has finished.  I suggest that looking at the observer model during the implementation of this process.

  • Contextual dialog box before you call network - not in the EXPECTED order

    In my application, I would like to display a dialog box, while the application is retrieving data from a web server.  What I find is that the dialog box is not displayed until the data recovery is complete.  Don't know what I'm doing wrong, but here are my code snippets.  Suggestions are appreciated.

    public class HomeScreen extends MainScreen  {
    
        private ImageScreen imageScreen;
    
        private MenuItem  viewImage = new MenuItem("View Image",100,10) {
          public void run() {
                imageScreen = new ImageScreen();            UiApplication.getUiApplication().pushScreen(imageScreen);
             imageScreen.getImage();
          }
        };}
    
    public class  ImageScreen extends MainScreen {   private Dialog statusDlg; 
    
       public ImageScreen() {           statusDlg = new Dialog("Loading...",null,null,0,icon);       
    
           // some other initializations here   } 
    
        public void getImage() throws Exception {        statusDlg.show();
    
            // create the connection...        HttpConnection conn = (HttpConnection) Connector.open(URL,Connector.READ_WRITE, true);        conn.setRequestMethod(HttpConnection.POST);
    
            // set paramters and write out requests here        .        .        .
    
            // open input stream to get response from server        InputStream in = conn.openInputStream();
    
            // process the response        processResponse(conn.getResponseCode(), in);          
    
            // close everything out        .        .    }  
    
        public void processResponse(final int HTTPResponseCode, final InputStream inputStream)     {
    
          UiApplication.getUiApplication().invokeLater(new Runnable() {        public void run()        {          statusDlg.close();
    
              // process response here          .          .          .        }      });        }    
    
    }
    

    I want to see is a blank screen with a pop - up dialog box indicating that the data is "Loading"... ", while imageScreen.getImage () is executed (I voluntarily added latency in my HTTP response to simulate the network latency).  But instead, I see that the application remains on the screen (home screen), while the data are read.  Once the data is extracted, the new screen (ImageScreen) is displayed and the dialog box opens for a fraction of a second.

    I hope this makes sense.  I can clarify more, otherwise.

    It's because you make blocking network operation of e/s on the event thread (aka user interface thread). The getImage method is called on the thread of the event, this method calls the blocking network i/o operation. After processing the event of the user interface that caused the getImage method is called, the event thread starts processing the next events, which tells the OS to display your popup. This, obvsiouly, doesn't happen until GetImage ends.

    What GetImage should probably do is network IO unloading in another thread (for example, starting a new thread).

  • How to close this dialog box modal blocking and open a new one after a few minutes

    It's my method to display a modal dialog box:

    public static dialogue handleInactivityDialog (String msg, int [] values) {}
    Diálogo dialog = new dialog box (msg, new String() {"Yes", "No"}, values, 2, null);
    int i = dialogo.doModal ();
    If (I == 1) {}
    try {}
    do something
    Utils.popScreenForLogout ();
    } catch (Exception e) {}
    Utils.forceLogout ();
    }
    }
    return of diálogo;

    }

    After 3 minutes, this dialogue must be closed and should be opened a new. The new dialog box must be closed after 1 minute.

    I have no idea on how to do as DIalog.doModal () is a blocking operation.

    Thanks in advance!

    You can start a timertask before calling doModal, for example.

  • How can open 3GP video, I remove Open or save for a device browser dialog box?

    How can I design the following?

    A user clicks on a link video 3GP appearing open using the browser on the device:

    private void launchBrowser(int browserType, String url) {
      BrowserSession browserSession = createBrowserSession(browserType);
      browserSession.displayPage(url);
      browserSession.showBrowser();
    }
    

    The browser opens, but the user sees a dialog box with the instruction 'do you want to open or save the item?' more open, save and Cancel button.

    If the user selects open, the 3GP file plays without problem.

    I would rather 3GP just play the video to the user.

    1. Is there a way to remove the open or save dialog box for the device of the browser?
    2. What is ill-conceived and should I use a BrowserField?
    3. I'd rather a way to get the next job, but I'm short on time...
    public final class PlayVideo implements PlayerListener {
    
    private Player player;
    private VideoControl videoControl;
    
    private Video video;
    
    public PlayVideo(Video video) {
    this.video = video;
    }
    
    public void openVideoFullUrl() {
    final String url = video.getVideoURL();
    
    if (url != null) {
    Runnable r = new Runnable() {
    public void run() {
    new Browser(url);
    }
    };
    
    new Thread(r, "Event").start();
    }
    }
    
    public void openVideo() {
    
    try {
    if (this.video.getVideoURL() != null) {
    int transportType = 0;
    TransportDetective td = new TransportDetective();
    
    if (td.isCoverageAvailable(TransportDetective.TRANSPORT_TCP_CELLULAR)) {
    transportType = TransportDetective.TRANSPORT_TCP_CELLULAR;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_WAP)) {
    transportType = TransportDetective.TRANSPORT_WAP;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_WAP2)) {
    transportType = TransportDetective.TRANSPORT_WAP2;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_MDS)) {
    transportType = TransportDetective.TRANSPORT_MDS;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_BIS_B)) {
    transportType = TransportDetective.TRANSPORT_BIS_B;
    } else if (td
        .isCoverageAvailable(TransportDetective.TRANSPORT_TCP_WIFI)) {
    transportType = TransportDetective.TRANSPORT_TCP_WIFI;
    }
    
    HTTPRequestRunnable getData = new HTTPRequestRunnable(
        video.getVideoURL(), null, transportType, false);
    getData.run();
    
    String errorMessage = getData.getErrorMessage();
    if (errorMessage == null) {
    if (getData.gotResponse()) {
        byte[] response = getData.getResponse();
        if (response.length > 0) {
          // URL without suffix.
            String redirectedUrl = getData
                    .getCleanConnectionURL();
    
            player = Manager.createPlayer(redirectedUrl);
            player.setLoopCount(1);
            player.prefetch();
            player.realize();
    
            videoControl = (VideoControl) player
                    .getControl("VideoControl");
            videoControl.initDisplayMode(
                    VideoControl.USE_DIRECT_VIDEO, this);
            videoControl.setVisible(true);
    
        }
    }
    }
    }
    } catch (IllegalStateException e) {
    Logger.logEventWarn("[PlayVideo] Illegal state: " + e.getMessage());
    } catch (IllegalArgumentException e) {
    Logger.logEventWarn("[PlayVideo] Illegal arg: " + e.getMessage());
    } catch (SecurityException e) {
    Logger.logEventWarn("[PlayVideo] Security: " + e.getMessage());
    } catch (Exception e) {
    Logger.logEventWarn("[PlayVideo] " + e.getMessage());
    }
    }
    
    public void playerUpdate(Player player, String event, Object eventData) {
    if (event == PlayerListener.BUFFERING_STARTED) {
    Logger.debug("[PlayVideo] BUFFERING_STARTED.");
    } else if (event == PlayerListener.BUFFERING_STOPPED) {
    Logger.debug("[PlayVideo] BUFFERING_STOPPED.");
    } else if (event == PlayerListener.STARTED) {
    Logger.debug("[PlayVideo] STARTED.");
    } else if (event == PlayerListener.STOPPED) {
    Logger.debug("[PlayVideo] STOPPED.");
    } else if (event == PlayerListener.ERROR) {
    Logger.debug("[PlayVideo] ERROR.");
    } else if (event == PlayerListener.END_OF_MEDIA) {
    Logger.debug("[PlayVideo] END_OF_MEDIA.");
    }
    }
    }
    

    Have you tried to invoke the media application directly by using the content (CHAP) API Manager?

    Invoke the media application

    http://supportforums.BlackBerry.com/T5/Java-development/invoke-the-media-application/Ta-p/442964

  • Retrieve the value of the dialog box

    Hello

    I have a class that extends the dialog box. A few Radiobuttns are added. I want to get the value of the RadioButton selected the actual class of the screen, call the dialog box by clicking the Dialog.OK button. The code I tried is as follows:

    My class of the screen:

                    XXXDialog clScrn = new XXXDialog ();
                    if (clScrn.doModal() == Dialog.OK) {
    
                        // I click Ok, but this is never shown
                        Dialog.alert("Closed & here");
                        Dialog.alert("Selected = " + clScrn.getSelectedItem());
                    }
                    clScrn = null;
    

    The dialog class-

      public XXXDialog() {
            super(Dialog.D_OK, "Select Item", Dialog.OK, null, VERTICAL_SCROLL | VERTICAL_SCROLLBAR | Field.USE_ALL_WIDTH | Field.USE_ALL_HEIGHT);
            rbg = new RadioButtonGroup();
            rb1 = new RadioButtonField("One", rbg, false, Field.USE_ALL_WIDTH);
            rb2 = new RadioButtonField("Two", rbg, false, Field.USE_ALL_WIDTH);
    
            rb1.setChangeListener(this);
            rb2.setChangeListener(this);
    
            add(rb1);
            add(rb2);
        }
    
        public void fieldChanged(Field f, int context) {
    /*
    Actually, I want to know which field was clicked RadioButton or Ok button. If it is Ok, then I want to hide and return back to screen.
    */
    
            try {
                    RadioButtonField fd = (RadioButtonField) f;
                    item = fd.getLabel();
                    System.out.println("Selected = " + item);
            } catch (Exception e) {
            }
    
            try{
                ButtonField fd = (ButtonField) f;
                System.out.println("********* Button PRESSED = " + f);
                this.close();
            } catch (Exception e) {
            }
    
            System.out.println("*********** Field Count = " + f.getManager().getFieldCount() + " Index = " + f.getIndex());
        }
    
        public String getSelectedItem() {
            return item;
        }
    

    The XXXDialog class is in a separate file of java.

    Can anyone help me on what to do and how to achieve the goal.

    Thank you

    I found my solution. What I did is: -.

    In my main screen, I call the as dialog box

    clScrn.doModal ();

    Dialog.Alert (Come Back here");   I see this alert as soon as the dialog box is closed.

    In my class of dialogue, I have only the Ok button, dialog can be closed using the ESC key as I implemetned the code-

    Dialog box does not close on ESC
    {} public boolean keyChar (key char, int status, int time)
    Boolean retVal = false;
    {Switch (Key)}
    case Characters.ESCAPE:
    break;
    }
    Return retVal;
    }

    So now, there is no other means to close the exception, Ok button dialog box and I make sure that when Ok is clicked, 1 radiobutton is selected.

    Thank you all for the time and effort.

  • How to create a dialog box for an inner thread

    Hi all

    I am trying to create a thread in which I am trying to establish an http connection. But when there is an exception. I want to inform the user of the exception by pushing a dialogue or a modal screen. But the dialogue is not calling. Any body knows how to push the inner thread dialog box

    / public class GPRSChanlInf implements Runnable {}

    public static thread = null;

    public String getResponse (String url_final) {}

    thread = new Thread (this);
    thread. Start();
    Thread.Sleep (20);

    }

    public void run() {}
    InputStream is = null;
    OutputStream os = null;
    HttpConnection conn = null;

    try {}

    Conn = (HttpConnection) Connector.open (url_final, Connector.READ_WRITE, true);

    }

    catch (Exception e) {e.printStackTrace () ;}
    }

    Looks OK code, intervened you in the code to ensure that the dialog box is actually called?

    Also can you confirm that this code is executed by a UiApplication who has "enterEventDispatcher()."

  • How can I do to block the main thread when to display a dialog box

    I have a problem to block the user interface main thread when to display a dialog box (the dialog was created by the main Application), and when the dialog box is closed, the main Application can go to the next step.
    Here is my code:

    SerializableAttribute public class TitledPaneExample extends Application {}
    instance of TitledPaneExample private;
    StackPane mainModalDimmer;

    /*
    * (non-Javadoc)
    *
    * @see javafx.application.Application #start (javafx.stage.Stage)
    */
    @Override
    public void start (point primaryStage) bird Exception {}
    instance = this;
    primaryStage.setTitle (this.getClass () m:System.NET.SocketAddress.ToString ());

    final StackPane layerPane = new StackPane();
    layerPane.setDepthTest (DepthTest.DISABLE);
    layerPane.setStyle ("background - fx - color: BLACK ;"); ")

    Vb VBox = new VBox();
    vb.setStyle ("background - fx - color: BLUE ;"); ")
    vb.getChildren () .add new (Label ("1"));
    vb.getChildren () .add (Label ("2")) new;
    vb.getChildren () .add new (Label ("3"));
    vb.getChildren () .add (Label ("4")) new;

    Bt1 button = new Button ("bt1");
    BT1.setOnAction (new EventHandler < ActionEvent > () {}
    {} public void handle (ActionEvent event)
    System.out.println ("bt1 trying to the new dialog box > > >");
    Dialogue di = new dialog box (instance, "some trick here!");
    System.out.println ("bt1 dialogue again successfully, try to show");
    di. Show();
    System.out.println ("bt1 dialog hide? < < < < ");"
    }
    });
    vb.getChildren () .add (bt1).

    layerPane.getChildren () .add (vb);

    mainModalDimmer = new StackPane();
    mainModalDimmer.setId ("MainModalDimmer");
    mainModalDimmer.setMaxSize (Double.MAX_VALUE, Double.MAX_VALUE);
    mainModalDimmer.setVisible (false);
    mainModalDimmer.setStyle ("background - fx - color: RED ;"); ")
    layerPane.getChildren () .add (mainModalDimmer);

    Scene sc = new scene (layerPane, 800, 600);
    primaryStage.setResizable (true);
    primaryStage.setScene (sc);
    primaryStage.show ();

    }

    /**
    * Display the node given as a floating dialog on the entire application, with
    * the rest of the application grayed out and blocked from mouse events.
    *
    @param message
    */
    {} public void showModalMessage (message from node)
    mainModalDimmer.getChildren () .add (message);
    mainModalDimmer.setOpacity (0);
    mainModalDimmer.setVisible (true);
    mainModalDimmer.setCache (true);
    TimelineBuilder
    . Create()
    () .keyFrames
    new KeyFrame (Duration.seconds (1),)
    new EventHandler < ActionEvent > () {}
    {} public void handle (ActionEvent t)
    mainModalDimmer.setCache (false);
    }
    }, new KeyValue (mainModalDimmer
    . opacityProperty(), 1.
    Interpolator.EASE_BOTH))) infrastructure)
    . Play();
    }

    /**
    Hide the any modal message that appears
    */
    public void hideModalMessage() {}
    mainModalDimmer.setCache (true);
    TimelineBuilder
    . Create()
    () .keyFrames
    new KeyFrame (Duration.seconds (1),)
    new EventHandler < ActionEvent > () {}
    {} public void handle (ActionEvent t)
    mainModalDimmer.setCache (false);
    mainModalDimmer.setVisible (false);
    mainModalDimmer.getChildren () .clear ();
    }
    }, new KeyValue (mainModalDimmer
    . opacityProperty(), 0,.
    Interpolator.EASE_BOTH))) infrastructure)
    . Play();
    }

    /**
    @param args
    */
    Public Shared Sub main (String [] args) {}
    Launch();
    }

    Dialogue/public class extends TitledPane {}
    private owner of TitledPaneExample = null;
    instance of TitledPane private;

    Dialogue (owner of TitledPaneExample, String message) {}
    This.Owner = owner;
    this.parentThreand = Thread.currentThread ();
    This.instance = this;
    this.setExpanded (true);
    this.setText ("Dialog");
    this.setMaxWidth (400);
    this.setPrefWidth (300);
    this.setMinWidth (200);

    Label the tx = new Label ("message");
    tx.setTooltip (new Tooltip (message));
    tx.setWrapText (true);
    tx.setContentDisplay (ContentDisplay.LEFT);

    Bt button = new Button ("OK");
    bt.setOnAction (new EventHandler < ActionEvent > () {}
    {} public void handle (ActionEvent event)
    masquer();
    }
    });

    Sp ScrollPane = new ScrollPane();
    sp.setHbarPolicy (ScrollBarPolicy.AS_NEEDED);
    sp.setVbarPolicy (ScrollBarPolicy.AS_NEEDED);
    sp.setContent (tx);

    Hb HBox = new HBox (30);
    hb.setPrefHeight (40);
    hb.setAlignment (Pos.CENTER_RIGHT);
    hb.getChildren () .add (bt);

    BP BorderPane = new BorderPane();
    bp.setCenter (sp);
    bp.setBottom (hb);

    this.setContent (bp);
    }

    {} public void show()
    System.out.println ("dialogue show() 1 > > >");

    owner.showModalMessage (instance);

    System.out.println ("dialogue show() 2 > > >");

    }

    public void masquer() {}
    System.out.println ("dialogue masquer() 1 > > >");
    this.owner.hideModalMessage ();

    System.out.println ("dialogue masquer() 2 > > >");
    }
    }

    }

    I'm also interested in how to do this without the use of a step.

    But, if you are ready to use a step for this, you can create a useful first step (without borders) with its owner being your current stage. Then, you can call the function showAndWait on stage that allows to block the thread of your application. For example, I implemented a DialogStage like this:

    package hs.mediasystem.util;
    
    import javafx.animation.KeyFrame;
    import javafx.animation.KeyValue;
    import javafx.animation.Timeline;
    import javafx.event.EventHandler;
    import javafx.scene.effect.ColorAdjust;
    import javafx.stage.Modality;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    import javafx.stage.WindowEvent;
    import javafx.util.Duration;
    
    public class DialogStage extends Stage implements Dialog {
    
      public DialogStage() {
        super(StageStyle.TRANSPARENT);
    
        this.setTitle("MediaSystem-dialog");
    
        initModality(Modality.APPLICATION_MODAL);
      }
    
      protected void setParentEffect(Stage parent) {
        ColorAdjust colorAdjust = new ColorAdjust();
    
        Timeline fadeOut = new Timeline(
          new KeyFrame(Duration.ZERO,
            new KeyValue(colorAdjust.brightnessProperty(), 0)
          ),
          new KeyFrame(Duration.seconds(1),
            new KeyValue(colorAdjust.brightnessProperty(), -0.5)
          )
        );
    
        parent.getScene().getRoot().setEffect(colorAdjust);
    
        fadeOut.play();
      }
    
      protected void removeParentEffect(Stage parent) {
        parent.getScene().getRoot().setEffect(null);
      }
    
      protected void recenter() {
        Window parent = getOwner();
    
        sizeToScene();
    
        setX(parent.getX() + parent.getWidth() / 2 - DialogStage.this.getWidth() / 2);
        setY(parent.getY() + parent.getHeight() / 2 - DialogStage.this.getHeight() / 2);
      }
    
      @Override
      public final void showDialog(final Stage parent, boolean synchronous) {
        initOwner(parent);
    
        setParentEffect(parent);
    
        setOnShown(new EventHandler() {
          @Override
          public void handle(WindowEvent event) {
            recenter();
            onShow();
          }
        });
    
        if(synchronous) {
          showAndWait();
        }
        else {
          show();
        }
      }
    
      protected void onShow() {
      }
    
      @Override
      public void close() {
        removeParentEffect((Stage)getOwner());
        super.close();
      }
    }
    
  • Completely disable the "Untrusted connection" dialog box

    I am a professional developer stuck behind a proxy at work. The behavior of this power of Attorney causes the SSL connection attempts get a certificate signed by my company, not the web site I try to connect to. I have no control over the proxy, so change this behaviour is out of the question.

    I need to use Firefox for a number of things and am generally fine adding exceptions for sites that I want to connect. However, some sites like github.com loading resources many other areas via SSL (CDN, Google Analytics, Gravatar, etc.). For these sites, I try to add exceptions in order to allow the company a signed, cert but I can only add to github.com, not any other sites, so even after adding an exception I'm brought back in the right to the page "this connection is untrusted". No matter how many times I try to grant a waiver, I never really get to github.com.

    Other browsers on my system are administered remotely and seem to be configured to automatically trust signed certs society. I need to know how to manually configure Firefox to always trust these certificates OR never shows me the unreliable connection dialog box and just maybe show red in the address bar when he does not trust the site cert.

    Apparently in OS X, there are at the level of the authorities of certification system. I don't know why it does not use Firefox, but I was able to export the CA company and import it in Firefox. Finally solved my problem.

  • NB - 100 cannot low display large shallow on-screen dialog boxes

    Hello

    I just bought the NB100 Netbook with Ubuntu Linux. I'm very happy with it, except this problem related to the shallow size of the screen (and the grey keyboard letters).

    If there is a large box on the screen, I can't scroll to the top to access fields and buttons at the bottom of the dialog box.

    I tried to change the resolution of the screen with Fn + Esc. This seems only toggle between two settings of width of police and does not help. The zoom works Fn + a or Fn + s doesn't seem to work in dialog boxes.

    My problem is that the printer in format Adobe Acrobat dialog box is deeper than the screen and I see not the print button. If the screen is enabled by default, you can press BACK to activate the print default button, but if the focus is shifted to a field, pressing return will not start printing function.

    I guess it would also be a problem on Windows computers, because it is a standard Adobe Print dialog box. On Windows, it is probably possible to change the resolution of my computer screen.

    Someone knows how to change the Ubuntu Linux screen resolution, I hope temporarily, for such situations?

    Post edited by: ozwriter

    Use [alt] and the left mouse button to move the window.

  • Dialog box retains the entries

    Hello world

    I created a box of script and dialogue for the people in my office to use. I intend for people to take what I've created and save it to their computer this way with the master copy never gets dirty. In this dialog box, the user must enter a number of variables and test settings that I saved as variables such as T1, L1, R1,... etc. Is it possible that when you close diadem and reopen the data of a former test that you can fill out the dialog box with entries that have previously been entered. Now everthing resets to 0 if you completely close Diadem. Because the way in which there are a number of fields, you must enter it would be pretty annoying to have to fill it every time. I am currently using Diadem 2015. Unforunately I don't think that I can provide this code and dialog box to you guys so I hope it's clear enough.

    Thanks for any help

    So I found a solution to my problem. The way I solved the problem and was able to keep the values in the dialog box was using a global dimension and create a channel to store these values.

    If groupindexget ("VariablesV2") = 2 then ' occurs when there is a variable channel

    GlobalDim1 = CHDX (1,2)
    Call SUDDlgShow ("Dlg1", MyFolders (0) & "NoName.SUD", NULL)
    ChD (1, "VariablesV2/TestVarChanName") = GlobalDim1

    else ' happens when there is NO variable channel

    Group = "VariablesV2."
    Call GetCreateGroup (Group)
    TestVar1 = GetChannel ("TestVarChanName", 1, "Digital", group)
    Call SUDDlgShow ("Dlg1", MyFolders (0) & "NoName.SUD", NULL)
    ChD (1, "VariablesV2/TestVarChanName") = GlobalDim1
     
    End if

    Basically, what it does is check if the variable group is present as the second group. If it isn't then it creates the group, then channels, I need. I then called the dialog box where I can enter the values in the text box who assined to the variables 'GlobalDim1' which he. I then store this value in the channel that I just created. When I reload the tiara, the script will see this channel, open the dialog and display this value and I can then choose to change this value or would it be let. I won't say it's the best way to do it, but until now it works. I'll see how it behaves when I have a long list of variables/channels.

  • What about a required no program that floods the screen with their pop-up windows dialog box explaining why underwriters for their care antivirus

    It is impossible to use my XP computer.  If I click on an ICON to desktop, or any other program, nothing happens. In addition, the screen is filled with their pop-up dialog box. Yes, the block popups is turned on. Any program is selected, except Microsoft Outlook, a message topic infection arises.  "Care ANTIVIRUS SYSTEM" will fix everything if I sign up for their program. Already, I have several programs to do this, but right now can not get any. In the meantime, I'm dead in the water.  The XP system was working fine until this problem appeared. I can't help but think this is a deliberate attempt to acquire a new customer.  And if it is true, the company should be run out of business. Please help me.

    Take a look at the forum anti virus and malware.

    the malware even you have answers there.

Maybe you are looking for