Displaying progress by horizontal bar at runtime

hi members,
how can i show a progress bar while running a certain procedure by pressing a button on the forms.
like when you do any installations of microsoft windows, you can see the progress of the installation by a status bar telling you the time left to complete the job.
i am using Forms [32 Bit] Version 6.0.8.8.0 (Production) and db 10g release 2.
thanks
mustafa ghulam(teefu)
Edited by: user_teefu on Mar 15, 2010 9:01 AM

search this forum for examples
also check forms online help you can find something there also
Baig,
http://baigsorcl.blogspot.com

Similar Messages

  • Display -ve Measure Values in Horizontal Bar Chart on right hand side or in bar

    In OBIEE I have an issue where the negative measure values in a horizontal bar chart are displayed on the left and overlap with the Y axis values, how do I force these values to be displayed on the right or in the bar itself ? The measure values are set to always on, hoverover cannot be the solution

    Hi,
    It should not be overlapped. If you are using horizontal bar then 0 will come in center. It should show structure like:
    |
    |
    |
    |
    |
    |-------------------------------------------------
         -4     -2     0     2     4
    May I know in your report, how it is looking and what is your requirement.
    Thanks

  • Displaying a fraction with a horizontal bar between the denominator and numerator

    Hello guys
    I have a dynamic textfield and am going to display textual content in it dynamically.
    But I have a fraction in that textual part and I want to display that fraction as a "typical fraction with a horizontal bar between the denominator and numerator". Hope you understand what I am asking.
    Please look at the attached image.
    Thanks for your input.
    cheers

    @dmennenoh
    Thanks for your input.
    So its kind of superimposing Sprite or MovieClip that has a fraction.Basically I have to make two textfields and put them together over a horizontal bar so that it looks like a fraction and then place it over a big textfield where the fraction should be.
    Its a very long process.
    OMG, isn't there any other easy way to do this?

  • Displaying Progress Bar

    Hello,
    I want to display progress bar based on the bytes received from socket.  The tutorials and examples show only image loading.  Is it possible to display progress bar based on bytes received for socket.  If so, can anyone tell me how to do it?
    var total_bytes:Number=0;
    public function bytesReceived(event:ProgressEvent):void
           var bytes_received = event.bytes.loaded;
           total_bytes = bytes_received + total_bytes;
    Thanks

    Use SwingWorker, which is not included in Swing library, but you can find it on http://java.sun.com/docs/books/tutorial/uiswing/components/example-swing/SwingWorker.java;
    see alse http://java.sun.com/docs/books/tutorial/uiswing/components/progress.html.

  • 3GS Horizontal Bar on Display

    Dropped it. Out of warranty. Can do work myself, but need to know if it is simply a replacement of BOTH the LCD and the touch panel/screen (it is cracked but you can probably not see it in the linked photo) The horizontal bar is in evidence both when the phone is on and when it is off. Here is a photo:
    http://twitpic.com/2448cq
    I believe it is just the LCD and the touch panel that needs to be replaced. Please advise if you think it may be any more.
    Thanks in advance.
    JB

    i tried taking a screenshot but the line was not there. attached is a pic taken using my camera..do you see the horizontal line?

  • At the bottom of an account website, a VeriSign gold padlock is visible on a horizontal bar. This bar takes up needed screenspace on this site. Can I make it so firefox does not display this bar? (even if it needs to be done manually each time). Thanks!

    Here is a screenshot of the horizontal bar with the VeriSign padlock:
    [http://i239.photobucket.com/albums/ff318/jonjans/misc/authbyveris.jpg]
    Thank you for any help or ideas!
    Firefox 3.6.12 (and updated automatically)
    XP Pro 32

    View > Statusbar = un-check it to hide it

  • How do I get a recordset to display three images horizontally?

    Hi,
    I'm using DWCS3 with MAMP.
    I want to display three images horizontally in a recordset. I have downloaded Tom Muck's extension horizontal looper and followed the instructions.
    However when I tried to add the recordset navigation bar I ran into some problems.
    If I add a repeat region to Tom Muck's extension then the page doesn't load.
    If I don't add a repeat region to Tom's extension everything works really well except only one image displays rather than three.
    Here is all of my code for the page. 
    Could someone help me please.
    <?php require_once('Connections/connQuery.php'); ?>
    <?php
    if (!function_exists("GetSQLValueString")) {
    function GetSQLValueString($theValue, $theType, $theDefinedValue = "", $theNotDefinedValue = "")
      $theValue = get_magic_quotes_gpc() ? stripslashes($theValue) : $theValue;
      $theValue = function_exists("mysql_real_escape_string") ? mysql_real_escape_string($theValue) : mysql_escape_string($theValue);
      switch ($theType) {
        case "text":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;   
        case "long":
        case "int":
          $theValue = ($theValue != "") ? intval($theValue) : "NULL";
          break;
        case "double":
          $theValue = ($theValue != "") ? "'" . doubleval($theValue) . "'" : "NULL";
          break;
        case "date":
          $theValue = ($theValue != "") ? "'" . $theValue . "'" : "NULL";
          break;
        case "defined":
          $theValue = ($theValue != "") ? $theDefinedValue : $theNotDefinedValue;
          break;
      return $theValue;
    $currentPage = $_SERVER["PHP_SELF"];
    $maxRows_rshlimgs = 1;
    $pageNum_rshlimgs = 0;
    if (isset($_GET['pageNum_rshlimgs'])) {
      $pageNum_rshlimgs = $_GET['pageNum_rshlimgs'];
    $startRow_rshlimgs = $pageNum_rshlimgs * $maxRows_rshlimgs;
    mysql_select_db($database_connQuery, $connQuery);
    $query_rshlimgs = "SELECT * FROM image";
    $query_limit_rshlimgs = sprintf("%s LIMIT %d, %d", $query_rshlimgs, $startRow_rshlimgs, $maxRows_rshlimgs);
    $rshlimgs = mysql_query($query_limit_rshlimgs, $connQuery) or die(mysql_error());
    $row_rshlimgs = mysql_fetch_assoc($rshlimgs);
    if (isset($_GET['totalRows_rshlimgs'])) {
      $totalRows_rshlimgs = $_GET['totalRows_rshlimgs'];
    } else {
      $all_rshlimgs = mysql_query($query_rshlimgs);
      $totalRows_rshlimgs = mysql_num_rows($all_rshlimgs);
    $totalPages_rshlimgs = ceil($totalRows_rshlimgs/$maxRows_rshlimgs)-1;
    $queryString_rshlimgs = "";
    if (!empty($_SERVER['QUERY_STRING'])) {
      $params = explode("&", $_SERVER['QUERY_STRING']);
      $newParams = array();
      foreach ($params as $param) {
        if (stristr($param, "pageNum_rshlimgs") == false &&
            stristr($param, "totalRows_rshlimgs") == false) {
          array_push($newParams, $param);
      if (count($newParams) != 0) {
        $queryString_rshlimgs = "&" . htmlentities(implode("&", $newParams));
    $queryString_rshlimgs = sprintf("&totalRows_rshlimgs=%d%s", $totalRows_rshlimgs, $queryString_rshlimgs);
    ?><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <title>Untitled Document</title>
    <link href="styles/orderlist3.css" rel="stylesheet" type="text/css" />
    <link rel="stylesheet" href="lightbox_assets/css/lightbox.css" type="text/css" media="screen" />
    <script src="lightbox_assets/js/prototype.js" type="text/javascript"></script>
    <script src="lightbox_assets/js/scriptaculous.js?load=effects" type="text/javascript"></script>
    <script src="lightbox_assets/js/lightbox.js" type="text/javascript"></script>
    <style type="text/css">
    <!--
    a:link {
    color: #999966;
    a:visited {
    color: #FFFFFF;
    a:hover {
    color: #006600;
    a:active {
    color: #666699;
    -->
    </style></head>
    <body class="oneColFixCtrHdr" onload="initLightbox()">
    <div id="container">
      <div id="header">
        <h1>Header</h1>
      <!-- end #header --></div>
      <div id="mainContent">
        <h3>Image catalog</h3>
        <p> </p>
        <table >
          <tr>
            <?php
    $rshlimgs_endRow = 0;
    $rshlimgs_columns = 3; // number of columns
    $rshlimgs_hloopRow1 = 0; // first row flag
    do {
        if($rshlimgs_endRow == 0  && $rshlimgs_hloopRow1++ != 0) echo "<tr>";
       ?>
            <td><p><a href="images/weddingprivate/mr_and_mrs_lowe_18_15.jpg" title="Mr and Mrs Lowe_18_15" rel="lightbox"><img src="<?php echo $row_rshlimgs['imagethumb_url']; ?>" alt="The bride to be getting ready" longdesc="http://The bride to be with her hairdresser" width="100" height="150" /></a></p>
                <p><?php echo $row_rshlimgs['caption']; ?> <img src="images/Untitled-1.gif" alt="spacer" width="170" height="1" /></p>
              <p> </p>
              <form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">
                  <input type="hidden" name="cmd" value="_s-xclick" />
                  <input type="hidden" name="hosted_button_id" value="6782561" />
                  <table>
                    <tr>
                      <td><input type="hidden" name="on0" value="Sizes" />
                        Sizes</td>
                    </tr>
                    <tr>
                      <td><select name="os0">
                          <option value="6x4">6x4 £3.00 </option>
                          <option value="7x5">7x5 £5.00 </option>
                          <option value="12x8">12x8 £6.50 </option>
                        </select>
                      </td>
                    </tr>
                  </table>
                <input type="hidden" name="currency_code" value="GBP" />
                  <input type="image" src="https://www.paypal.com/en_GB/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online." />
                  <img alt="" border="0" src="https://www.paypal.com/en_GB/i/scr/pixel.gif" width="1" height="1" />
              </form></td>
            <?php  $rshlimgs_endRow++;
    if($rshlimgs_endRow >= $rshlimgs_columns) {
      ?>
          </tr>
    <?php
    $rshlimgs_endRow = 0;
    } while ($row_rshlimgs = mysql_fetch_assoc($rshlimgs));
    if($rshlimgs_endRow != 0) {
    while ($rshlimgs_endRow < $rshlimgs_columns) {
        echo("<td> </td>");
        $rshlimgs_endRow++;
    echo("</tr>");
    }?>
        </table>
        <table border="0">
          <tr>
            <td><?php if ($pageNum_rshlimgs > 0) { // Show if not first page ?>
                  <a href="<?php printf("%s?pageNum_rshlimgs=%d%s", $currentPage, 0, $queryString_rshlimgs); ?>"><img src="images/First.gif" border="0" /></a>
                  <?php } // Show if not first page ?>
            </td>
            <td><?php if ($pageNum_rshlimgs > 0) { // Show if not first page ?>
                  <a href="<?php printf("%s?pageNum_rshlimgs=%d%s", $currentPage, max(0, $pageNum_rshlimgs - 1), $queryString_rshlimgs); ?>"><img src="images/Previous.gif" border="0" /></a>
                  <?php } // Show if not first page ?>
            </td>
            <td><?php if ($pageNum_rshlimgs < $totalPages_rshlimgs) { // Show if not last page ?>
                  <a href="<?php printf("%s?pageNum_rshlimgs=%d%s", $currentPage, min($totalPages_rshlimgs, $pageNum_rshlimgs + 1), $queryString_rshlimgs); ?>"><img src="images/Next.gif" border="0" /></a>
                  <?php } // Show if not last page ?>
            </td>
            <td><?php if ($pageNum_rshlimgs < $totalPages_rshlimgs) { // Show if not last page ?>
                  <a href="<?php printf("%s?pageNum_rshlimgs=%d%s", $currentPage, $totalPages_rshlimgs, $queryString_rshlimgs); ?>"><img src="images/Last.gif" border="0" /></a>
                  <?php } // Show if not last page ?>
            </td>
          </tr>
        </table>
        <p> </p>
            <p> </p>
      <!-- end #mainContent --></div>
      <div id="footer">
        <p>Footer</p>
      <!-- end #footer --></div>
    <!-- end #container --></div>
    </body>
    </html>
    <?php
    mysql_free_result($rshlimgs);
    ?>

    Hi Charles,
    Use [Dr%] Variable formula as =if(IsNull([Dr%]);0;[DR%])
    Here IsNull returns the Boolean value of variable [Dr%] if its true then inserts 0 else the percentage values of failed tests based on the  total number of assembly tests performed.
    I Hope this is what you want to achieve....
    Thanks....
    Pratik

  • How do I create a vertical side menu with its own styling separate from the horizontal bar above it?

    Hello.  I need assistance in styling my side menu.  I would like for it to  have a different style than the horizontal bar that is above it.  I would like that the side menu have a black background and with white text vertically aligned to the left.  But I would also like that the mouse's arrow to turn into a hand when it touches the letters instead of during the entire width of the background.  When I began styling the text, everything aligned fine until I added the links in html code.  When I added the <a> tag and created a link to another page, the text goes from the left to the center of the black box.  And the entire width is a link rather than just the words.  To correct this, I tried renaming the div tag containg the menu.  I tried renaming the ul tag.  And I tried renaming the li tag and changing the declarations.  None of these ideas worked.  I thought about changing the <a> tag in the head of the document, but that didn't change the styling either.  I also tried creating the black background by inserting a black box as a background image with the links over top of the image.  It didn't work.  I would appreciate your assistance.   I will supply the coding if anyone is interested in looking at it.  Thank you.
    Nora.

    I can post a link to the page.  But I will need to upload it.  It will take a day to show.  But after I wrote to you.  I began working with creating additional a:link styles.  I was able to create a shortened clickable area of one the words in the vertical menu.  Your advice reinforced what I have learned.  The following code shows that I started to make different styles of the a:link for each word on the vertical menu.  I think that this will work.  To indicate the different a:link style I used bold letters .  Thank you very much.
    html:
    <div class="side_menu_nav">
         <ul class="side_menu">
              <li class="side_menu"><a href="still image.html">STILL IMAGE</a></li>
              <li class="side_menu_video"> <a href="video.html">VIDEO</a></li>
              <li class="side_menu" ><a href="animation.html">ANIMATION</a></li>
              <li class="side_menu" ><a href="website.html">WEBSITE</a></li>
         </ul>
    </div>
    CSS:
    .side_menu_nav {
        margin-top: 100px;
        width: 190px;
        height: 230px;
        background-color: #F63;
        font-size: 18.5px;
        z-index: 5;
        font-family: Arial, Helvetica, sans-serif;   
    side_menu ul  {
        list-style-type: none;
        padding-left: 10px;
    side_menu li  {
        display: list-item;
    .side_menu a:link  {
        text-align: left;
        color: #FFF;
        background-color: #000;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        width: 190px;
        margin-top: 15px;
        margin-left: 15px;
        margin-right: 0px;
        text-decoration: none;
        width: 120px;
    .side_menu_video a:link  {
       text-align: left;
        color: #FFF;
        background-color: #000;
        padding-left: 0px;
        padding-right: 0px;
        padding-top: 0px;
        padding-bottom: 0px;
        width: 65px;
        margin-top: 15px;
        margin-left: 15px;
        margin-right: 0px;
        text-decoration: none;
    .side_menu a:visited  {
        color: #FFF;
        background-color: #000;
    .side_menu a:hover  {
        color: #CCC;
    .side_menu a:active   {
        color: #000;/*text*/

  • Showing the whole text in a horizontal bars

    I have this problem with an horizontal bars graph. There are some questions shown, next to the results to the corresponding answers.
    The questions, though, are shorthened with ...
    It there a setting or another way to show them in full form?
    Thanks in advance :)

    Can you explain more clearly .
    My requirement is , I need to display the whole content when the user selects the <h:selectOneMenu>
    Is there any way where I can enlarge the box which is displayed when user selects any item in the <h:selectOneMenu>
    Please let me know if there is any solution.
    Thanks in advance
    regards,
    Pranab
    Message was edited by:
    ghy

  • Create horizontal bar buttun list

    i used apex 4.1,oracle database 10.3,theme 21(scarlet) ,window7
    i want to create horizontal bar button list as show in theme image to navigation between the region in my page,i tray every thing to do this but no result. please advance me
    [http://www.freeimagehosting.net/ejy3z]
    <img src="http://www.freeimagehosting.net/t/ejy3z.jpg">
    thanks

    Ahmed Farouk wrote:
    i used apex 4.1,oracle database 10.3,theme 21(scarlet) ,window7
    i want to create horizontal bar button list as show in theme image to navigation between the region in my page,i tray every thing to do this but no result. please advance me
    [http://www.freeimagehosting.net/ejy3z]
    <img src="http://www.freeimagehosting.net/t/ejy3z.jpg">
    That is a Region Display Selector. Create it according to the instructions in the linked documentation.

  • My Macbook pro 15,4 retina display have dense horizontal lines

    My Macbook pro 15,4 retina display have dense horizontal lines and one vertical line in left side corner..

    Sounds like a GPU, Display or Display connection problem.  An appointment at an Apple store genius bar is the best option.  Your MBP is probably still within the warranty period.
    Ciao.

  • Black horizontal bars in log and capture

    Hi,
    big problem here, when I go to capture my video in the log and capture sceen it displays 5 think horizontal black bars accross my image..
    tried restarting/launching
    I never had this problem before, using Panasonic DVmaster tapes on a JVC BR3000 deck
    HELP!!
    thanks

    Not sure... never ran across this before.
    What do you see from the deck to a broadcast monitor?
    How does it look when you've captured it?
    Maybe switch out FW cables?????? Oh - is it going IN via FW or into a card?
    Any chance you can hook up a cheap fw camera or any other deck to trouble shoot some of these issues?
    Might also want to delete your preferences... google for FCPRescue5 or FCPRescue6 depending on which v you are using.
    CaptM

  • Flickering Horizontal Bar on Late 2008 MBP

    I have late 2008 mbp (5,1)....NVIDIA 9400M and 9600M GT/Intel Core 2 Duo 2.93 Ghz, 4GB RAM
    Having issues where on random occasions (especially if computer screen is open and laptop is just placed on a desk-so movement?), a horizontal bar on the bottom of the screen about 4.5 cm in height begins to rapidly flicker. It started happening about a week ago, and twice it has caused the computer to freeze (reboot necessary).
    Also, although temp sensors seem to be giving normal values, I have been noticing that the entire surface of the laptop is getty very hot (hotter than I have normally experienced from the laptop under a normal load).
    Graphics card issue, screen connection issue? Any thoughts of what it is?

    Display problems do not improve over time.  Make an appointment with Genius bar at the Apple store and bring it in.  If you have Applecare and is still within the 3 year warranty period, your saved, other wise be prepared to pay.  I have experienced display issues twice.
    Ciao

  • Imac to TV with horizontal bar

    I connected my Imac to my TV using the mini-dvi to video adapter and it worked, however I have a horizontal bar going up across my TV screen. How do I fix this problem?

    You need a > Moshi Mini DP to HDMI Adapter with Audio Support - Apple Store (U.S.) to plug into the ThunderBolt port and an HDMI cable.

  • Horizontal bar with red for negative and green for positive?

    I need to use CF9 to create horizontal bar chart where the intensity of the red (negative) is determined by the amount of negativity of the values and similarly the intensity of the green is based on the amount of positivity of the values.
    See attached snapshot. Ignore the value label.
    Can CF10 do this. I briefly looked but does not appear so.
    Any advice? THANKS!!

    Yes, with the new charting engine it is possible to do this with rules.  Check out my example at http://www.cfuser.com/library/demos/index.cfm?do=charting&get=bcr.  You have to set the threshholds and the colors.  The colors are two part to allow for gradients. I have also just posted a write-up at http://www.cfuser.com/rules-preview-zoom-and-flash/

Maybe you are looking for

  • Finder refresh in OS 9 clients

    Hi All: I saw this problem mentioned elsewhere ("mac os 8.6 and 9 support (strange behaviour)" and "OS 9 Clients and Tiger AFP"), but both topics have been archived, so I thought I'd start another. We upgraded our file server (a 2.0 GHz Dual Core G5

  • Problem on stacked bar chart?

    Hi, I am trying to create a stacked bar chart. On this chart, Y Axis is the status like new, half finished, finished, X Axis is the value. 3 series: North America, Asia, Europe. On the Y Axis, the order of the status from top to bottom should be new,

  • Mix guest os in a vmware cluster

    Hi All, I am trying to figure out if there is performance hit due to mix type of guest os in a vmware cluster e.g. Linux and windows VM's deployed together. Is there any best practice document on it ? Thanks

  • Instead of CODEPAGE

    Please see this link http://help.sap.com/saphelp_46c/helpdata/en/fc/eb3d83358411d1829f0000e829fbfe/content.htm If we do not  want to UPLOAD/DOWNLOAD  data under DOS, what other parameter instead of CODEPAGE   should we use? Say we want to UPLOAD /DOW

  • Tiger won't install on G4 AGP 350

    I'm trying to install Tiger on a newly-put-in internal 40 Gig HD, so I have two volumes, one 10 Gig 9.2.2 and one 40 Gig OS X. The new HD is partitioned into two tiny volumes and one large (38 MB) volume. I get through the installation (only if I unp