Force refresh ListField

I develop in Blackberry OS 5.0.

I wrote a lazy image loader for a listfield. In drawListRow, I try to get pictures of my cache of the images. Until he's here, I'll be a dummy image.

private class ListCallback implements ListFieldCallback {

    public ListCallback() {
    }

    public void drawListRow(ListField list, Graphics g, int index, int y, int w) {

        ...
        Bitmap bitmap = lazyImageLoader.displayImage(imageURL, index);
        g.drawBitmap(5, y + 5, bitmap.getWidth(), bitmap.getHeight(), bitmap, 0, 0);
        ...
    }

    public Object get(ListField list, int index) {
        return _listElements.elementAt(index);
    }

    public int indexOfList(ListField list, String prefix, int string) {
        return _listElements.indexOf(prefix, string);
    }

    public int getPreferredWidth(ListField list) {
        return Display.getWidth();
    }
}

When the image has finished downloading, I call imageLoaded().

This method should force a new drawing of this line. So I use invalid as I read it everywhere it is the way to go.

Nothing happens until I interact with the screen, scrolling again for example the listfield.

public void imageLoaded(final int rowIndex) {
// add this request to screen event queue
UiApplication.getUiApplication().invokeAndWait(new Runnable() {
public void run() {
_listField.invalidate(rowIndex);
}
});
}

Any suggestions how I can force a refresh immideately?

Invalidate should work.

Can I ask that you put a breakpoint in your drawListRow to see if it is called after the invalidate () and confirm what line is updated.

BTW, you don't need to run invalidate() on the thread of events.  It actually doesn't do anything, he's planning a painting for later operation.  So, you can call

_listField.Invalidate (RowIndex);

whenever you like.

Tags: BlackBerry Developers

