Loading dataprovider progress bar possible?

Gidday
I'm loading data out of SQLLite into an array in my AIR app, ready to populate a datagrid once the SELECT hs been successful:
data_grid.dataProvider = new DataProvider(evt.data)
It works really well, but I was wondering if there is a way to display progress?
50 000 rows takes a couple of seconds to populate, and I'm catering for up to 200 000 rows.
Is it possible to directly monitor progress of SELECT queries, and then for Flash to populate a dataProvider, or is it a case of having to split up the query into chunks of say, 10 000 rows, break, update a progress bar, then go back for the next SELECT?
Also - similar topic - is it possible to set up progress for browseForDirectory type operations? I'm loading in large filelists and parsing the file names. I have set up progress tracking once the parsing starts, but cannot seem to do the same after the Event.SELECT listener kicks in, and I run this code in a function:
var f1:Array = d1.getDirectoryListing();
        var len:int = f1.length;
        for(var i:int = 0; i < len; i++) {   
            f2.push(f1[i].name); //if current item in f1 array is a file, push it onto the f2 array
            f3.push(f1[i].nativePath);//save location of file
            if (f1[i].isDirectory) {
                gL(f1[i]);
Thanks guys!

you can't display the progress of any single select query.  the best you can do is to break the select into several "chunks" or warn the user that your app will be unresponsive for some period of time.
here's the general idea with chunking:
Chunks
For example, if you have a for-loop that takes 10 seconds to execute, your game will appear to freeze for 10 seconds after this loop starts. Nothing will update on stage and nothing will respond to user input. Either you should warn your user before starting that loop or you should break that loop into several smaller chunks that allow visual updates to the user so they do not think your game is broken.
For example, this for-loop that adds odd numbers (and shows the first m odd numbers sum to m*m) freezes my Flash Player for about 9 seconds.
var i:Number;
var n:Number=3000000000;
var s:Number=0;
var startI:Number=1;
var endI:Number=n
var startTime:int=getTimer();
for (i=startI; i<endI; i+=2) {
       s+=i;
// 9 seconds
trace((getTimer()-startTime)/1000,s,n*n/4,s-n*n/4);
The following technique shows how to break this (and any other for-loop) into chunks that allow the Flash Player to update every second.
var i:Number;
var n:Number=3000000000;
var s:Number=0;
var startTime:int=getTimer();
// This is the number chunks into which the previous for-loop will broken. If the // previous for-loop took about 9 seconds, using 10 chunks means there will be updates // about every 0.9 seconds.
var chunks:int=10;
var startI:Number=1;
var endI:Number=n/chunks;
var t:Timer=new Timer(100,1);
t.addEventListener(TimerEvent.TIMER,f);
f();
function f(e:Event=null):void {
       for (i=startI; i<endI; i+=2) {
              s+=i;
       trace("stage update",startI,endI,s);
       if (endI<n) {
              t.reset();
              t.start();
       } else {
              trace((getTimer()-startTime)/1000,s,n*n/4,s-n*n/4);
       startI+=n/chunks;
       endI+=n/chunks;

Similar Messages

  • Need to make changes to FC load page/progress bar.

    Hello,
    I have a page built in FC that contains media that requires some time to download (36mb or so) and my client loves everything I have done exept the load page.  I have no idea where I need to go to make adjustments to this page.  All I want to do is add a background image to let the impatient visitors know that the page they are looking for is loading.  I am also curious as to why it takes this page so long to load since the media is not embedded into the swf.  The more important question is where I need to go to create a custom layout for the load in page with the white on white progress bar.  The page in question is here:
    http://www.thealoharadio.com/EPK/Main.html
    Any help would be appreciated,
    Thank You,
    Brett

    Short answer is, not in Flash Catalyst right now.
    But you can change it in Flash Builder with a little coding.
    Here is a good tutorial on creating a custom preloader.
    Chris

  • Computer shuts down while loading the progress-bar

    SPECS:
    MacBookPro 13-inch
    Early-2011
    I recently installed Yosemite in my computer, hours later while I was using the new OS X my computer freezed. I held the power button and it turned off. Now, I'm trying to power on the computer and when the progress bar is in 50% the computer turns off.
    I need help ASAP

    rthec wrote:
    I've seen some of the threads regarding this but none of the fixes work for me.  I formatted my hard drive for reasons other than this so it has a fresh install of Windows XP Home Edition, the latest video drivers, and the latest Flash.  When my wife plays Cityville or Castleville, her computer shuts down.  I checked the system logs and nothing is there regarding the shutdown.  I tried changing the hardware exiliration setting and that didn't help.  We've tried the games on Firefox and IE 8 with the latest updates and it still doesn't work.  Any help will be appriciated.
    The operating system, XP in this particular case, will shutdown the system to prevent damage to hardware if it encounters an instruction which can damage the system. It will usually logs an event which you can view by clicking Start, then in the Run field, type eventvwr.msc and click OK. Then open the both the "System" and "Application" submenus and look for events which are prefixed with a white X inside a red circle. The 6th column from the left will contain the Event ID which can be used to try and track down the source of the problem.

  • Itunes store fails to load, and progress bar freezes, even though i am logged in.

    i cannot get the itunes store to load on my windows 7 starter netbook. i use both firefox and IE browsers. and use a 3g dongle connection. itunes has been working fine up until a month ago. now it refuses to fully load. i have checked all intenet options which are correct. and firewall settings, which allows full access to itunes. running the itunes diagnostic reports that i am not the administrator ... despite the fact that i am signed into windows as an administrator! 
    i recently updated to itunes 10.4. should i go back to an earlier version?
    what is causing this enduring frustating problem? and what is itunes doing about it?

    i also got the very long list of titles,, in blue writing ... latest cds, movies etc, without any images! like a shopping list, or the bare bones of a web page. but this only appeared on screen after i disconnected from the internet.
    i am amazed that itunes are not targeting this problem with a an alert on itunes. it is affecting quite a few users. but they don't seem to care. i've tried every means of contact, but just got the runaround treatment!

  • Show Progress Bar while only on Page Load.

    Hi Experts,
    I want to show progress bar every time when page loads.
    Progress bar is coming on the page. but it is not going off after page is loaded.
    Below is the code which i added for the Progress bar.
    //written on Header Text of Page
    <script type="text/javascript">
    <!--
    function html_Submit_Progress(pThis){
    $x_Show('AjaxLoading');
    window.setTimeout('$s("AjaxLoading",$x("AjaxLoading").innerHTML)', 100);
    //-->
    </script>
    //written on footer text of Page
    <style> #AjaxLoading{padding:5px;font-size:18px;width:200px;text-align:center;left:20%;top:20%;position:absolute;border:0px solid #666;}
    </style>
    <div id="AjaxLoading" style="display:none;"><br /><img src="#APP_IMAGES#progress_bar.gif" id="wait" /></div>
    //called the function Execute on Page Loads 
    html_Submit_Progress(this);Progress bar is continuously showing on the page after page is loaded.
    I want only to show only page loads.
    Please help me .
    Apex Version : Apex 4.1
    DB Version : 10g
    Regards,
    Jitendra

    Hide the loader element when the page has loaded. Put this in the javascript section
    $(document).ready(function(){ $x_Hide('AjaxLoading'); });Or put it in the page load section
    $x_Hide('AjaxLoading');Or create a dynamic action which fires on page load, select a hide action, and use a jQuery selector to target '#AjaxLoading' as an affected element.

  • Can I remove the startup progress bar from a Flex app?

    Hey all,
    I have built a few charts for my companies' website: http://www.midwestmarket.org/page/Area+Control+Error
    On all of them, I have noticed that there's a delay of 3 or 4 seconds from the time the page loads, a progress bar shows, and then the graph is actually shown.
    The charts in question are all Flex 3 builder built, and I am upgrading now to Flash 4 builder. But, still I see the progress bars.
    I know that Fusion Charts doesn't have this same startup routine, those charts pop right up as soon as the site is loaded. Now Fusion is of course build to JUST be a chart tool and probably doesn't load as much stuff. But, is it possible to get there with Flash 4 builder?

    hi,
    With flashbuilder you first need to load the swf, then it creates the display objects this is what the loadbar is there for, if you have embedded assets then that bar will stay even longer. Once the application creation sequence is complete the displaybar disappears and then your application is displayed.
    Now imagine removing that bar, on a slow connection with a 'large' app, the user would be faced with a blank screen for several seconds, not the desired end-user experience we are after.
    You can make it more interesting by customising the pre-loader with say a company splash screen which offers a more visually appealling startup
    this is a simple example of a custom preloader, source is included
    http://flashhub.net/ezflex/testloader/
    One quick note with preloaders there is no flex sdk at that point so preloaders have to comply with the immediate requirements of the flashplayer api. So basically on flash components.
    David.

  • Progress bar and threads

    I have made a web browser, when you load a web-page a progress bar is displayed showing the current progress of the page loading. However if you try and load a new page before the previous page has finished loading the progress bar goes crazy. I have included a short example of what is happening below:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    //import javax.swing.event.*;
    public class ProgressBarTest extends JFrame implements ActionListener,Runnable{
        private JProgressBar myprogressBar;
        private boolean stopProgressBar = false;
        public Thread thread;
        public ProgressBarTest(){
            createGui();
        }//end of constructor
        public void createGui(){
            this.setLayout(new BorderLayout());
            this.setDefaultCloseOperation(this.EXIT_ON_CLOSE);
            this.setSize(300,150);
            JPanel ButtonPanel = new JPanel(new FlowLayout());
            JButton new_Page = new JButton("new Page");
            JButton Page_Loaded = new JButton("Page Loaded");
            new_Page.addActionListener(this);
            Page_Loaded.addActionListener(this);
            ButtonPanel.add(new_Page);
            ButtonPanel.add(Page_Loaded);
            myprogressBar = new JProgressBar(0,100);
            this.add(ButtonPanel,BorderLayout.NORTH);
            this.add(myprogressBar,BorderLayout.CENTER);
            this.setVisible(true);
        }//end of method
        public void actionPerformed(ActionEvent e) {
            if(e.getActionCommand().equals("new Page")){
                createNewandRun();
            }else if(e.getActionCommand().equals("Page Loaded")){
                stopProgressBar = true;
        }//end of method
        public void run(){
                myprogressBar.setVisible(true);
                stopProgressBar = false;
                myprogressBar.setValue(0);
                System.out.println("Page Loading...");
                try{
                    for(int i = 0;i<100;i++){
                        Thread.sleep(70);
                        myprogressBar.setValue(i);
                        if(stopProgressBar){
                            System.out.println("progress was stopeed at "+i+ " %");
                            break;
                  myprogressBar.setValue(100);
                  System.out.println("Page Loaded");
                  thread.sleep(1000); //Show complete progress bar for one second
                }catch (Exception e){
                    System.out.println("thread error "+e);
               myprogressBar.setVisible(false);
        }//end of run method
        public void createNewandRun(){
          thread = new Thread(this);
          thread.start();
        public static void main(String args[]){
             SwingUtilities.invokeLater(new Runnable() {
             @Override
             public void run() {
              new ProgressBarTest();
        }//end of main
    }//end of classThanks in advance
    Calypso

    Using Swing Worker.... Just like your code intended, the progress bar will wait one second upon completion before being made invisible. If the "New Page" button is pressed then the old SwingWorker exits gracefully and a new one starts up. All modification of the JProgressBar is done on the Event Dispatching Thread.
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JButton;
    import javax.swing.JProgressBar;
    import javax.swing.SwingWorker;
    import java.awt.event.ActionListener;
    import java.awt.event.ActionEvent;
    import java.beans.PropertyChangeListener;
    import java.beans.PropertyChangeEvent;
    public class ProgressBarTest implements ActionListener,
            PropertyChangeListener{
        JButton newPage;
        JButton pageLoaded;
        JProgressBar progressBar;
        PageLoader currentWorker;
        public ProgressBarTest() {
            JFrame frame = new JFrame();
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            newPage = new JButton("New Page");
            newPage.addActionListener(this);
            pageLoaded = new JButton("Page Loaded");
            pageLoaded.addActionListener(this);
            JPanel buttonPanel = new JPanel();
            buttonPanel.add(newPage);
            buttonPanel.add(pageLoaded);
            progressBar = new JProgressBar();
            JPanel contentPane = new JPanel();
            contentPane.setLayout(new java.awt.BorderLayout());
            contentPane.add(buttonPanel,java.awt.BorderLayout.NORTH);
            contentPane.add(progressBar,java.awt.BorderLayout.CENTER);
            frame.setContentPane(contentPane);
            frame.pack();
            frame.setVisible(true);
        public void actionPerformed(ActionEvent e) {
            if(e.getSource() == newPage) {
                if(currentWorker != null) {
                    currentWorker.removePropertyChangeListener(this);
                    currentWorker.cancel(true);
                progressBar.setValue(0);
                progressBar.setVisible(true);
                currentWorker = new PageLoader();
                currentWorker.addPropertyChangeListener(this);
                currentWorker.execute();
            }else if(e.getSource() == pageLoaded) {
                if(currentWorker != null) {
                    currentWorker.pageLoaded = true;
        public void propertyChange(PropertyChangeEvent evt) {
            if(evt.getPropertyName().equals("progress")) {
                int progress = (Integer) evt.getNewValue();
                progressBar.setValue(progress);
            }else if(evt.getPropertyName().equals("pageLoaded")) {
                progressBar.setVisible(false);
                currentWorker.removePropertyChangeListener(this);
                currentWorker = null;
        private class PageLoader extends SwingWorker<Void,Void> {
            private int progress;
            private boolean pageLoaded;
            public Void doInBackground() {
                for (progress = 0; progress < 100; progress++) {
                    if(pageLoaded) break;
                    try {
                        Thread.sleep(70);
                    } catch (InterruptedException e) {
                        //return gracefully since "New Page" button was pressed
                        return null;
                    setProgress(progress);
                /**The progress might have reached 100 naturally. In which case
                 * pageLoaded is false and needs to be set to true.*/
                pageLoaded = true;
                /**The Page Loaded button might have been pressed, in which case
                 * the progress is not 100 and needs to be set to 100.*/
                progress = 100;
                setProgress(100);
                try{
                    //show completed progress bar for 1 second.
                    Thread.sleep(1000);
                }catch(InterruptedException e) {
                    pageLoaded = false;
                    return null;
                return null;
            //executed on EDT when doInBackground() method is done
            public void done() {
                System.out.println("Progress reached: " + progress + "% " +
                        "upon termination.");
                if(pageLoaded) {
                   firePropertyChange("pageLoaded",null,null);
        public static void main(String[] args) {
            javax.swing.SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                   new ProgressBarTest();
    }

  • After updating to the latest version of Firefox on my Mac there is no progress bar for the page load. I really miss this feature and can't seem to find a way to obtain it.

    The page load progress bar that was on the lower right of the window is no longer there. After updating to the latest version of Firefox on my Mac there is no progress bar for the page load. I really miss this feature and can't seem to find a way to obtain it. The tab has a circular progress wheel but this is useless for determining a stuck or slow loading page.
    PLEASE NOTE: I am typing this in from a Windows based work computer but am asking about my Apple MacBook Pro that i use at home.

    Firefox 4 saves the previous session automatically, so there is no longer need for the dialog asking if you want to save the current session.<br />
    You can use "Firefox > History > Restore Previous Session" to get the previous session at any time.<br />
    There is also a "Restore Previous Session" button on the default <b>about:home</b> Home page.<br />
    Another possibility is to use:
    * [http://kb.mozillazine.org/Menu_differences Firefox (Tools) > Options] > General > Startup: "When Firefox Starts": "Show my windows and tabs from last time"

  • Progress Bar / Loading bar in LiveCycle forms

    Hello All ,
    I was just wondering is it possible to write a script to show a Progress bar / Loading bar in LiveCycle ??
    Thanks.

    Hi, I have this sample from Niall, https://sites.google.com/site/livecycledesignercookbooks/niall-o-donovan/2010-04-05%20Prog ress%20bar.pdf?attredirects=0&d=1,  not sure if it is the same one but is around that date.  There's also this sample http://adobelivecycledesignercookbookbybr001.blogspot.com.au/2013/06/displaying-acrobat-pr ogress-bar-in.html.
    Regards
    Bruce

  • UJI Progress bar / Loader woes

    Hi. I'm new here. Only a beginner with Flash really, been
    using for a few months. I only have Flash 8 due to finances, but I
    use CS3 at work.
    I have built my own preloaders/progress bars in the past but
    decided to have a go with the UI progress bar / Loader for quick
    setup purposes.
    Strange things afoot - works when published with "simulate
    download" in Flash, works locally in browsers (quickly, obviously)
    - but when I upload it to a server, Firefox is fine, but IE (6
    & 7) it WAS working properly earlier, but when revisiting site,
    progress bar hangs at 0%, then fails to disappear when main film is
    loaded in. I have noticed this recurring problem with this
    component over the last couple of days.
    Perhaps I ought to just stick to writing manual ones, but
    this one seemed like a very quick way of doing it - if the client
    is satisfied with a generic, albeit slightly styled one.
    Any ideas? Is it the styling causing it in some way? I have
    fontFamily, fontSize, themeColor.

    Both load instantly for me after the first load, check if it
    is also doing this for you, if not than i am completely lost, i
    cant see how a change in URL could possibly change the
    flash.

  • Progress bar for chart dataProvider?

    I have a chart which has for dataProvider a link to a php
    script which processes data and returns XML.
    The processing takes a little bit of time so from flex the
    user stares at a blank graph for some time.
    Is there anyway to link a progress bar to this loading
    process?
    If I load the script directly from the browser, the browser's
    progress bar (bottom right in IE) is more or less accurate. I would
    like the equivalent from within flex.
    Any input appreciated, thanks!
    sample:
    <mx:PlotChart
    id="molecularChart"
    width="100%" height="100%"
    dataProvider="
    http://www.blabla.com/processing.php"
    showDataTips="true">
    ...

    If you are trying to update the progress bar display when your upload is 10%, 20%, , , x% complete, then you have to 'pretend' that the progress bar display corresponds to the percentage completness of your file upload. I believe that there is no other way to get around this without comprimising the speed of your upload.
    Check out the swing forum, I believe there is a lot of discussion on this topic.

  • Show progress bar while module loads

    I have a TabView where each tab is a module. One of the
    modules has a lot of child components and when I click to activate
    that tab - it takes 2-3 seconds to load. During this time OSX shows
    the beach ball.
    Is it possible for me to show a loading progress bar instead?
    Should I be pre-loading all the modules when the application loads,
    or at some other point? If so, how do I do this?
    Any suggestions would be appreciated.

    Hey Jason,
    I'm not sure who moderates, but I can send you in the right
    direction.
    Short answer: Look around for Asynchronous Flex demos
    Long answer:
    The interfaces locks up (beach ball/hour glass) because the
    main application 'thread' is busy with the task you asked of it.
    This can, in many different languages, cause a freeze. Javascript,
    Native Mac or Windows applications, apparently Flex too.
    Running one task at a time is considered a synchronous
    (serial) request. What you need to do is make an asynchronous
    (parallel) request. In the web world, that's the 'A' in Ajax. By
    making asynchronous requests, you free up the main 'thread', while
    a separate worker thread is off completing the task. This keeps
    your interface responsive.
    I think that leads to event listeners.. Send off a background
    request, but listen for it to complete. Link the listener to a
    second piece of code upon successful completion.
    I wish I could get into more detail, but I'm not a Flex guy..
    hoped that at least helped gel the idea.
    -dp

  • Stopping a Progress Bar when a page has loaded.

    I currently have an application that uses a linkbar with a viewstack.  If I click on a particular link, a component mxml page with an advanced datagrid is loaded.  However, the datagrid can take up to 10 seconds to load.   So, I need to implement a progress bar that will run until the page is completely loaded/ painted.   What phase and or event should I use to capture this.

    I added your Preloader AS class and called the preloader from my application class and recieved an error can the preloader only be used in the Application class.
    Start Class ( there is a destPath associated with this and that is why you don't see any other code. A .swf file is loadded):
    <?xml version="1.0" encoding="utf-8"?><mx:Application 
    xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute"preloader="com.dstsystems.regulatory.compliance.components.ecompliance.view.FlashPreloader">
     </mx:Application>
    ERROR Received and associated function below:
    1046: Type was not found or was not a compile-time constant: FlexEvent. FlashPreloader.as SmartDeskRegulatoryFlex/src/com/dstsystems/regulatory/compliance/components/ecompliance/v iew line 45 Flex Problem
    private function initComplete_handler ( event:FlexEvent ):void
    dispatchEvent(
    new Event( Event.COMPLETE ) );}
    Is it possible to add the Preloader directly to the Component.mxml in question.  My complile time issue is corrected but the preloader doesn't seem to work.
    <?xml version="1.0" encoding="utf-8"?> 
    <mx:VBox 
    xmlns:mx="http://www.adobe.com/2006/mxml" width="100%" height="100%" backgroundColor="#FFFFFF" xmlns:view="
    com.XXXsystems.regulatory.compliance.components.ecompliance.view.*"preloader="
    com.dstsystems.regulatory.compliance.components.ecompliance.view.FlashPreloader"creationComplete="Init()"
    paddingLeft="10" paddingTop="10" paddingRight="10" paddingBottom="10"horizontalScrollPolicy="
    off" verticalScrollPolicy="off">
    <mx:Script>
    <![CDATA[
    import
    mx.events.AdvancedDataGridEvent;

  • Display page load progress bar...

    I have a page which takes about 50-60 secs to load and I want to display some kind of progress bar indicating to the user that the page is loading. This page is a pop up page with a report returning a lot of data. I searched the forum and most of the progress bar examples are related to a button click event. However I want the progress bar to display before the entire page has been loaded.
    I really need to get this done fast and any kind of help or suggestion will be really appreciated.
    Thanks!

    Hi Carl,
    I have a similar issue to the one 'user549354' listed.
    The application in this case is single page application with a couple of report regions, one of which takes about a minute for the query to return the result.
    The example listed below by you, and another one I have found by Vikas, both fire a javascript-redirect off a button... The related forum posts are:
    Long running process/query
    Re: Long running process/query
    but if you want the processing page off the initial url, this is not possible.
    Yes, you could workaround it by showing a button on the initial page which the user has to press to see the processing page ... but that is not an ideal solution.
    I am not very familiar with javascript, and have tried the following alternatives unsuccessfully
    1) Using a url to a different (intermediate) page (say page # 2) which has a display as text item that renders the animated gif image, with following source
    Please wait...
    <img src="/i/processing3.gif" />
    in combination with different types of processes (on load/after regions/after footer) which redirect to my original page (say page #1) by doing the following
    begin
    htp.init;
    owa_util.redirect_url('f?p=&APP_ID.:1:&SESSION.::&DEBUG.:1:::');
    end;
    This does not show the intermediate page at all, just waits until the actual page loads.
    2) use the display as text item mentioned above, and in the region source (html region) using the following:
    <META HTTP-EQUIV=Refresh CONTENT="2;URL=f?p=&APP_ID.:1">
    The problem here is that the animated gif becomes de-animated after the the number of seconds set in the code, in the above case 2 seconds.
    3) using the page header and footer javascript mentioned in the links off your post, and trying to fire it from a url type region using the following codce
    javascript:html_Submit_Progress(this);
    This fails with error – object does not exist – presumably because this needs to be fired off an item – wonder if it will work off a link.
    4) Various other permutations and combinations of the above…
    You have mentioned in your last post on this thread that an intermediate page could be called, that will fire the progress bar, and then redirect to the slow loading page.
    This is seems to exactly what I am after – with the url of the intermediate page being the initial url with which to access the application.
    The problem is that I do not know
    a)     where or how to fire the relevant javascript [javascript:html_Submit_Progress(this);] from, besides a button press, and also
    b)     how to (then and only then) re-direct to the slow loading page, so as to ensure that the animated gif is displayed… using any of pre-submit process (on load… after footer) prevents the page and the animated gif from rendering.
    I am sure that this is very much possible… any help would be very much appreciated.
    Thanks.
    Alex.

  • Splash screen with progress bar and multiple jar files to load

    Hello,
    I have been looking to the new features in java 6 for splash screens. I haven't implemented this never before and i was wondering how i could do the following with java 1.5 or 6:
    I would like to see a splash screen with a progress bar that "grows" when every jar file has been read.
    At this time i call my application like this from a shell script:
    exec "$JAVA_BIN" -Djava.library.path=$LIBRARIES_J3D -classpath xxxx.jar yyyy.jar zzzz.jar ...
    where xxx.jar, yyy.jar and zzz.jar are very heavy jars.
    So i would like to see in the progress bar 33% 66% and 100% when they are loaded.
    I do not know if this is the right forum to ask for this. If no, please point me which would be the ideal one.
    Any help will be very useful. Thanks to all!

    Am 10.07.2015 um 07:17 schrieb Lalit Solanki:
    > Hi friend,
    >
    > I am create pure eclipse E4 application and trying to splash screen with progress bar and message.
    >
    >
    >
    >
    > but above image in only support eclipse E3 application so pleas help me how to add progress bar and message in eclipse E4 application
    >
    Hi Lalit,
    there's a Bug entry: https://bugs.eclipse.org/bugs/show_bug.cgi?id=382224
    Meanwhile you can use this solution:
    https://www.eclipse.org/forums/index.php/t/328812/5ceed4bcaa683a94d65efb161bffd217/
    Regards,
    Ralf.

Maybe you are looking for

  • SAP GLM Print Request - Load Balancing of WWI server

    Hi GLM Experts, I am using new GLM + module that generates labels based on Print Requests. I am unable to understand how I can load balance the WWI services when there are multiple label printing requests. In GLM + we associate a WWI to a Print Stati

  • How to create a group including several  roles?

    Hi experts, Hereby a simple question but urgent, that is, how to create a group in portal which includes several roles. For exemple a group for manager contented the roles for managers and another group for employees. Thus it simplifies the role assi

  • Alv output- download to excel file

    Hi I have ALV report. My requirement is For example i have 10 records in my ALV output. I want to download first 5 data to excel file. so i need to select the data and click the button download in alv screen. I created the download button in ALV scre

  • Organising by date added in track order

    hi. i have my itunes organised by date added so i can see whats newest in my library. the only issue is that it doesnt list the tracks in the right order in the album and sometimes splits each album into smaller batches of tracks. is there a solution

  • How can I get my purchased apps back?

    How can I get my purchased app back after ios5 update?  Not all of my purchased apps are listed under "purchased apps" in the app store.