stop request

I have a Palm TX and have learned that when you turn off the Palm, application continue to run while the screen is black.  So the next time you turn, application, no need to be loaded and lunch, which resulted in a quick response.

But this function happens to lose the battery to maintain demand in stand by. Sometimes, it keeps running and the dishes all fees on the rise!

Does anyone know how to disconnect these requests when the Palm is turned off? It will be better if I can chose which one to disconnect.

Since you do not name requests that interested I can give you specific instructions. Native applications do not continue to run after you exit them, only the clock is.

Some third-party applications have settings to turn off the screen while they run, like PocketTunes. It should be obvious to the user when PocketTunes runs. It takes two presses the hard button to terminate the application.

The incompatible third-party applications can be a problem for going out, suggest that upgrade you to the compatible version or delete.

Message relates to: Palm TX

Tags: HP Tablets

Similar Questions

  • Desktop Pavilion a4237c: dialog box saying "Runtime" stop requested "in an unusual way.

    When you open a program by a desktop icon after the start (most often occurs with mail Outlook 2013), a dialog box appears:

    Microsoft Visual C++ Runtime Library.  This application has requested the execution to terminate in an unusual way.   For more information, please contact the support team.

    I have no idea what this message means or what to due to solve the problem or the question of whether the message about a Microsoft Team or a team of HP.

    Pavilion a4327c

    Microsoft Windows 7 32 & 64-bit

    Microsoft Outlook 2013

    OpenOffice 4.1.1

    GSM

    GSM

    Hi there @GFS,

    I understand that you had a Visual c++ Runtime library error message. I'm happy to help you with this.

    Normally this error will occur when something is missing on your system required for a program to run.  I found this post on the Microsoft site which covers somethings to try.

    Microsoft Visual C++ Runtime Library error message - answers.microsoft.com

    Try it and let me know. If there is still an error, please report it. It can refer to a specific DLL.

  • How can I get Vista to stop request permission to run a specific program?

    The specific program is "iomega quikProtect" - this is the backup software so I want my children to be able to run it without giving them an admin password.

    The specific program is "iomega quikProtect" - this is the backup software so I want my children to be able to run it without giving them an admin password.

    You can disable UAC, user account control. It is not recommended, a lot of people who do anyway.
    Start > Control Panel > Classic view > user accounts > turn user account control on or off > decide what option you want. For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Stop bucle in earnest any of tiempo

    Hola a todos. Tengo una pequeña sober concern UN programa as estoy realizando, a worm if I can help. El programa as the closing of a recorder of data through series data, the cuestion're than quiero show los datos temp y humedad cada minuto is para eso uitilizo a delay. El problema surge cuando quiero stop the para y presiono el Stop boton para el ciclo while making, este espera hasta end el tiempo retardo y para esto despues para the del programa. MI pregunta're TR are alguna manera of Quebec in any earnest problemas para atienda the Stop request that performed. O TR en su defecto Roman puedo has an action of any boton en instante any of tiempo sin tener wait has for complete el bucle.

    Gracias

    It's a simple solution.

  • BPS dialogues seem to stop working after the initialization of the OpenGL

    In the following example (the main.c to GLES20Template), if the call to show_alert (taken from the example of the dialog box) is performed before the call to bbutil_init_egl, we see a dialog box.  Otherwise, we do not see a dialog box (or an error message explaining what we did wrong).  That passed?

    OpenGL is not compatible with BPS?

    Anyone know how to get the dialogs BPS works in an application that uses OpenGL?

    /*
     * Copyright (c) 2011-2012 Research In Motion Limited.
     *
     * Licensed under the Apache License, Version 2.0 (the "License");
     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     * http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    #include 
    
    #include 
    #include 
    
    #include 
    
    #include "bbutil.h"
    
    #include "pthread.h"
    #include 
    
    dialog_instance_t alert_dialog;
    
    static GLfloat vertices[8];
    static GLfloat colors[16];
    
    static GLuint program;
    
    static GLuint transformLoc;
    static GLuint positionLoc;
    static GLuint colorLoc;
    
    static GLfloat matrix[16] = {1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1};
    
    static GLuint vertexID;
    static GLuint colorID;
    
    static screen_context_t screen_cxt;
    
    EGLContext derived_ctx;
    
    void handleScreenEvent(bps_event_t *event) {
        screen_event_t screen_event = screen_event_get_event(event);
    
        int screen_val;
        screen_get_event_property_iv(screen_event, SCREEN_PROPERTY_TYPE, &screen_val);
    
        switch (screen_val) {
        case SCREEN_EVENT_MTOUCH_TOUCH:
        case SCREEN_EVENT_MTOUCH_MOVE:
        case SCREEN_EVENT_MTOUCH_RELEASE:
            break;
        }
    }
    
    int initialize() {
        //Initialize vertex and color data
        vertices[0] = -0.25f;
        vertices[1] = -0.25f;
    
        vertices[2] = 0.25f;
        vertices[3] = -0.25f;
    
        vertices[4] = -0.25f;
        vertices[5] = 0.25f;
    
        vertices[6] = 0.25f;
        vertices[7] = 0.25f;
    
        colors[0] = 1.0f;
        colors[1] = 0.0f;
        colors[2] = 1.0f;
        colors[3] = 1.0f;
    
        colors[4] = 1.0f;
        colors[5] = 1.0f;
        colors[6] = 0.0f;
        colors[7] = 1.0f;
    
        colors[8] = 0.0f;
        colors[9] = 1.0f;
        colors[10] = 1.0f;
        colors[11] = 1.0f;
    
        colors[12] = 0.0f;
        colors[13] = 1.0f;
        colors[14] = 1.0f;
        colors[15] = 1.0f;
    
        //Query width and height of the window surface created by utility code
        EGLint surface_width, surface_height;
    
        eglQuerySurface(egl_disp, egl_surf, EGL_WIDTH, &surface_width);
        eglQuerySurface(egl_disp, egl_surf, EGL_HEIGHT, &surface_height);
    
        // Create shaders
        const char* vSource =
                "precision mediump float;"
                "uniform mat4 u_projection;"
                "uniform mat4 u_transform;"
                "attribute vec4 a_position;"
                "attribute vec4 a_color;"
                "varying vec4 v_color;"
                "void main()"
                "{"
                "    gl_Position = u_projection * u_transform * a_position;"
                "    v_color = a_color;"
                "}";
    
        const char* fSource =
                "varying lowp vec4 v_color;"
                "void main()"
                "{"
                "    gl_FragColor = v_color;"
                "}";
    
        GLint status;
    
        // Compile the vertex shader
        GLuint vs = glCreateShader(GL_VERTEX_SHADER);
        if (!vs) {
            fprintf(stderr, "Failed to create vertex shader: %d\n", glGetError());
            return EXIT_FAILURE;
        } else {
            glShaderSource(vs, 1, &vSource, 0);
            glCompileShader(vs);
            glGetShaderiv(vs, GL_COMPILE_STATUS, &status);
            if (GL_FALSE == status) {
                GLchar log[256];
                glGetShaderInfoLog(vs, 256, NULL, log);
    
                fprintf(stderr, "Failed to compile vertex shader: %s\n", log);
    
                glDeleteShader(vs);
            }
        }
    
        // Compile the fragment shader
        GLuint fs = glCreateShader(GL_FRAGMENT_SHADER);
        if (!fs) {
            fprintf(stderr, "Failed to create fragment shader: %d\n", glGetError());
            return EXIT_FAILURE;
        } else {
            glShaderSource(fs, 1, &fSource, 0);
            glCompileShader(fs);
            glGetShaderiv(fs, GL_COMPILE_STATUS, &status);
            if (GL_FALSE == status) {
                GLchar log[256];
                glGetShaderInfoLog(fs, 256, NULL, log);
    
                fprintf(stderr, "Failed to compile fragment shader: %s\n", log);
    
                glDeleteShader(vs);
                glDeleteShader(fs);
    
                return EXIT_FAILURE;
            }
        }
    
        // Create and link the program
        program = glCreateProgram();
        if (program)
        {
            glAttachShader(program, vs);
            glAttachShader(program, fs);
            glLinkProgram(program);
    
            glGetProgramiv(program, GL_LINK_STATUS, &status);
            if (status == GL_FALSE)    {
                GLchar log[256];
                glGetProgramInfoLog(fs, 256, NULL, log);
    
                fprintf(stderr, "Failed to link shader program: %s\n", log);
    
                glDeleteProgram(program);
                program = 0;
    
                return EXIT_FAILURE;
            }
        } else {
            fprintf(stderr, "Failed to create a shader program\n");
    
            glDeleteShader(vs);
            glDeleteShader(fs);
            return EXIT_FAILURE;
        }
    
        glUseProgram(program);
    
        // Set up the orthographic projection - equivalent to glOrtho in GLES1
        GLuint projectionLoc = glGetUniformLocation(program, "u_projection");
        {
            GLfloat left = 0.0f;
            GLfloat right = (float)(surface_width) / (float)(surface_height);
            GLfloat bottom = 0.0f;
            GLfloat top = 1.0f;
            GLfloat zNear = -1.0f;
            GLfloat zFar = 1.0f;
            GLfloat ortho[16] = {2.0 / (right-left), 0, 0, 0,
                                0, 2.0 / (top-bottom), 0, 0,
                                0, 0, -2.0 / (zFar - zNear), 0,
                                -(right+left)/(right-left), -(top+bottom)/(top-bottom), -(zFar+zNear)/(zFar-zNear), 1};
            glUniformMatrix4fv(projectionLoc, 1, false, ortho);
        }
    
        // Store the locations of the shader variables we need later
        transformLoc = glGetUniformLocation(program, "u_transform");
        positionLoc = glGetAttribLocation(program, "a_position");
        colorLoc = glGetAttribLocation(program, "a_color");
    
        // We don't need the shaders anymore - the program is enough
        glDeleteShader(fs);
        glDeleteShader(vs);
    
        // Generate vertex and color buffers and fill with data
        glGenBuffers(1, &vertexID);
        glBindBuffer(GL_ARRAY_BUFFER, vertexID);
        glBufferData(GL_ARRAY_BUFFER, sizeof(vertices), vertices, GL_STATIC_DRAW);
    
        glGenBuffers(1, &colorID);
        glBindBuffer(GL_ARRAY_BUFFER, colorID);
        glBufferData(GL_ARRAY_BUFFER, sizeof(colors), colors, GL_STATIC_DRAW);
    
        // Perform the same translation as the GLES1 version
        matrix[12] = (float)(surface_width) / (float)(surface_height) / 2;
        matrix[13] = 0.5;
        glUniformMatrix4fv(transformLoc, 1, false, matrix);
    
        //////////////////////////////////////////////////////////////
        // Test code to stimulate multi-threading bug:
    
        EGLint contextAttribs[] = { EGL_CONTEXT_CLIENT_VERSION, 2, EGL_NONE, EGL_NONE };
    
        // Create a shared context:
        derived_ctx = eglCreateContext(egl_disp, egl_conf, egl_ctx, contextAttribs);
    
        return EXIT_SUCCESS;
    }
    
    /*void* aThread(void *not_used) {
    
        EGLint numConfigs;
        EGLConfig auxConfig;
        EGLSurface auxSurface;
    
        const EGLint auxConfigAttribs[] =
            {
                EGL_SURFACE_TYPE, EGL_PBUFFER_BIT,
                EGL_BLUE_SIZE, 8,
                EGL_GREEN_SIZE, 8,
                EGL_RED_SIZE, 8,
                EGL_ALPHA_SIZE, 0,
                EGL_DEPTH_SIZE, 0,
                EGL_STENCIL_SIZE, 0,
                EGL_NONE
            };
    
        EGLint pbufferAttribs[] =
            {
                EGL_WIDTH, 1,
                EGL_HEIGHT, 1,
                EGL_TEXTURE_TARGET, EGL_NO_TEXTURE,
                EGL_TEXTURE_FORMAT, EGL_NO_TEXTURE,
                EGL_NONE
            };
    
        eglChooseConfig(egl_disp, auxConfigAttribs, &auxConfig, 1, &numConfigs);
        auxSurface = eglCreatePbufferSurface(egl_disp, auxConfig, pbufferAttribs);
    
        EGLBoolean  result = eglMakeCurrent(egl_disp, auxSurface, auxSurface, derived_ctx);
        if (result == EGL_FALSE){
            fprintf(stderr, "UNABLE TO MAKE CONTEXT CURRENT\n");
            //int err = glGetError();
            bbutil_terminate();
        } else {
            fprintf(stderr, "made shared context current!\n");
        }
        return NULL;
    }*/
    
    void render() {
        // Increment the angle by 0.5 degrees
        static float angle = 0.0f;
        angle += 0.5f * M_PI / 180.0f;
    
        //Typical render pass
        glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
    
        // Enable and bind the vertex information
        glEnableVertexAttribArray(positionLoc);
        glBindBuffer(GL_ARRAY_BUFFER, vertexID);
        glVertexAttribPointer(positionLoc, 2, GL_FLOAT, GL_FALSE, 2 * sizeof(GLfloat), 0);
    
        // Enable and bind the color information
        glEnableVertexAttribArray(colorLoc);
        glBindBuffer(GL_ARRAY_BUFFER, colorID);
        glVertexAttribPointer(colorLoc, 4, GL_FLOAT, GL_FALSE, 4 * sizeof(GLfloat), 0);
    
        // Effectively apply a rotation of angle about the y-axis.
        matrix[0] = cos(angle);
        matrix[2] = -sin(angle);
        matrix[8] = sin(angle);
        matrix[10] = cos(angle);
        glUniformMatrix4fv(transformLoc, 1, false, matrix);
    
        // Same draw call as in GLES1.
        glDrawArrays(GL_TRIANGLE_STRIP, 0 , 4);
    
        // Disable attribute arrays
        glDisableVertexAttribArray(positionLoc);
        glDisableVertexAttribArray(colorLoc);
    
        bbutil_swap();
    }
    /**
     * Show an alert dialog that has two buttons: a "Cancel" button, and a "Submit" button.
     */
    static void
    show_alert()
    {
        if (alert_dialog) {
            return;
        }
    
        if (dialog_create_alert(&alert_dialog) != BPS_SUCCESS) {
            fprintf(stderr, "Failed to create alert dialog.");
            return;
        }
    
        if (dialog_set_alert_message_text(alert_dialog, "Hello World!") != BPS_SUCCESS) {
            fprintf(stderr, "Failed to set alert dialog message text.");
            dialog_destroy(alert_dialog);
            alert_dialog = 0;
            return;
        }
    
        /*
         * Create a context to attach to the cancel button
         */
        char* cancel_button_context = "Cancelled";
    
        /*
         * Use a button label defined in bps/dialog.h. Attach a context to the button.
         */
        if (dialog_add_button(alert_dialog, DIALOG_CANCEL_LABEL, true, cancel_button_context, true) != BPS_SUCCESS) {
            fprintf(stderr, "Failed to add button to alert dialog.");
            dialog_destroy(alert_dialog);
            alert_dialog = 0;
            return;
        }
    
        /*
         * Use a button label of our own. Don't attach a context to the button.
         */
        if (dialog_add_button(alert_dialog, "Submit", true, 0, true) != BPS_SUCCESS) {
            fprintf(stderr, "Failed to add button to alert dialog.");
            dialog_destroy(alert_dialog);
            alert_dialog = 0;
            return;
        }
    
        if (dialog_show(alert_dialog) != BPS_SUCCESS) {
            fprintf(stderr, "Failed to show alert dialog.");
            dialog_destroy(alert_dialog);
            alert_dialog = 0;
            return;
        }
    }
    
    int main(int argc, char *argv[]) {
        int rc;
        int exit_application = 0;
    
        //glGetError();
        //Initialize BPS library
        bps_initialize();
    
        //Create a screen context that will be used to create an EGL surface to to receive libscreen events
        screen_create_context(&screen_cxt, 0);
    
        //Signal BPS library that navigator and screen events will be requested
        if (BPS_SUCCESS != screen_request_events(screen_cxt)) {
            fprintf(stderr, "screen_request_events failed\n");
            bbutil_terminate();
            screen_destroy_context(screen_cxt);
            bps_shutdown();
            return 0;
        }
    
        if (BPS_SUCCESS != navigator_request_events(0)) {
            fprintf(stderr, "navigator_request_events failed\n");
            bbutil_terminate();
            screen_destroy_context(screen_cxt);
            bps_shutdown();
            return 0;
        }
    
        //Signal BPS library that navigator orientation is not to be locked
        if (BPS_SUCCESS != navigator_rotation_lock(false)) {
            fprintf(stderr, "navigator_rotation_lock failed\n");
            bbutil_terminate();
            screen_destroy_context(screen_cxt);
            bps_shutdown();
            return 0;
        }
    
        //Use utility code to initialize EGL for rendering with GL ES 2.0
        if (EXIT_SUCCESS != bbutil_init_egl(screen_cxt)) {
            fprintf(stderr, "bbutil_init_egl failed\n");
            bbutil_terminate();
            screen_destroy_context(screen_cxt);
            return 0;
        }
    
        //Initialize application logic
        if (EXIT_SUCCESS != initialize()) {
            fprintf(stderr, "initialize failed\n");
            bbutil_terminate();
            screen_destroy_context(screen_cxt);
            bps_shutdown();
            return 0;
        }
    
        dialog_request_events(0);
    
        /*
         * start the application with a dialog.
         */
        show_alert();
    
        // start a thread:
        //pthread_t  _t, _t2;
        //pthread_create(&_t, NULL, aThread, NULL);
        //pthread_create(&_t2, NULL, aThread, NULL);
    
        while (!exit_application) {
            //Request and process all available BPS events
            bps_event_t *event = NULL;
    
            for(;;) {
                rc = bps_get_event(&event, 0);
                assert(rc == BPS_SUCCESS);
    
                if (event) {
                    int domain = bps_event_get_domain(event);
    
                    if (domain == screen_get_domain()) {
                        handleScreenEvent(event);
                    } else if ((domain == navigator_get_domain())
                            && (NAVIGATOR_EXIT == bps_event_get_code(event))) {
                        exit_application = 1;
                    }
                } else {
                    break;
                }
            }
            render();
        }
    
        //Stop requesting events from libscreen
        screen_stop_events(screen_cxt);
    
        //Shut down BPS library for this process
        bps_shutdown();
    
        //Use utility code to terminate EGL setup
        bbutil_terminate();
    
        //Destroy libscreen context
        screen_destroy_context(screen_cxt);
        return 0;
    }
    

    Try this: Edit bbutil.c to create a group of windows with screen_create_window_group() immediately after creating the window with screen_create_window().

  • Maximize the limit get request

    I have the query like this

    () AS T
    SELECT '0888' DND, RECHARGE OF 10000, 1 JANUARY 2012 ' DOUBLE TOPUPDATE
    UNION ALL
    SELECT '0888' DND, CHARGING OF 25000, 3 JANUARY 2012 ' DOUBLE TOPUPDATE
    UNION ALL
    SELECT '0888' DND, CHARGING OF 40000, 10 JANUARY 2012 ' DOUBLE TOPUPDATE
    )
    SELECT * FROM T

    the result like this:
    DND COOLDOWN TOPUPDATE
    0888 10000 01/01/2012
    0888 25000 01/03/2012
    0888 40000 01/10/2012

    but I want to if CHARGING reach to 30000 (10000 + 25000 > = 30000), then stop request. I hope no cursor. I tried using the cursor and very slow to run. the result I want as below:

    DND COOLDOWN TOPUPDATE
    0888 10000 01/01/2012
    0888 25000 01/03/2012
    /* Formatted on 7/18/2012 10:35:39 AM (QP5 v5.139.911.3011) */
    WITH T AS (SELECT '0888' MDN, 10000 TOPUP, '01/01/2012' TOPUPDATE FROM DUAL
               UNION ALL
               SELECT '0888' MDN, 25000 TOPUP, '01/03/2012' TOPUPDATE FROM DUAL
               UNION ALL
               SELECT '0888' MDN, 40000 TOPUP, '01/10/2012' TOPUPDATE FROM DUAL),
         u
            AS (SELECT t.*,
                       SUM (topup)
                          OVER (ORDER BY TO_DATE (TOPUPDATE, 'dd/mm/yyyy'))
                          tot
                  FROM T)
    SELECT *
      FROM u
     WHERE tot <= 30000
    UNION
    SELECT *
      FROM u
     WHERE tot = (SELECT MIN (tot)
                    FROM u
                   WHERE tot > 30000)
    

    Published by: Indra Budiantho on July 17, 2012 20:37

  • Why the finder ask password when logged in as an administrator

    Hi, I got a new iMac (2015) since a backup time machine of a 2011 iMac that 'death '.  (I know, within a period of one we are likely to see the 2016... refreshed models but I was desperate). Now, every time I make a change to a folder I have to enter my password.  I even deleted the password, but demand still appears. . It's just that, without a real password I can just hit enter.  However, I would like to use a password (even if I'm the only person using the computer) and I would really stop requests the constant "enter password".

    Thanks for any help.

    Ric

    without anything running... #1 - open Finder #2 - Select House (home folder) or favorite info #3 - click colum at the top of the finder window.

    #4-post info window opens at the bottom is a padlock (unlock it) and change the privaleges 1 on list (must be your name) 'READ & write' (narrow lock)...

  • To end a Subvi after the break (with IMAQdx)

    Hello!

    So, I need to display a grid on a projector and take a picture of him with a camera. My problem is that I want the program to run as quickly as possible and at the moment I can only show the grid a certain amount of time.

    So I would like to confirm that the photo was taken and stop the vi poster sub grille. I thought that by replacing the tempo by a certain time structure

    and send the message 'stop' after taking the picture might work but it doesn't.

    So my idea was to make a sequence and then send the message to "kill".

    I read about the events, but I don't know how to use it and even if it is not too complicated.

    The first picture is the main vi and the second, that I want to end.

    Hello

    Sorry, I don't have that the VI grid is actually a Subvi from the mainVI. You can use a global variable to pass your stop request to the Subvi.

    The question is: do you want to stop the Subvi after loop iteration for all four? Or do you want to start and stop the Subvi in each iteration of the loop for?

    Here is an example for the second option:

    now, it should work. in the first image is set to false - the Subvi 'Grid' will continue to run the shutdown command. After the image was taken at the 'grid' Subvi is hollow arrested the last image.

    See you soon,.

    Cheggers

  • HP 8500 has A910: HP 8500 has 910 not able to install/uninstall SW in Win10

    Updated a desktop Win7 to Win10 Home - went surprisingly well - but could not print network HP 8500 A910 all-in-one printer.  So, removed the devices feature in the settings.

    Already installed same printer to my Win10 (different PC), so copying full SW functionality to the other PC and it ran.  It started OK, did the extract, has begun to install - and the judgment, claiming that the software is on a CD!  Well, of course, I don't have a CD!

    Downloaded and executed the printer Installation Wizard, went through the same steps - found on network printer, downloaded the software, has begun to install - same failure!

    Downloaded and ran doctor printing & scanning HP, went through the same steps - same failure!

    Went into Device Manager, find the old entries for HP 8500, tried to uninstall - same mistake - wants a CD!

    Having run out of options.  Need something to uninstall the old SW so he will leave looking for a CD.

    Help, please.

    I also have a HP 8620 on the same network (my spouse prefer actually the 8500), so I have not tested it yet.

    greenturtle

    Unfortunately, this does not work.  I downloaded the software of Win10 at least 4 different ways, and in all cases, reinstalling stops, requesting a CD.

    I even used 7 - zip to decompress the SP in the constituent files and tries to install to these - and it fails with the error message that the .msi file is invalid!

    Then I burned then the installation files driver on a CD, hoping that if he saw the files on a CD, it then would run.  Even THAT didn't!

    Then, I called HP Support, paid my $35 (because the printer is out of warranty, even if it is a problem of Win10, they still don't speak with you unless you pay the service charge!), and after over an hour of their remote operation my CP, it still not install or uninstall the old drivers.

    What DID work, is that I could finally find the original CD of 2010 - and after pressing technical support to try to uninstall using this CD, the new drivers finally installed!

    Good news - it is finally fixed.

    Bad news - it cost me $35 to get it fixed and if I had NOT been able to find the original CD, it might be still does not work.

  • Outlook Express asks Compact records

    In Outlook Express I'm persistent requests to compact message files.  According to allow a compression session does not stop requests.  They appear several times in each session.

    How can I disable this request?

    Thank you

    aquaries

    Is Windows Search or installed Nero Scout?

    In the case of Windows Search, (the offender #1), you must be told to stop indexing OE.

    In the control panel. Indexing Options. Change. Clear the check box for Outlook Express.

    In the case of Nero Scout, see point 2.3 page 8 here.
    FTP://ftp6.Nero.com/user_guides/Nero8/Scout/NeroScout_Enu.PDF

    In the option to exclude indexing of selected file types, remember to add these file types:

    .eml, .dbx & .nws

  • Rocket won't save the radio or the voice

    When I got it I did all the two just to check out them and they worked, but I didn't want them so I deleted them it's been a few weeks and it won't save! For radio, he looks at his will do, it stops request if I would record I say yes but there is nothing in the file! For voice I click Save now and the screen fades away for a few seconds then goes back to the menu! Help, please! Thank you!

    Just for the devil, why don't you reinstall firmware

  • Best practices for the restart of the nodes of the ISE?

    Hello community,

    I administer an ISE installation with two nodes (I'm not a specialist of the ISE, my job is simply to manage the user/mac-addresses... but now I have to move my ISE a VMWare Cluster nodes to another VMWare Cluster.

    (Both VMWare environments are connected to our network of the company, but are different environments. vMotion is not possible)

    I want to stop ISE02, move it to our new VMWare environment and start it again.

    That I could do this with our ISE01 node...

    Are there best practices to achieve this? (Stop request first, stopl replikation etc.) ?

    Can I really just reboot a node ISE - or I have consider something before I do this? After I did this?

    All tasks after reboot?

    Thanks for any answer!

    ISE01
    Administration, monitoring, Service policy
    PRI (A), DRY (M)

    ISE02
    Administration, monitoring, Service policy
    SEC (A), PRI (M)

    There is a lot to consider here.  If changing environments involves a change of IP address and IP extended, then your policies, profiles and DACL would also change among other things.  If this is the case, create a new VM ISE in the new environment in evaluation license using the and recreate the old environment deployment by using the address of the new environment scheme.  Then a new secondary node set rotation and enter it on the primary.  Once this is done, you can re - host license from your old environment on your new environment.  You can use this tool to re - host:

    https://Tools.Cisco.com/swift/LicensingUI/loadDemoLicensee?formid=3999

    If IP addressing is to stay the same, it becomes simpler.

    First and always, perform an operational backup and configuration.

    If the downtime is not a problem, or if you have a window of maintenance of an hour or so: just to close the two nodes.  Transfer to the new environment and light them, head node first, of course.

    If the downtime is a problem, stop the secondary node and transfer it to the new environment.  Start the secondary node and when he comes back, stop the main node.  Once that stopped services on the head node, promote the secondary node to the primary node.

    Transfer of the FORMER primary node to the new environment and turn it on.  She should play the role of secondary node.  If it is not the case, assign this role through the GUI.

    Remember, the proper way to shut down a node of ISE is:

    request stop ise

    Halt

    By using these commands, the risk of database corruption decreases by 90% (remember to always backup).

    Please rate useful messages and mark this question as answered if, in fact, does that answer your question.  Otherwise, feel free to post additional questions.

    Charles Moreton

  • Oracle RAC 11.2.0.3. 2nd node is down.

    Dear gurus,

    in node 2 second node RAC is broken. I can't start. Help, please:

    Oracle version: 11.2.0.3

    1. name of the node: faa4 (works)

    name of the 2nd node: faa5 (bottom)

    name of the cluster: FAARACDB

    on faa5:

    [oracle@faa5 ~]$ crsctl check  crs
    CRS-4638: Oracle High Availability Services is online
    CRS-4535: Cannot communicate with Cluster Ready Services
    CRS-4530: Communications failure contacting Cluster Synchronization Services daemon
    CRS-4534: Cannot communicate with Event Manager
    
    
    [oracle@faa5 ~]$ crsctl stat res -t -init
    ------------------------------------------------------------------------------------------------------
    NAME                            TARGET  STATE    SERVER        STATE_DETAILS       Cluster Resources
    ------------------------------------------------------------------------------------------------------
    ora.asm                         1                ONLINE        OFFLINE                                                   
    ora.cluster_interconnect.haip   1                ONLINE        OFFLINE                                                   
    ora.crf                         1                ONLINE        OFFLINE                                                   
    ora.crsd                        1                ONLINE        OFFLINE                                                   
    ora.cssd                        1                ONLINE        OFFLINE                                                   
    ora.cssdmonitor                 1                ONLINE        UNKNOWN              faa5                                         
    ora.ctssd                       1                ONLINE        OFFLINE                                                   
    ora.diskmon                     1                ONLINE        OFFLINE                                                   
    ora.evmd                        1                ONLINE        OFFLINE                                                   
    ora.gipcd                       1                ONLINE        OFFLINE                                                   
    ora.gpnpd                       1                ONLINE        OFFLINE                                                   
    ora.mdnsd                       1                ONLINE        OFFLINE 
    

    /Home/Oracle/app/11.2.0/grid/log/FAA5/crsd/crsd.log:

    2014-07-24 14:30:11.956: [ CRSMAIN][453293856] Checking the OCR device
    2014-07-24 14:30:11.956: [ CRSMAIN][453293856] Sync-up with OCR
    2014-07-24 14:30:11.956: [ CRSMAIN][453293856] Connecting to the CSS Daemon
    2014-07-24 14:30:11.959: [  CRSRTI][453293856] CSS is not ready. Received status 3
    2014-07-24 14:30:11.960: [ CRSMAIN][453293856] Created alert : (:CRSD00109:) :  Could not init the CSS context, error: 3
    2014-07-24 14:30:11.960: [    CRSD][453293856][PANIC] CRSD exiting: Could not init the CSS context, error: 3
    2014-07-24 14:30:11.960: [    CRSD][453293856] Done.
    

    /Home/Oracle/app/11.2.0/grid/log/FAA5/evmd/evmd.log:

    2014-07-24 14:40:26.324: [    EVMD][2799478528] EVMD exiting on stop request from default
    2014-07-24 14:40:26.324: [    EVMD][2799478528] Done.
    
    2014-07-24 14:40:26.351: [  OCRMSG][2837387040]prom_waitconnect: CONN NOT ESTABLISHED (0,29,1,2)
    2014-07-24 14:40:26.351: [  OCRMSG][2837387040]GIPC error [29] msg [gipcretConnectionRefused]
    2014-07-24 14:40:26.351: [  OCRMSG][2837387040]prom_connect: error while waiting for connection complete [24]
    2014-07-24 14:40:26.351: [  CRSOCR][2837387040] OCR context init failure.  Error: PROC-32: Cluster Ready Services on the local node is not running Messaging error [gipcretConnectionRefused]
    

    /Home/Oracle/app/11.2.0/grid/log/FAA5/CSSD/ocssd.log:

    2014-09-15 16:42:18.924: [    CSSD][1605637888]clssscSelect: cookie accept request 0x7fe9500edb70
    2014-09-15 16:42:18.924: [    CSSD][1605637888]clssscevtypSHRCON: getting client with cmproc 0x7fe9500edb70
    2014-09-15 16:42:18.924: [    CSSD][1605637888]clssgmRegisterClient: proc(9/0x7fe9500edb70), client(11649/0x7fe9500e0230)
    2014-09-15 16:42:18.924: [    CSSD][1605637888]clssgmJoinGrock: global grock +ASM-SPFILE new client 0x7fe9500e0230 with con 0x7fe90027ebf6, requested num -1, flags 0x1
    2014-09-15 16:42:18.924: [    CSSD][1605637888]clssgmJoinGrock: ignoring grock join before clsmon for grock (-1/0x1/+ASM-SPFILE)
    2014-09-15 16:42:18.924: [    CSSD][1605637888]clssgmDiscEndpcl: gipcDestroy 0x27ebf6
    2014-09-15 16:42:18.939: [    CSSD][1590363904]clssgmWaitOnEventValue: after CmInfo State  val 3, eval 1 waited 0
    2014-09-15 16:42:19.093: [ CLSINET][1599833856] failed to retrieve GPnP profile, grv 13
    2014-09-15 16:42:19.093: [GIPCHDEM][1599833856] gipchaDaemonCheckInterfaces: failed to read private interface information ret 1
    2014-09-15 16:42:19.182: [    CSSD][1595102976]clssnmvDHBValidateNCopy: node 1, faa4, has a disk HB, but no network HB, DHB has rcfg 277512631, wrtcnt, 28712232, LATS 172457814, lastSeqNo 28712231, uniqueness 1398115471, timestamp 1410781338/4073989242
    

    Thanks in advance!

    [root@faa5 ~] # ocrcheck

    PROT-602: failed to extract the data from the cluster registry

    PROC-26: error when accessing the physical storage

    ORA-15077: could not locate instance ASM serving a required diskgroup

    Hi mark!

    You have a problem with connection of physical storage on the server faa5 .

    Please check, mounted or non-physical storage to the server or not. And try again: oracleasm scandisks

    You can check storage set, is one shared server faa5?

    Concerning

    Mr. Mahir Quluzade

  • Network error [10053]: can not send data when you run a calc in Planning

    Hi gurus,

    I get a network error [10053]: can not send data when you run a calc in a planning application.

    Looking in the newspaper of the App in Essbase server, I found the following:

    [Thu Apr 9 15:37:36 2014] Local/MYAPP / / / 140285871445760/Info (1008108)

    Internal logic error Essbase [1]

    [Thu Apr 9 15:37:36 2014] Local /MYAPP///140285871445760/Info(1008106)

    Exception error log [/Essbase/oracle/Middleware/user_projects/epmsystem1/diagnostic/newspapers/essbase/essbase/app/MYAPPlog00004.xcp] is being created...

    [Thu Apr 9 15:37:36 2014] Local /MYAPP///140285871445760/Info(1008153)

    A core file can be generated in [/Essbase/oracle/Middleware/user_projects/epmsystem1/EssbaseServer/essbaseserver1/app/MYAPP/ESSSVR.] Wed_Apr__9_15_37_02_2014]

    [Thu Apr 9 15:37:36 2014] Local /MYAPP///140285871445760/Info(1008107)

    Exception error log completedmyapp/Essbase/oracle/Middleware/user_projects/epmsystem1/diagnostics/log/essbase/essbase/app/MYAPPlog00004.xcp please contact technical support and provide them with this file

    [Thu Apr 9 15:37:36 2014] Local /MYAPP///140285871445760/Info(1002089)

    RECEIVED COMMAND OF THE UNUSUAL STOP - REQUEST FOR TERMINATION

    My environment is Windows 2008 R2 with Oracle Database and having only Essbase server in a SUSE LINUX box.

    Could someone help me on this?

    Thanks in advance

    We've tracked down the instructions in the calc and the error occurs in two blocks of calc. After the split in two blocks of the calc has no error more.

    Thanks to you all

  • Provisioning Linked Clones doesn't end customization

    I have a strange Situation where provisioning linked Clones does not complete customization (view Horizon 5.3)

    To connect to the Service Officer of VM is part beginning strange is that all machines have the same name as the Parent virtual machine

    Composer-ga logs I can't identify a large part

    13/10/29 15:30:29, 302 [1596] INFO CustomizationPersistentInfoReg - [CustomizationPersistentInfoReg.cpp, 98] registry key open comments to access personalization information.

    2013-10-29 15:30:29, 317 [1596] DEBUG CSvmGaService - [svmGaService.cpp, 323] in RunService

    2013-10-29 15:30:30, 339 [1596] INFO CSvmGaService - [svmGaService.cpp, 295] no policy or SVM disks not found

    2013-10-29 15:30:30, 339 [1596] INFO CSvmGaService - [svmGaService.cpp, 347] in the master VM

    2013-10-29 15:30:30, 339 [1596] INFO CSvmGaService - [svmGaService.cpp, 411] Service is in State: 4

    2013-10-29 15:30:30, 339 [1596] DEBUG WaitableManagerWin32 - [WaitableManagerWin32.cpp, 87] update callback for the SviServiceStopEvent event (00000148)

    2013-10-29 15:30:30, 340 [1596] DEBUG WaitableManagerWin32 - [WaitableManagerWin32.cpp, 90] adding callback for the SviServiceStopEvent event (00000148)

    2013-10-29 15:30:30, 340 [1596] DEBUG WaitableManagerWin32 - [WaitableManagerWin32.cpp, 179] send reminder for the event WaitableManagerInternal (00000140)

    2013-10-29 15:31:23, 019 [1568] INFO CSvmGaService - [svmGaService.cpp, 442] user logon.

    2013-10-29 15:33:06, 813 [1568] INFO CSvmGaService - [svmGaService.cpp, 448] user logoff.

    2013-10-29 15:33:12, 710 [1596] DEBUG WaitableManagerWin32 - [WaitableManagerWin32.cpp, 179] send reminder for the event SviServiceStopEvent (00000148)

    2013-10-29 15:33:12, 710 [1596] INFO CSvmGaService - [svmGaService.cpp, 391] CSvmGaService::RunService: stop requested.

    2013-10-29 15:33:12, 710 [1596] INFO CSvmGaService - [svmGaService.cpp, 482] service shutdown

    2013-10-29 15:33:12, 710 [1596] INFO CSvmGaService - [svmGaService.cpp, 487] stopped the machine of State SVM

    2013-10-29 15:39:13, 983 [1180] INFO CSvmGaService - [svmGaService.cpp, 87] Initializing Service

    2013-10-29 15:39:13, 983 [1180] INFO CustomizationPersistentInfoReg - [CustomizationPersistentInfoReg.cpp, 98] registry key open comments to access personalization information.

    Panther newspapers give me anything at all. Tried with Quickprep and Sysprep No time go

    I think the netjoindomain is not even in the course of execution

    Any help would be appreciated

    KB.VMware.com/kb/1028164 worked for me :-)

Maybe you are looking for

  • Issue of fan on hp pavilion dv7 6187 cl

    I have a hp pavilion dv7 6187 cl and, recently, the fan stop working properly, so it must be replaced. Anyone know if the fan can be removed from the sink or I have to buy another radiator with the fan. I am aware of the disassembly procedure. Also,

  • How film singing with a guitar?

    I have a HFR300 Canon Vixia camcorder. I use Adobe Premiere Elements to edit my videos. Next week I have a video of someone singing and playing electric guitar. I have a microphone tie with a cord that attaches to the mic on the camera socket. This i

  • I have vista ultimate, 64-bit running. I can change it to 32 bits? What is the difference?

    All of my programming is 32 bit, what difference is there?

  • Adding a second SSHD to an Optiplex 9020

    I would like to install a second internal hard drive solid-state in an Optiplex 9020.  I don't want to use these two drives as a RAID pair.  I want a second disc to be autonomous for the storage of data.  What should I set the Bios to ATA for the sec

  • I have a new laptop and the Wireless does not work as it should.

    You can have a new laptop with Windows 8 and are having some problems with wireless, but no other system with Windows 7 or more, there is a problem. At first glance, this seems to indicate something wrong with the all-new Windows laptop, 8. Before ma