Similar Questions

  • How to force refresh rate in OSX?

    Hi my friends.

    I have a problem (for me) with a resolution and framerate in MacMini with El Capitan and my home theater.

    I'll try to explain well because my English it s UH very poor

    Well, yesterday was this entertainment: TV 42 "philips, Pioneer VSX - 520-k A / V and last MacMini version (base end of 2014). MacMini show in TV using the HDMI AV Pioneer link. (MacMini--> Pioneer--> TV). This config use 10920x1080p 60 Hz and see everything ok.

    This morning I bought new Samsung JU7500 TV 55 "4 k - UHD replacament TV Philips TV. The problem of it s with new TV:

    -If I connect MacMini HDMI direct to the TV, see OSX config say

    -If I connect MacMini to A / V, s Billboard in black... Connect only by 'share display' or VNC.

    -If I connect MacMini to A / V but with TV off the coast and their TV display, Panel it s ok...

    After several tests, I found this failure:

    The problem is that...

    1 - If connect MacMini using A / V, refresh rate it s 30 Hz and has / V Don t support this rate (so the screen is black but sounds it s ok with AV, only a black screen it s) (see VNC capture). But nevertheless this same config live TV HDMI TV turns on screen

    2 - If power on MacMini and connect to AV but turn off the TV, display config has 50/60 Hz and disappears 4 k resolutions.

    3 - the last time, with steep 2, config 1920 x 1080 60 Hz for example and turn them on TV (don't forget the MacMini using AV) display see the config and turn on the TV on! (only display is black if I touch any resolution because that change again 30 Hz).

    I think the problem is that MacMini use 30 Hz and AV Pioneer Don t support this rate so my question is: How can I force the refresh rate is 60 Hz forever?

    I hope you understand me

    Finally used this soft, it s very fine it s to pay but good app

  • Last force refresh settings

    Summary of the issue
    Other issues of Windows Live family safety

    What version of Windows Live Family Safety do you use?
    Version 2011 (15.4.3538.513)
    Choose your operating system version:
    Windows 7

    Additional details
    Hello

    I will force the parental control to gain the last parameters. I know that I can force it through the user interface (with the update button), but how can I do (if possible) command line?

    Thank you!

    Hi goox,.

    We do not currently have a function for updating Windows Live Family Safety by using a command line. The only way to refresh the filter is by using the button refresh on the client of parental control.

    Thank you
    B. Litton

  • Force refresh the chart

    Hi all
    I would like to know how I can "force" a chart to redraw after that I changed the color (stroke) - a single LineSeries. I tried validateNow(), (in) - validateDisplayList, invalidateSeriesStyles,... on almost all objects of LineSeries, graphic in curves,... down (or up?)  :-)) object application itself - but nothing has worked. I can see the change, if I have for example by resizing the VDivedBox affecting the color seems to work.
    Can someone tell me how I can force a refresh?

    Thanks in advance

    Uwe

    invalidateDisplayList()

  • Refresh ListField and store multiple entries

    I'm having a problem trying to get my program to save the information. I recently ended show him an entry but I don't think that im doing something because it shows just the same entry over and over again.

    Im trying to to save all fees in the form of spending and then display them in the WelcomeScreen listbox. I'll include the store file, welcomeScreen and booking fees.

    What would be the best way to store this information and display them in the listfield? Also when you return to the WelcomeScreen how can I have the update so the listfield is updated?

    WelcomeScreen:

    package moneyMasterApp;
    
    import java.util.Vector;
    
    import net.rim.device.api.system.*;
    import net.rim.device.api.ui.*;
    import net.rim.device.api.ui.component.*;
    import net.rim.device.api.ui.container.*;
    import net.rim.device.api.ui.decor.*;
    
    public class WelcomeScreen extends UiApplication implements StoreResource {
        //Declare Variables
        //create a button here with the text 'Submit!'
            //ButtonField.CONSUME_CLICK will prevent the Menu from showing up when the user clicks the button.
            ButtonField btnDeposit = new ButtonField("Deposit", Field.FIELD_HCENTER | ButtonField.CONSUME_CLICK);
            ButtonField btnExpense = new ButtonField("Expense", Field.FIELD_HCENTER | ButtonField.CONSUME_CLICK);
            UiApplication nxtscreen = UiApplication.getUiApplication();
            HorizontalFieldManager _FieldManagerTop;
            LabelField myTitleLabel;
            BitmapField bitpam = new BitmapField();
            Background bg;
            LabelField label = new LabelField("Please Select Action:");
            FieldListener listener = new FieldListener();
            private static Vector _data;
            private static PersistentObject store;
            private ListField ExpenseList = new ListField();
    
        public static void main(String[] arg) {
            WelcomeScreen app = new WelcomeScreen();
            app.enterEventDispatcher();
        }
    
        public WelcomeScreen() {
            MainScreen mainScreen = new MoneyMakerMainScreen();
            //Set the title of the screen
            mainScreen.setTitle("MoneyMaster");
            //Add labels and other items
            _FieldManagerTop = new HorizontalFieldManager(Manager.HORIZONTAL_SCROLL);
            myTitleLabel = new LabelField("MoneyMaster");
            bitpam = new BitmapField();
            bitpam.setBitmap(Bitmap.getBitmapResource("bbicon.png"));
            _FieldManagerTop.add(myTitleLabel);
            _FieldManagerTop.add(bitpam);
            bg = BackgroundFactory.createLinearGradientBackground(0x2ebaeb, 0x2ebaeb, 0x7cbaed, 0x7cbaed);
            mainScreen.getMainManager().setBackground(bg);
    
            synchronized(store) {
                Vector _data = (Vector) store.getContents();
                int count = _data.size();
                ExpenseList.setEmptyString("Nothing", DrawStyle.LEFT);
                ExpenseList.setSize(count);
            }
    
            ExpenseList.setCallback(new ExpenseListCallback());
    
            //Add objects to screen
            mainScreen.add(_FieldManagerTop);
            mainScreen.add(label);
            mainScreen.add(new SeparatorField());
            btnDeposit.setChangeListener(listener);
            btnExpense.setChangeListener(listener);
            mainScreen.add(btnDeposit);
            mainScreen.add(btnExpense);
            mainScreen.add(new SeparatorField());
            mainScreen.add(ExpenseList);
            pushScreen(mainScreen);
    
        }
    
        static {
            //Retrieve a reference to a persistent object
            //and set its contents to a new new vector if it is empty
            store = PersistentStore.getPersistentObject(0xe69c43e620187619L);
            //Hash of: "TechStormSolutions.MoneyMaster.Application"
            synchronized(store) {
                if (store.getContents() == null) {
                    store.setContents(new Vector());
                    store.commit();
                }
            }
            //retrieve the contents of the PersistentObject
            //and store in a Vector
            _data = new Vector();
            _data = (Vector)store.getContents();
        }
    
        private final class MoneyMakerMainScreen extends MainScreen {
            protected void makeMenu (Menu menu, int instance) {
                menu.add(deposit);
                menu.add(expense);
                super.makeMenu(menu, instance);
            }
    
            public void close() {
                Dialog.alert("Closing Application");
                super.close();
            }
        }
    
        private MenuItem deposit = new MenuItem("Deposit", 1, 100) {
            public void run() {
                UiApplication.getUiApplication().pushScreen(new depositForm());
            }
        };
        private MenuItem expense = new MenuItem("Expense", 2, 101) {
            public void run() {
                UiApplication.getUiApplication().pushScreen(new expenseForm());
            }
        };
    
        class FieldListener implements FieldChangeListener {
    
            public void fieldChanged(Field f, int context) {
                //if the deposit button is clicked
                if (f==btnDeposit) {
                    UiApplication.getUiApplication().pushScreen(new depositForm());
                };
                if (f==btnExpense) {
                    UiApplication.getUiApplication().pushScreen(new expenseForm());
                }
            }
    
        }
    
        final class ExpenseListCallback implements ListFieldCallback {
    
            public void drawListRow(ListField list, Graphics g,
                    int index, int y, int w) {
                int count = _data.size();
    
                synchronized(store) {
                    Vector _data = (Vector) store.getContents();
                    if (!_data.isEmpty()) {
                        String[] ExpList = new String[count];
                        for (int i = 0; i < count; ++i) {
                            StoreInitial info = (StoreInitial) _data.elementAt(i);
                            ExpList[i] = info.getElement(StoreInitial.AMOUNT);
                        }
    
                        g.drawText(ExpList[0], 0,y,0,w);
                    }
                }
    
            }
    
            public Object get(ListField listField, int index) {
                return null;
            }
    
            public int getPreferredWidth(ListField listField) {
                return Display.getWidth();
            }
    
            public int indexOfList(ListField listField, String prefix, int start) {
                return listField.indexOfList(prefix, start);
            }
    
        }
    }
    

    In my listcallback I had to change that loop and out so that the index was the counter.

    synchronized(store) {
                    Vector _data = (Vector) store.getContents();
                    if (!_data.isEmpty()) {
                        String[] ExpList = new String[index];
                        StoreInitial info = (StoreInitial) _data.elementAt(i);
                        g.drawText(info.getElement(StoreInitial.AMOUNT), 0,y,DrawStyle.RIGHT,w);
                    }
                }
    
  • Background thread which problems refreshing ListField!

    I created a screen that uses a listfield to display the contents of a persistent vector object.

    And now I have an application when the condition is appropriate to remove a vector object. The vector is belong to the lisfield.

    It's my code.

    public class LittleAlarmBackgroundApp extends Application implements
            RealtimeClockListener {
    
        private Vector _alarms;
        private RuntimeStore rs;
        private AlarmListField alf;
    
        public LittleAlarmBackgroundApp() {
    
                     ...                 _alarms = (Vector)_database.getContents();        rs = RuntimeStore.getRuntimeStore();  }
    
      public static void main(String[] args) {
    
                LittleAlarmBackgroundApp bg = new LittleAlarmBackgroundApp();         bg.enterEventDispatcher();
    
        }
    
      public void clockUpdated() {
    
                   ...
    
        if(am.getHour()==hour && am.getMinute() == minute)          {                 if(am.get_type()==1) {    _alarms.removeElementAt(i);//_alarms is a vector that is belong to listfield  alf = (AlarmListField)rs.get(list_key);//alf is a listfield   if(alf != null) {                                  alf.updateList();//this method called setSize() of ListFild                  //AlarmListField(Field).assertHaveEventLock() line: 6067                 //  there is a exception that called IlleaglStateException
    
                      }             }         }     }     am = null;        c = null; }
    
        }}
    

    I want my background thread removes the element of the vector persistent and updating of the size of ListFied so that ListField can update!

    Please help me!

    Instead of

    alf.updateList ();

    follow these steps:

    Application.getApplication (.invokeLater)

    new Runnable() {}

    public void run() {}

    alf.updateList ();

    }

    }

    );

    A slight efficiency would be to declare the executable as a member of LittleAlarmBackgroundApp and then pass the object to invokeLater():

    private AlarmListField alf;

    private Runnable Updater = new Runnable() {}

    public void run() {}

    alf.updateList ();

    }

    }

    - - -

    Application.getApplication () .invokeLater (updater).

  • force refresh table

    Unlikely salvation the rest to refresh a table after deletion or insertion or update of data it's special

    the table was created to an arraylist, I create the datacontrol and then I use data showed but after clicking on the button to re-evaluate and create the data on the table isn't refresh data

    is shown on a popup, after debugging I have find the arraylist instance data is changing, but the data showed on the table is not

    can anyone helpme please

    My jdev is

    11.1.2.4.0

    Hello..

    You add partial trigger to the table and also refresh the iterator using the:

    yourTableIterator.executeQuery (); -to refresh your table.

    THX

  • How to force refresh them data

    Hi experts,

    I forwarded the dashboard data prompt on page ASP.NET to do certain functions and write to the database.

    Then, I create the report in the dahboard that displays the table of data written.

    The problem is when I perform this action, the data has been inserted into the table, but the table in the dashboard is not change accordingly.

    Once I have clear the cache, it will be fine, but I would like that he is automatically updated without manually clear the cache or wait the calendar of cache to do.

    Please suggest me what I do

    Thank you

    You can turn off the caching for this particular table - which may help.

    Another option is to clear the cache using nqcmd for the particular query - once your asp.net treat a inserted/updated to update data, you can call this process.

  • How to force refresh user OAM changes without having to restart the server?

    Hi people,

    I have an OAM authorization rule based on the ldap user attribute (it is url for ldap query under 'Allow access', rule, that is ldap: / /... with a Cache update is enabled) with the hardcoded value, so that only users with these attributes can access protected resources. My problem is that if I add/remove the attribute via the User Manager console, it does not take effect until I have actually restart the access server. I can, however, locking/unlocking the account of the user through Manager users with immediate effect.

    Any help is appreciated.
    Thank you, novel

    Hi Roman,

    There is no problem to run OAM identity and access servers on the same machine, with some ports you choose. I suspect that the problem is that AccessGate the identity of the server is (incorrectly) set up to talk to port 6021 - If Yes, this will be reflected in the identity\AccessServerSDK\oblix\lib\ObAccessClient.xml file and can be corrected by running the configureAccessGate command. There are additional steps to get the automatic hunting at work (in addition to the definition of the parameter doAcessServerFlush) - did you follow the documentation for these?

    Kind regards
    Colin

  • a small question, how to call from a script "redraw force"?

    For purposes of "debugging", I would like to call from a script a refreshment 'force' the window of current layout (default keyboard shortcut SHIFT + F5). I can't find anything like that in the DOM, and I thought to invoke a menu... but cannot find the menu item for it either...

    anyone?

    Or perhaps minimize, maximize the specific layoutWindow of the document?

    'Force refresh' should be available by its ID 318 value:

    //Invoke the menu "Force Redraw":
    try{app.scriptMenuActions.itemByID(318).invoke()}catch(e){$.writeln(e.message)};
    

    Uwe

  • Error refreshing MV on Cube witQuery re - write enable

    Hi David,

    Turning error on refresh MV with Ondemand forced refresh enable probable and Query Rewrite on the Cube. However, ahainst all my dimensions of the MV update properly active.
    Advice please?

    An error occurred on the server
    Class of error: failure of the Express
    Server error descriptions:
    DPR: failed to create the server-side, generic cursor at TxsOqDefinitionManager::generic < CommitRoot >
    INI: XOQ-02006: invalid reference for the table 'NN_OLAP_POC. W_PRODUCT_D "Mapping"NN_OLAP_POC. " BRAND_SALES_CUBE_NEW. Map1"generic to TxsOqSyntaxToSQLConverter::dispatchForSynBaseQuery

    The transaction is not pensionable: "an error has occurred on the server.
    Class of error: failure of the Express
    Server error descriptions:
    DPR: failed to create the server-side, generic cursor at TxsOqDefinitionManager::generic < CommitRoot >
    INI: XOQ-02006: invalid reference for the table 'NN_OLAP_POC. W_PRODUCT_D "Mapping"NN_OLAP_POC. " BRAND_SALES_CUBE_NEW. Map1"generic to TxsOqSyntaxToSQLConverter::dispatchForSynBaseQuery
    "
    at oracle.olapi.transaction.BaseTransaction.commit (unknown Source)
    at oracle.olapi.transaction.BaseTransactionProvider.commitCurrentTransaction (unknown Source)
    at oracle.olap.awm.dataobject.DatabaseDO.commitOLAPI (unknown Source)
    at oracle.olap.awm.dataobject.aw.WorkspaceDO.commitOLAPI (unknown Source)
    at oracle.olap.awm.dataobject.olapi.UModelDO.commitOLAPI (unknown Source)
    at oracle.olap.awm.dataobject.olapi.UModelDO.update (unknown Source)
    at oracle.olap.awm.dataobject.olapi.UCubeDO.update (unknown Source)
    at oracle.olap.awm.dataobject.dialog.PropertyViewer.doApplyAction (unknown Source)
    to oracle.olap.awm.dataobject.dialog.PropertyViewer$ 1ApplyThread.run (unknown Source)


    Kind regards
    DxP

    Some of your join conditions are incorrect. Each join condition must join the fact table, W_SYND_RX_T_F, with the dimension of the appropriate journal table. I do not have your definition of AW set, but LIST_OF_VALUES seems to have a valid condition.

    W_SYND_RX_T_F.X_TERR_TYPE_WID = W_LOV_D.ROW_WID
    

    On the other hand, the POSITIONDH condition is wrong because it does not have the fact table.

    MVW_POSITION_DH.LVL1ANC_POSTN_ID = W_POSITION_D.INTEGRATION_ID
    

    When there is no MV code trying to avoid joining the fact for the dimension during the loading of data tables. But when there is a MV, should be considered to generate the correct all conditions SELECT clause. That must be why the problem appears only when you select the MV. To resolve this, you must either draw on the join conditions or let them take the correct form: =. Note my comments to report the problem in AWM Joing 10 G Cube on creating views if you need to add more complicated joins.

  • No rows returned when you query my materialized during the refresh view

    Hello guys,.

    I created a materialized view. When do a FORCE refresh ON DEMAND on this point of view, the query:
    SELECT * from XX_INV_MV 
    returns no rows.

    That's why users need to access some data when they question the MV, the 'old' for example (data just before the update).
    So is it possible that we can access old records of MV during the update?

    Thank you.

    Hello
    In 9i, if you do a single mview refresh, it will be always truncated and insert, regardless of automic_refresh. If you do a refresh of the group he will do a delete and insert there in now consisting of. This behavior has changed in 10g where you will need to give automic_refresh = false if you want to truncate and insert.
    I refer to metalink Note: 553464.1 more about this. Thank you.

    Kind regards
    Satheesh Babu S
    http://satheeshbabus.blogspot.com

    Published by: [email protected] on January 6, 2009 19:37
    corrected typo error

  • Firefox seems to be ignoring DNS TTL and DNS resolved cache indefinitely

    Hello

    Since we started to serve our js and css by CloudFront a few weeks ago, we started to see a problem with Firefox, where these goods would not sometimes be charged.

    So far, the only way I could reproduce the problem has been to load our home page in the afternoon, without closing my browser and then refresh the page the next day morning. I know it's pretty extreme, but some customers reported this problem, which means that it happens in both real life scenarios. We have been able to reproduce it on Windows and OSX from our office in New York and Krakow, Poland.

    I used Firebug to track down this problem and it seems that Firefox is ignoring the TTL of DNS queries when looking for URLS and caches them almost indefinitely. Due to the constant rotation of the CloudFront servers, after enough time the cached IP address server unresponsive and all applications are abandoned (applications abandoned on the screenshots). That sounds like a plausible explanation? Has anyone have the same problem and has a solution for this?

    Screenshot taken: 2013 - 06-13 at 22:29:30 watch the page loaded with success, then one taken on 2013-06-14 at 09:33:30 watch tab firebug "Net" with all requests of the asset given up. Force-refresh the page several times allows, as shown in the screenshot of 09:34:03.

    https://S3.amazonaws.com/fpfonts/screen+shot+2013-06-13+at+10.29.30+pm.PNG
    https://S3.amazonaws.com/fpfonts/screen+shot+2013-06-13+at+11.31.23+am.PNG
    https://S3.amazonaws.com/fpfonts/screen+shot+2013-06-14+at+9.33.30+am.PNG
    https://S3.amazonaws.com/fpfonts/screen+shot+2013-06-14+at+9.34.03+am.PNG

    The page that we are now it work debugging on is http://preprod.freshpair.com/ (awsforums:awsforums) but I saw this on other sites as well.

    Dig the results at a time from the first view of the page:

    dig dfndz4rv44deo.cloudfront.net

    <> <> DiG 9.7.6 - P1 <> <> dfndz4rv44deo.cloudfront.net
    global options: + cmd
    The answer:
    -> > Header < <-opcode: QUERY, status: NOERROR, id: 16168
    flags: qr rd ra; QUERY: 1, ANSWER: 8, AUTHORITY: 0, ADDITIONAL: 0
    QUESTION SECTION:
    dfndz4rv44deo. CloudFront.net. has
    SECTION OF THE ANSWER:

    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.137
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.56
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.166
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.49
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.116
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.223
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.164
    dfndz4rv44deo. CloudFront.net. 48 IN a 54.240.162.245

    Query time: 16 msec
    SERVER: 192.168.0.69 #53 (192.168.0.69)
    WHEN: Thursday, June 13, 22:29:11 2013
    MSG SIZE rcvd: 174

    And then the next:

    dig dfndz4rv44deo.cloudfront.net

    <> <> DiG 9.7.6 - P1 <> <> dfndz4rv44deo.cloudfront.net
    global options: + cmd
    The answer:
    -> > Header < <-opcode: QUERY, status: NOERROR, id: 40362
    flags: qr rd ra; QUERY: 1, ANSWER: 8, AUTHORITY: 0, ADDITIONAL: 0
    QUESTION SECTION:
    dfndz4rv44deo. CloudFront.net. has
    SECTION OF THE ANSWER:

    dfndz4rv44deo. CloudFront.net. 60 IN a 216.137.61.248
    dfndz4rv44deo. CloudFront.net. 60 IN a 54.230.94.74
    dfndz4rv44deo. CloudFront.net. 60 IN a 54.230.92.193
    dfndz4rv44deo. CloudFront.net. 60 IN a 216.137.61.238
    dfndz4rv44deo. CloudFront.net. 60 IN a 54.230.95.250
    dfndz4rv44deo. CloudFront.net. 60 IN a 216.137.61.145
    dfndz4rv44deo. CloudFront.net. 60 IN a 216.137.61.253
    dfndz4rv44deo. CloudFront.net. 60 IN a 216.137.61.105

    Query time: 183 msec
    SERVER: 10.94.2.100 #53 (10.94.2.100)
    DATE: Fri Jun 14 09:33:15 2013
    MSG SIZE rcvd: 174

    Thank you khozlov!

  • Ignore the styles of Firefox

    I recently changed to a new computer and I had problems with Firefox that I've not experienced before. Whenever I use Firefox I find myself having force refresh (Ctrl + F5) a site almost every time. I do when I see the site I'm weird (like the picture below) looking like he is ignoring the styles. Can someone help me solve this problem?

    I tired run Firefox in safe mode, makes Chrome just find all the time, and I deleted the cache and everything several times

    https://docs.Google.com/open?ID=0B5G_RAIUyaK8ZHFNaHQtLUxIYmM

    What security (firewall, antivirus) software do you have?

    One possible cause is security software (firewall, antivirus) that prevents or limits Firefox or plugin-container process without informing you, possibly after the detection of changes (update) for the Firefox program.

    Delete all rules for Firefox and the plugin-container in the permissions list in the firewall and leave your firewall again ask permission to get full unlimited access to the internet for Firefox and the plugin-container and the update process.

    See:

    Try to start the computer in safe mode Windows with network support (on the startup screen, press F8) as a test to see if that helps.

  • Web pages will not regenerate after I make changes, (Web Designer) very frustrated!

    Web pages will not update or refresh for at least 5 minutes or more, very frustrated.
    It is not my browser, I have two computers, one with a XP with Win7 and win 7 (only 3 months) does not update the pages, I use force refresh all the time.
    It makes me crazy, I'm a Web Designer and I can't work like this. What is going on? and how do I fix it?

    Specific developer resources include:

    MSDN IE development forum (post these questions here instead)
    http://social.msdn.Microsoft.com/forums/en-us/iewebdevelopment/threads

    Tip: When you post in the developer forums, always include a link to your web site or pages to test in your first post.

    IE Developer Center
    http://msdn.Microsoft.com/en-us/IE/default.aspx

    Learn how IE8
    http://msdn.Microsoft.com/en-us/IE/aa740473.aspx

    Expression Web SuperPreview for Internet Explorer (free and autonomous visual tool for debugging for IE6, IE7 and IE8)
    http://www.Microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=8e6ac106-525d-45d0-84db-dccff3fae677

    Expression Web SuperPreview Release Notes
    http://www.Microsoft.com/expression/products/Web_SuperPreviewReleaseNotes.aspx

    Validators:
    http://validator.w3.org/
    http://Jigsaw.w3.org/CSS-validator/

    =========================

    You'll find user support for Internet Explorer in this MS forum: http://social.answers.microsoft.com/Forums/en-US/InternetExplorer/threads

    Quote your full version of Windows (for example, WinXP SP3;) Windows XP 64 - bit SP2; Vista SP1; Vista 64 - bit SP2; Win7; Win7 64 bit) as well as your current version of IE (for example, IE6, IE7, IE8) in your first post.

    ~ Robear Dyer (PA Bear) ~ MS MVP (that is to say, mail, security, Windows & Update Services) since 2002 ~ WARNING: MS MVPs represent or work for Microsoft

Maybe you are looking for

  • Keynote - white of old Apple Remote

    Hello I just Keynote - summer use Powerpoint for years. However my old remote control white Apple, who works with Powerpoint for slides progresses (I use a Macbook Pro 2008 so there IR!) does not seemwork with Keynote - does? FYI the + and - buttons

  • Error number: 0x8024400A I can't update windows after reinstalling windows.

    So, I read the threads and get any case. I can't get updates happening on my computer, now that I did restore factory XP Media sp2 It is to say is only 6 of the plant and can not get this update to try to resolve other problems

  • Can't do the cliché of the disc - error x 8100108

    Original title: can not save thumb C 15 gig. Says can not do the cliché of the disc {ox8100108}.  Get the same message if inches or external hard drive are judged Unable to backup

  • How to make a layout of the main panel of gujarati?

    How can I get the gujarati keyboard layout

  • No sound from Web pages

    I noticed that when I have internet pages that should have sound, I can't hear the sound:-an example is the Foxy Bingo homepage where there are sound played when the page loads, I get nothing. If I play a file related to a video or a music file I als