Display a "Please wait " message

Is there any way a message can be displayed to advise the user
"Please wait - program running...."
while the macro actually executes.
Function such as MSGBOX just stop executing - I am looking for something that will alert the user to be wait while the program runs.
many thanks
Peter

Reshma,
The MsgBox will block the thread and the program (macro) stops running until you close the message box.
Peter,
You need to run another thread to get things working as you need. Typically the job is launched on another thread while the user sees the message box with a progress bar or just a text message like you want. You need to develop an Office add-in
for that, see
Walkthrough: Creating Your First Application-Level Add-in for Excel for more information. The
BackgroundWorker component can be used for that.

Similar Messages

  • 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.

  • 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

    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.

  • "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

  • 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

  • "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

  • HT1339 ipod display says please wait very low battery

    what can i do to restore my ipod classic?

    Really
    Which model of iPod do you actually have?
    An iPod Classic does not use iOS 3.1.3 (as noted in your tags) or any other iOS.
    If the display says "please wait, low battery" - have you charged it up?
    Why do you want to Restore your iPod, whichever model it actually is?
    To Restore and iPod, connect it to iTunes, look on the iPod's Summary pane and select Restore. Note that Restore will delete everything from your iPod.
    iPods can be Reset, which often sorts out minor problems. How to Reset depends which iPod you have.

  • 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
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • Display ("Please Wait") message WHILE the page loads

    Hello All,
    I have adf/jsf application. How to add message " Please Wait While Page Loads" WHILE+* the page is loading ?
    I am thinking of Window.confirm(" Please Wait While The Page Loads") Is there a better (More Modern) way to do this?_
    Many Thanks,

    John, when I type <af:statusIndicator and ctrl + space, JDev does not show statusIndicator as one of the choices. I tried adding code but it seems it does not recognize statusIndicator as one of the tags. I am using other jsf and adf tags on the same page :(
    Thanks,

  • Message Manager "Please Wait" Message.

    Hi Experts,
    referring to "Display PDF in Popup / How to do this?
    I'm developing a WebDynpro where the user can convert its output into PDF and display/download it. The Converting Process is started via a button. Once the user klicks the button, there's quite a lot of stuff happening in the background, It'll take about 10-15secs. I'm afraid that some users might start hammering on F5 once nothing appears on screen after 3 secs or so, thus I want to display a message "Please Wait until..." etc once the user clicks on that button. I thought I could just do that at the beginning of my Event Handler of the Button. But the message is displayed as recently as the complete method has run through...
    How can I immediately display a message once a user klicks on that button?
    best regards,
    Lukas

    Hi,
    You can write your message handling code before your actual code, i.e. at starting, first it will execute and display message.
    OR
    You better display popup confirmation message saying that "Please wait 15 Sec.. Processing" Like that.
    Check Below code..
    data lo_window_manager type ref to if_wd_window_manager.
      data lo_api_component  type ref to if_wd_component.
      data lo_window         type ref to if_wd_window.
      data lo_view_controller type ref to if_wd_view_controller.
      data :  lt_text TYPE string_table,
              ls_text TYPE string.
      ls_text = ' Please WAit 15 Sec...Processing..'.
      INSERT ls_text INTO TABLE lt_text.
    Get Window manager
      lo_api_component  = wd_comp_controller->wd_get_api( ).
      lo_window_manager = lo_api_component->get_window_manager( ).
      lo_window = lo_window_manager->create_popup_to_confirm( text = lt_text
      button_kind     = if_wd_window=>CO_BUTTONS_OK
      message_type    = if_wd_window=>CO_MSG_TYPE_WARNING
      window_title    = 'Information to Confirm...'
      window_position = if_wd_window=>co_center ).
      lo_view_controller = wd_this->wd_get_api( ).
    creating ok button
      lo_window->subscribe_to_button_event(
                 button = if_wd_window=>co_button_ok
                 action_name = 'OK'          // Createonce action of name OK.
                 action_view = lo_view_controller
                 is_default_button = abap_false ).
    Set the height and width here
      lo_window->set_window_size( width = '40%' height = '5%' ).
      lo_window->open( ).
    Cheers,
    Kris.

  • 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.

  • "signing in, please wait" message

    Whenever I try to log in to adobe story, it shows me the "signing in, please wait..." window, finishes signing in, but then nothing happens. It returns me to the home page of the adobe story and it still only gives me two options "learn more" or "sign in."
    Any help?

    If that doesn't work, repair your phone 
    Update Service (SUS)
    PC Companion (PCC)
    Bridge (for Mac)
    Alternatives on How to backup Xperias
    http://talk.sonymobile.com/thread/36355
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • Web template - please wait message.

    I have developed a (default)web template which contains a button to change the number of decimal places for all of the cells within a query.
    In the case of an extremely large query (that requires 1500 individual commands to change all of the key fields) the javascript, once executed when the user presses the button, can take quiet a bit of time. 
    What I'd like is a pop up asking the user to wait, similar to the pop-up you get if you click on the 'drilldown' button within the Navigational Block. Does anyone know how I could do this outside of the table interface.
    Thanks
    Shep.

    Neal,
    I must have lost the plot...but if its just a pop up window you want why don't you just code into the javascript to open a bsp which has some type of message saying that it can take a while for the operation to complete?

Maybe you are looking for

  • Cross Company code Transaction error

    Hi, When I am posting below Cross company code transaction getting error - Balancing field "Profit Center" in line item 001 not filled. Vendor A/c - Company code1 To Bank clearing A/c - Company code2 Problem is profit center is not deriving for Vendo

  • E71 date problem with alarm on working days

    I've a E71 (firmware : 110.07.127) I use the alarm function to wake up me during the week. There is no alarm on week-end. I switch of my phone off every night and on the week end when on saturday i switch it on the date is the friday date. The time i

  • Two Qs: Help to partition 800 FireWire, &Any FireWire 800 Router/Hub users?

    Needed more hard drive, so I added a 2TB-FireWire 800 drive to system. First thing on it is time machine backup. Would like to reconfigure it for the backup along with freeing up space on the main internal drive by moving files/applications, etc onto

  • About Nokia products

    Hi All I am a Nokia mobile user for last 1.8 years.  I have some questions to Nokia company. I don't know to whom i can tell those.  Have u people ever think why nokia mobile is now in out of demand.?  As u know in India you people sold out lakhs of

  • Just wondering if I'm looking for something that doesn't exist - can firefox automatically close the "print-preview" window after printing?

    I'm using the addon in my firefox toolbar to print preview website data then append to a pdf file. Sometimes I am distracted, then can't remember if I've gone through the process and printed/appended the page to the file. It would be helpful if there