How to send a 'loading, please wait...' message to user

My web application needs to load about 1000 item names to screen. It takes about half a minute before the names are returned.
While waiting, the screen is blank and user wouldn't know what's going on. Is there a way to send a first page ('Loading,please wait...')to the browser, and then desplay the result page after the procedure completed.
I searched in this forum before posting but didn't get help. I'm pretty new in this area, please help me.
Thanks.

By clicking a button. It's like a principal logins to school site, the first page he/she sees is student name page, the page is a big dropdown down list with all the student names in this school.
I tried some javescript but didn't work. I think the problem could be:
1. it takes time to get data from table and generate a html doc.
2. it takes time to display the page.
Reason1 is main problem and any javascript won't work at this step.
Any suggestions, please?

Similar Messages

  • OT: How can I manage a "Please Wait" message with this scenario?

    I have a page which allows you to paste in a potentially
    large list of zip
    codes.
    When you submit this page, the list is de-duped, and then
    checked against a
    table of ~22,000 zips for matches.
    Where and how in this process could I bring up a "Please
    Wait" message while
    the transaction is being completed?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================

    > you could also just use the PVII script on body load to
    show the
    > appropriate div - you could change the name in the" with
    the appropriate
    > switch statement.
    Ew. Double ew.
    I'm going to let it ride as is, until someone complains.
    Thanks for the
    neurons, though. Do you need them back? Or I should say, "you
    DO need them
    back"!
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "crash" <[email protected]> wrote in message
    news:[email protected]...
    > you could also just use the PVII script on body load to
    show the
    > appropriate div - you could change the name in the" with
    the appropriate
    > switch statement.
    >
    > It's my belief that some of your html elements will be
    able to show while
    > others are still being built. I guess I could be wrong
    on this, but I
    > think practically I'm right (ie, you can see elements on
    my page building
    > before the page is completely done).
    >
    > HTH,
    >
    > Jon
    >
    > "crash" <[email protected]> wrote in message
    > news:[email protected]...
    >> summation:
    >> In your SQL, at the bottom of the statement, you
    should be able to put a
    >> javascript call that will re-structure the
    visibility of the elements
    >> according to the variabels returned by the SQL. One
    page, reloaded once.
    >>
    >> My switch statement got a little convoluted. You
    should be able to just
    >> set one variable, or set one number and go from
    there (ie, if $v=3, hide
    >> other two), but i've not had any coffee or caffinne
    yet.
    >>
    >>
    ===========================================================
    >> Is the code in the third message on this post from
    the originating page?
    >> I took that it was, that it had a form, that form
    reloaded the same page?
    >>
    >> If so, you should be able to put a switch in there:
    >>
    >> switch($stage){
    >> case "upload":
    >> #this should be once the form has been completed
    >> $status=1; //status equal one, two or threee is one
    method you could
    >> use.
    >> break;
    >> case "complete"://you could aalso set a variable for
    each section, i
    >> think the one above is better, but this one made
    more sense right now,
    >> lol.
    >> #show the results,
    >> $resultsState="show";
    >> $formState="hide";
    >> $waitState="hide";
    >> break;
    >> case default:
    >> #empty, or first state, show the form to upload the
    data
    >> $live="form";
    >> break;
    >> }
    >>
    >> then, below:
    >>
    >> <div id="form" class="<?php echo $formState
    ?>">
    >> <form>
    >> whatever
    >> </form>
    >> </div>
    >>
    >> <div id="wait" class="<?php echo $waitState
    ?>">
    >> <img src="img/wait.gif" />
    >> </div>
    >>
    >> <div id="results" class="<?php echo
    $resultsState ?>">
    >> <h1>Results</h1>
    >> <p>stuff here</p>
    >> </div>
    >>
    >>
    >>
    >>
    >>
    >>
    >> "Murray *ACE*"
    <[email protected]> wrote in message
    >> news:[email protected]...
    >>>I can do that. I'm worried about passing the zips
    array (which has been
    >>>exploded from the input) to the process page. How
    would I best do that?
    >>>
    >>> --
    >>> Murray --- ICQ 71997575
    >>> Adobe Community Expert
    >>> (If you *MUST* email me, don't LAUGH when you do
    so!)
    >>> ==================
    >>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>> ==================
    >>>
    >>>
    >>> "crash" <[email protected]> wrote in
    message
    >>> news:[email protected]...
    >>>> THis is how I see the process, I guess I
    might not be following you:
    >>>>
    >>>> 1. User goes to form page, to submit zips.
    >>>> 2. User completes form, hits upload
    >>>> 3. Page refreshes itself, publishes please
    wait message (ie, could you
    >>>> not put an if [form submit] is true, echo
    this image, then begin the
    >>>> sql calculations)
    >>>> 4. As the calculations are finished, toggle
    visibility of image off,
    >>>> toggle div with results on.
    >>>>
    >>>> If that doesn't work, sorry, I completely
    misunderstand and will leave
    >>>> you be.
    >>>>
    >>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> But then there's no opportunity to slam
    the waiting message up
    >>>>> there....
    >>>>>
    >>>>> --
    >>>>> Murray --- ICQ 71997575
    >>>>> Adobe Community Expert
    >>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>> ==================
    >>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>> ==================
    >>>>>
    >>>>>
    >>>>> "crash" <[email protected]>
    wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> couldn't you just have it reload the
    same page (isn't it anyway?).
    >>>>>>
    >>>>>>
    >>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>
    news:[email protected]...
    >>>>>>> Thanks, Joe. This troubles my
    mind, either way!
    >>>>>>>
    >>>>>>> --
    >>>>>>> Murray --- ICQ 71997575
    >>>>>>> Adobe Community Expert
    >>>>>>> (If you *MUST* email me, don't
    LAUGH when you do so!)
    >>>>>>> ==================
    >>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>> Technotes
    >>>>>>> ==================
    >>>>>>>
    >>>>>>>
    >>>>>>> "Joe Makowiec"
    <[email protected]> wrote in message
    >>>>>>>
    news:[email protected]...
    >>>>>>>> On 23 Oct 2006 in
    macromedia.dreamweaver.appdev, Murray *ACE*
    >>>>>>>> wrote:
    >>>>>>>>
    >>>>>>>>> LOL - OK, see, I was
    hoping to avoid breaking it into separate
    >>>>>>>>> pages
    >>>>>>>>> like that, but that way
    looks like it'll work....
    >>>>>>>>
    >>>>>>>> You can just re-call the
    page which processes the form data, and
    >>>>>>>> check
    >>>>>>>> whether or not the
    processing has been done:
    >>>>>>>>
    >>>>>>>> <?php
    >>>>>>>> if ($dataWasProcessed) {
    >>>>>>>> echo '<h1>Thank you
    for using Murray's Data Processing</h1>';
    >>>>>>>> } else {
    >>>>>>>> // Code to process form goes
    here
    >>>>>>>> // Code to re-call page with
    $dataWasProcessed set goes here
    >>>>>>>> // How to set that var left
    as an exercise for the reader
    >>>>>>>> }
    >>>>>>>>
    >>>>>>>> Personally, I find that it
    troubles my mind less to do such things
    >>>>>>>> in
    >>>>>>>> separate files.
    >>>>>>>>
    >>>>>>>> --
    >>>>>>>> Joe Makowiec
    >>>>>>>>
    http://makowiec.net/
    >>>>>>>> Email:
    http://makowiec.net/email.php
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • I cant register cloud on my 58L4300U "loading, please wait" message comes up and does nothing

    So i bought this TV for myself just yesterday, and after goign through all the setup, i pressed the cloud button to get into cloud. it takes me to the introduction step, where i have to set device name, icon, wallpaper, and then the next step is to create account.
    BUT when i set my device name and press next, a message "Loading Please wait" shows up on the top left corner of the screen for maybe about 10 seconds. Then the message goes away, and guess what. Nothing happens.
    Im literally stuck at this stage, can't proceed and cannot use cloud service!
    called toshiba support and ended up talking to a guy name Ringo in the philliphines. wtf...
    He tells me that this is a known issue and they are doing what they can do to fix this. 
    I searched this forum and seems like i am the only one having this issue...
    I need help. or this TV is going back to the store.
    thanks,

    Hey man,
    Check the forum post here.
    http://forums.toshiba.com/t5/Televisions/65L7300U-​device-profile-settings/td-p/562970
    I was experiencing the same thing along with another guy on here.  Appears to be a Cloud Server issue, but waiting to hear a reply from Toshiba as to remedy/resolution to issue.

  • "Please Wait Message" Slider with cfgrid

    Some of my cfgrid type=html results are taking a long time
    and an impatient user will likely wander if they need to hit the
    submit button again. I've seen how to implement a standard "Please
    Wait Message" with flushing periodic results, but how do I do it in
    this datagrid environment with an AJAX-based cfgrid with CF8.01? My
    users all use IE 6.

    I believe I did. Here's the code. Functions without the line
    "grid.loadMask = true;"
    <HTML>
    <HEAD>
    <cfajaximport
    tags="cfform,cfdiv,cftextarea,cflayout-tab,cflayout-border,cfinput-datefield,cfgrid"
    />
    <script type="text/javascript" >
    <cfajaxproxy cfc="#strcomponentpath#"
    jsclassname="diaproxy" />
    diaproxy = new diaproxy();
    diaproxy.setCallbackHandler(handleResult);
    function initDIA(){
    //set page permissions
    setstartuppermissions();
    //the grid will be empty, but will have the default layout
    customizeGrid();
    // Set the focus to the first search field for those that
    prefer to not use a mouse
    setFocus();
    function setFocus(){
    var objFirstField = document.frmSearchGrid.strsearchdb[0];
    objFirstField.focus();
    <!--- this function is called when the Search button is
    clicked --->
    function submitSearch(){
    //refresh grid with new parameters
    setpermissions('test');
    ColdFusion.Grid.refresh("searchGrid", true);
    customizeGrid();
    <!--- this function is called to refresh grid (hiding
    columns and customizing grid footer) --->
    function customizeGrid(){
    <!--- Create a new paging tool bar in the grid footer and
    display the record count in it. --->
    // get the grid component
    var grid = ColdFusion.Grid.getGridObject("searchGrid");
    // Create a reference to the column model.
    var cm = grid.getColumnModel();
    // create a reference to the grid footer
    var gridFoot = grid.getView().getFooterPanel(true);
    // get the datasource
    var ds = grid.getDataSource();
    // add a new paging toolbar to the grid's footer
    var paging = new Ext.PagingToolbar(gridFoot, ds, {
    // this pageSize is the same value as in the cfgrid
    pageSize: <cfoutput>#intShowRows#</cfoutput>,
    displayInfo: true,
    // this will display all the record information for you
    displayMsg: 'Displaying records {0} - {1} of {2}',
    emptyMsg: "No records to display"});
    //returns true if the particular radio button is selected
    var booDocumentImaging =
    document.frmSearchGrid.strsearchdb[0].checked;
    var booFilenet =
    document.frmSearchGrid.strsearchdb[1].checked;
    // Now show/hide grid columns and data details based on
    default or user choice
    if (booDocumentImaging) {
    document.getElementById('divFilenetFields').style.display =
    'none';
    document.getElementById('divDocumentImagingFields').style.display =
    'block';
    //setHidden(colIndex, hidden)
    cm.setHidden(18,true);
    // If true then Filenet was selected
    else if (booFilenet) {
    document.getElementById('divFilenetFields').style.display =
    'block';
    document.getElementById('divDocumentImagingFields').style.display =
    'none';
    // Filenet does not need the ability to add an attachment
    document.getElementById('btnaddAttachment').disabled='true';
    //setHidden(colIndex, hidden)
    cm.setHidden(18,false);
    else {
    // add a Please Wait Message on submittals
    grid.loadMask = true;
    grid.reconfigure(grid.getDataSource(),cm);
    </script>
    </HEAD>
    <BODY class="bodyclass" onLoad="" onUnload="">
    <cfform name="frmSearchGrid" id="frmSearchGrid"
    format="html" method="post" >
    <cfgrid name="searchGrid"
    autowidth="false"
    width="585"
    format="html"
    pagesize="#intShowRows#"
    preservePageOnSort="true"
    striperows="true"
    striperowcolor="##e0e0e0"
    sort="true"
    sortascendingbutton="true"
    sortdescendingbutton="true"
    colheaderbold="true"
    bindonload="false"
    bind="cfc:#strcomponentpath#.readdiadocumentgrid({cfgridpage},{cfgridpagesize},{cfgridsor tcolumn},{cfgridsortdirection},{frmSearchGrid:strsearchdb@none},{frmSearchGrid:strsearchme tadata@none},{frmSearchGrid:dtedateRangeFrom@none},{frmSearchGrid:dtedateRangeTo@none},{fr mSearchGrid:strDocImageRights},{frmSearchGrid:strdoctype@none},{frmSearchGrid:strdocsubjec t@none})">
    <cfgridcolumn name="diadocno" header="docno" width="70"
    />
    <cfgridcolumn name="diadocumentdate" header="doc date"
    width="75" />
    </cfgrid>
    </cfform>
    <cfset ajaxOnLoad("initDIA") />
    </BODY>

  • Question about Page Builder behavior - how to get a "please wait message" ?

    Hi all together,
    I got a question about Portal Framework / Page Buider handling iView Integration.
    We are working with a lot of App Integrator iViews and often the pages includes with app integrator are loading longer than the rest of the portal. So there is the idea to put in a "please wait while loading message" for the enduser.
    I analysed the html code, the page builder is generating and foud out 3 diffrent approaches how the page buider is rendering the IFRAME with the integrated application configured with an app integrator iView.
    My question is how can I influence this behavior to put a "please wait while loading message"?
    Different types of iView integration in the client I have seen:
    a) direct loading of the content in the IFRAME (<iframe id="" ... scr="/mysource">)
    b) Filling the iframe with 'about:blank' and loading the content later by filling a form with JS
         ( <iframe id="" .... scr="about:blank">and after the iframe  <form id="" action="mysource" ...>
    c) Filling the iframe with a html file from the portal layout and loading the content later by filling a form with JS (similar to b)
         ( <iframe id=""" ....scr="/irj/portalapps/com.sap.test.mylayout/html/blank.html>
    I checked that variant b) is getting generated when loading a page with different components on the side (not only the app integrator iview) and variant c) is generated when just one app integrator iView is positioned (no portal page).
    Goal: To get the "please wait picture" I want to know how to get variant c) in cases of different elements on one page
    So I would be able to put this picture on the HTML-Page in the Portal layout (blank.html)
    Hope, someone with a deep portal / page builder know-how can help me out!
    Another way: Does anybody knows another way how to put a "please wait message" while app integrator application is not loaded yet?
    Thanks in Advance and kind regards,
    Jens
    Edited by: Jens Kohne on Nov 24, 2010 9:08 AM

    Hi Jens,
    there are several reasons why you don't get the loading animation:
    Web Dynpro ABAP: https://service.sap.com/sap/support/notes/1432358 -> missing configuration
    Wrong height size for iView: https://service.sap.com/sap/support/notes/1358494 -> alter configuration of the iFrame height (loading animation gets displayed, but is hidden)
    FPN, BSP, BEx: https://service.sap.com/sap/support/notes/1290995 -> AI isn't showing the animation because of performance considerations. I guess that is your case. Depending on your portal version this is a simple service configuration or involves some customization.
    br,
    Tobias

  • How do i reverse a download? the little center is turning & it says "loading, please wait". it's been doing this for several hours & I don't know how to stop it.

    I was downloading add ons; i let it wait until i left the site to load, but it's been running & showing the center spinning & "loading, please wait; it's been doing this for several hours & i don't know to stop or disable it

    There is a rectangular white box between the top & bottom of the screen with no buttons on it. The wheel turns with 'loading, please wait'. There is a little arrow on the upper left with 2 green & gold 'men'. When I click on it this message shows up on the screen "Please accept the Terms of Service first (Add a social network). The only way I can get the wheel to quit turning is to go to 'tools' & click on options & it stops turnning. I already had a yahoo, facebook & twitter accounts, so I don't know what to do.
    I've checked in my Control Panel & there is nothing with Firefox in there. If I can't resolve this can someone tell me to how to unload all of this & start over.
    Thanks.

  • I get a please wait message, and the pdf document never loads?

    I get a Please Wait message, and the pdf document never loads. i have the latest version on my mac- no luck!

    windows xp version x1 the latest.  trying to open  in gmail.
    On Mon, Feb 17, 2014 at 1:23 PM, Claudio González

  • Want to show a "Please Wait" message while processing

    Hi,
    I'm developing an image-processing tutorial applet where the user selects an image and then sets some parameters before pressing an update button which will run a JPEG compression on the image and show the compressed image.
    The compression takes a few seconds, so I want the program to show an image saying "Please wait" in the position that the compressed image will appear while the compression is done.
    Here is the relevant code:
    public void paint (Graphics g) {
      if (updating) {
        updating = false;
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250); //clear the area where the image will appear
        g.setColor(Color.white);
        g.drawImage(updatingImg, 575, 370, 250, 250, this); //updatingImg just displays a "Please Wait" message
        doImage = true;
      if (doImage) {
        doImage = false;
        //perform the compression to get the new image and then show it
        newImg = imagetest.compressImage(origImg, quantizationMat);          
        g.setColor(getBackground ());
        g.fillRect(575, 370, 250, 250);
        g.setColor(Color.white);
        g.drawImage(newImg, 575, 370, 250, 250, this);
    public void actionPerformed(ActionEvent evt) {
      if (evt.getSource() == update){
        //perform some error checking
        if (errorFound == false){
          updating = true;
          repaint();
    }The problem is that the "Please wait" image never gets shown.. while the compression is carried out that part of the screen remains blank and then the new image is shown.
    Can anyone tell me how to fix this?
    Thanks.

    Never mind, I've figured it out.. needed to put the time consuming code in a new thread.

  • 3 cfselect with "loading please wait" information

    Hi
    I have 3 cfselect boxes bind to a component. 2nd select box
    is depend on the 1st and 3rd is depend on the 2nd.
    Its taking much time to load the select boxes and before
    loading all the information user is submitting the page, giving the
    errors. and not only that if the internet is slow, its taking much
    time to load the data.
    So for this i want to display the word "page loading please
    wait..." how can i do this? can I do this in CF or i need to use
    the seperate AJAX for displaying it.

    If the amount of data is reasonably small, you might be
    better off getting it all when you first create the page and using
    js to control the selects.

  • "Please Wait For The User Profile Service" message when logging on to TS 2008

    I have a Windows 2008 AD Domain with 2 Windows 2008 Terminal Servers.  Both are configured identically.  I have the TS Roaming profiles stored on a 3rd server and a GPO pointing all users to the roaming profiles.  On one of the servers everything works perfectly.  On the second server the users, after they input their credentials, get the following message "Please Wait For The User Profile Service".  The message can stay there for up to 3 minutes, then they are logged innormall with the correct profile.  This problem does not occur on log off.  Any help would be appreciated 

     99% of the times I had this problem it was caused by either DNS issues or network bindings.
    Are your servers multihomed? In other words: do you have multiple network cards? If so, make sure your "production" card is on top in the network connections -> advanced settings -> adapters and bindings.
    You could also enable user env logging (search microsoft how to do that)

  • "Please Wait" message

    Good afternoon,
    I have setup the javascript to display a clock icon with "...Working..." displayed while long processes are running when a button is pressed. What I need to do now is to define a link in a report column, initializing values from columns within the report and still display that "Please Wait" icon & message.
    How do I get the "Please Wait" to work and still pass multiple parameters to my linked page that are values from the report, not within variables in the page?
    Thanks,
    Don.

    Good morning,
    I have managed to figure this out for myself. Here is the solution (in case someone else wants to do this):
    1. Creating the whole "PLEASE_WAIT" process using the following information that I found here in the APEX Forum:
    A.) Add this text to the Page HTML Header (or create a shortcut like I did):
    <script type="text/javascript">
    <!--
    function html_Submit_Progress(pThis){
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    doSubmit('SUBMIT');
    function submit_HideAll(pThis){
    $x_Hide('wwvFlowForm');
    doSubmit('SUBMIT');
    function submit_ButtonRegion(pThis){
    $x_Hide('button_region');
    doSubmit('SUBMIT');
    //-->
    </script>
    B.) Add this text to the PAGE FOOTER for each page you wish to use the "Please Wait" pop-up.
    <style>     #AjaxLoading{padding:5px;font-size:18px;width:100px;text-align:center;left:50%;top:50%;position:absolute;border:2px solid #666;background-color:#FFF;}
    </style>
    <div id="AjaxLoading" style="display:none;">..Working..
    <img src="#WORKSPACE_IMAGES#clock.gif" id="wait" /></div>
    C.) Add this to the BUTTON (or URL) you wish to activate the "Please Wait" pop-up.
    D.) Be sure to have a default branch back to the page containing the "Please Wait" pop-up; if you are adding this to page 5, have an unconditional branch to Page 5.
    To add it to a url, add the following text to the Page HTML Header:
    <script type="text/javascript">
    function open2(url){
    window.location = url;
    </script>
    Then, in the "Column Link" section of the report item definition, provide your link as follows:
    javascript:javascript:html_Submit_Progress(this);open2('f?p=&APP_ID.&APP_PAGE.:&SESSION.::&DEBUG.::P19_Variable:#P18_VALUE#);
    Substituting the P19_VARIABLE and #P18_VALUE# with the appropriate variable name and value. You can have multiple variables assigning each a value, simply separate the varible names with a comma and do the same for the variable.
    If this is all too confusing, write to me and I'll try to explain it better. I'm not a JAVA person myself, so this might not be the optimum solution - but it is a solution that works.
    Thanks,
    Don.

  • BO4 - Select .unx says Loading - please Wait then blank screen

    Hi,
    As Administrator can create reports fine against .unv universes in WEBI.
    If select .unx screen does nothing.
    Just says loading please wait and blank screen.
    .unx imports fine in IDT.
    Any ideas?
    Thanks

    The icon, I believe is for the voicemail APP, Visual Voicemail, that carries a subscription charge - it is not the same as your *86 standard voicemail.
    http://support.verizonwireless.com/clc/devices/knowledge_base.html?id=55911  shows the icon (is that what you are seeing?) and http://support.verizonwireless.com/clc/devices/knowledge_base.html?id=56168 gives details on activating Visual Voicemail.  If yo uonly have standard voicemail, then : http://support.verizonwireless.com/clc/devices/knowledge_base.html?id=55976 is how you access it.

  • UWC - Firefox stuck at "Loading: please wait..."  when logging in

    I have UWC installed in a Webserver 6.1 web container on Solaris 10 x86. I can log in no problem with IE but if I try to use Firefox/Mozilla/Netscape it hangs at "Loading: please wait..."
    Has anyone else seen and resolved this issue? Any help would be appreciated.

    Hi,
    Patch: 118541-21 Obsoletes: 117288-99, 117820-13,
    119157-07 Requires: Incompatibles: Packages:
    SUNWuwc
    Patch: 118541-42 Obsoletes: 117288-99, 117820-13,
    119157-07 Requires: Incompatibles: Packages:
    SUNWuwcA good start.
    After doing this I patched MS to:
    [opt/SUNWmsgsr/sbin]# ./imsimta version
    Sun Java(tm) System Messaging Server 6.2-8.04 (built
    Feb 28 2007)
    libimta.so 6.2-8.04 (built 19:20:35, Feb 28 200Did you run through the post-patch install steps as per the patch README? (patch-config;install-newconfig)
    Now when I try to start the http service it fails:
    [opt/SUNWmsgsr/sbin]# ./start-msg http
    Connecting to watcher ...
    Starting http server ..... failedWhat happens when you restart messaging server entirely?
    ./stop-msg; ./start-msg
    What does the http log report?
    Regards,
    Shane.

  • Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0

    Problem
    Please wait message when opening form created by Adobe LiveCycle Designer ES 9.0
    Full message
    Please wait... If this message is not eventually replaced by the proper contents of the document, your PDF viewer may not be able to display this type of document. You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by visiting  http://www.adobe.com/products/acrobat/readstep2.html. For more assistance with Adobe Reader visit  http://www.adobe.com/support/products/ acrreader.html. Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S
    Actions
    Updated Windows RT 8 to 8.1
    Uninstaled Adobe Reader Touch 1.3 and instaled 2.0 Build 84770
    Additional Information
    The form was created 10 or 11 months ago, and we are pretty sure that we were able to open it a while back
    The same PDF file opens just fine in Windows 8.1 using Adober Reader XI 11,0.06, it is only the app that is affected.
    The document cannot be opened by any other mobile app that we have tried or on another mobile OS (iOS)
    Any ideas?
    Thanks & Regards
    Jim

    The user's assertion is surprising to me, but perhaps I'm missing something important. I thought the correct position was from the conclusion of my earlier post "it can't be done". Adobe state their Reader Touch doesn't support XFA (http://blogs.adobe.com/readermobile/2012/12/13/adobe-reader-for-windows-8-tablets/). Unless (see that blog entry) you changed the type of form.

  • "Please Wait" Message Box

    Hello!
    I´d like to know what´s the best way of creating a message box 
    with a "Please Wait" message that opens at some point and closes
    automatically after a sequence code?
    Thank you!
    Luanna

    Are you having a pop up message box in mind??
    my suggestion would be, keep a string indicator on front panel itself, make it appear and disappear like this
    Attachments:
    please wait.vi ‏22 KB

Maybe you are looking for

  • Help with XQuery in OSB

    Hi! I'm having trouble trying to build an XQuery expression in OSB. I defined a "do" action where I iterate over elements of XML. There I defined an assign action to get each Country Name element using expression "$query/Countryl[$index]/Name/text()"

  • Trigger setting value when updating

    I need to have a row-level trigger set a value only when an update parameter is not specified in the query. The following trigger doesn't work as expected in SQL Developer - :new.prj_sync_modified_by seems to be the prior value in the row. I need to

  • WCF LOB template does not show in VS 2010 nor 2K13

    Hi, I have 2 boxes, BTS 2K10 with VS 2K10 and BTS 2013R2 with VS 2K13. On both machines I have setup the WCF LOB but when firing VS, point to projects, I do not see the WCF lob template. I followed instructions I found in a couple of threads in this

  • FS15 - multiple languages

    Hello together, a customer is using FS15 and FS16 to transport created account master data from his developing sytem to the consolidation and productive system. Every account has multiple translations in different languages. The problem is that no tr

  • Info bout iphone update?

    Is there a site or a link where you can check if and when Apple is gonna release an update for the iphone