Update on the fly screen

Hi all - need some advice if please as does not work how to do this. Have an application built using BB SDK 5, which has several screens, even if you don't need to go beyond the first screen - it contains just tests options. Fact on this first main screen, I have a check box that is bound to a boolean object in a persistent storage.

This storage of persistent object can be updated through various other screens and a listener SMS accepting incoming SMS messages and running orders based on these messages. However, I find that if I make a change and then say with the BB back button to view my original screen, the value is not translated. As the screen is not jumped to any point of sound as well as the values have been implemented cache or not reread about Summers to update.

So the question is, is there a way to force a screen to refresh without knowing where it is on the stack, although it will be the first or the last because of how the application works and depnding or not having passed the first screen or not? Also take the scenario of the app displaying the main screen and an SMS comes to tell him to update this persistent storage related to the CheckBox object, the same question applies - is it possible to update the screen if the user only has the screen open on time? Bravo for assistance.

Have you tried the override of the method onExposed to screen? This would at least give you the opportunity to update the items on the screen each time the new screen focus. Don't know if it would work for when you receive an SMS while on this screen, however.

You can assign the SMS listener also force an update of the screen if it's in the display battery (isDisplayed).

http://www.BlackBerry.com/developers/docs/5.0.0api/NET/rim/device/API/UI/container/MainScreen.html

Hope that helps!

Tags: BlackBerry Developers

Similar Questions

  • Downloaded updates and the blue screen now

    I installed Kb970653, kb973874, kb972036 & kb973879 and when I restarted the computer I got a blue screen of death. I did a system restore and I tried to update again, and the blue screen of death came. I restored the system, but how can I stop this from happening?

    Thank you
    Matt

    This thread contains the fix!

    http://social.answers.Microsoft.com/forums/en-us/vistawu/thread/c619f139-00e3-4492-8972-1ea8dc3b13a9

    If you find my answer was what you're looking for, remember to click on the box "mark as answer" below!

  • NVidia updates causing the blue screen in Windows XP.

    I have two different desktop computers running Windows XP. Both have NVidia graphics cards. I recently downloaded Microsoft updates on a computer and noticed blue screen on shut down, page non paged area error code 50. It seems to suggest a problem with the display adapter. I tried several bugs to fix, but it persists most of the time. I assumed that it was unique to this computer until I downloaded the updates on my second computer, which I hadn't used in the month. All of a sudden I wake up a blue screen that is similar to booting with similar suggestion, it is the display adapter driver. NV4_DISP.dll in this case. What I noticed about this "update" is an update which is optional for NVidia and AC97. I downloaded both, but noted that they were dated 2003. I worked my way around the blue screen when starting in safe mode and cancelled the NVidia driver for... 2006! This was the driver I had installed from the Web of NVidia site, some time ago. The AC97 driver showed also a problem in the device driver, so I rolled back and things worked. I think that Microsoft sent an update for the drivers of video card NVidia and AC97 Codec which is damaged or outdated. This is not unique to Windows XP that others seem to experience it in Windows Vista and 7. My video cards are the two NVidia, but different models, which adds credibility to my theory. Any ideas or solutions?

    1. after making back the driver, change your configuration of automatic update of the automatic for the only Notify ("notify but not...") ") setting.

    2. open IE (only) to http://support.microsoft.com/kb/971058 & run it in DEFAULT difficulty and modes and AGGRESSIVE, and then restart your computer. [1]

    3. thereafter, NEVER approve the download (or install) updates offered by Windows Update driver, just "hide". Download all the NECESSARY updated driver from the device or computer manufacturers' download pages ONLY.

    ~~~~~~~~~~~~~~~~~~~~~~~~
    [1] full Disclosure: the difficulty operating in AGGRESSIVE mode will remove your update history but not list the updates installed in Add/Remove Programs (Windows XP) or installed updates.

    ~ 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

  • Update of the main screen at the click of the button

    Hello world.

    I am very new to BB programming without any programming background at all (I am a philologist). Just try to understand everything now.

    I wrote a test code (in this case OS5) who must do the following - the main screen contains a key, which would add a text on the main screen.

    The code goes here:

    Class MyApp

    package mypackage;
    
    import net.rim.device.api.ui.UiApplication;
    
    public class MyApp extends UiApplication
    {
        public static void main(String[] args)
        {
            MyApp theApp = new MyApp();
            theApp.enterEventDispatcher();
        }
    
        public MyApp() {
            pushScreen(new MyScreen());
        }
    }
    

    Class MyScreen

    package mypackage;
    
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.UiApplication;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.container.MainScreen; 
    
    public final class MyScreen extends MainScreen implements FieldChangeListener {
        private ButtonField buttonField;
        private MyScreen myScreen;
    
        public MyScreen() {
            setTitle("Test clock");
            buttonField = new ButtonField("Press me", ButtonField.CONSUME_CLICK);
            add(buttonField);
            buttonField.setChangeListener(this);
        }
    
        public void fieldChanged(Field field, int context) {
            if (field == buttonField) {
                go();
            }
        }
    
        private void go() {
            synchronized(UiApplication.getEventLock()) {
                myScreen.appendLabelText("Update");
            };
        }
    
        public void appendLabelText(String text) {
            LabelField labelField;
            labelField = new LabelField();
            labelField.setText(labelField.getText() + " \r\n" + text);
        }
    }
    

    Could someone make it clear to me how I can get the expected result of what I have?

    Thanks for your help.

    to correct the code above you can:
    -set the LabelField as a class variable
    -Add the LabelField on-screen
    -call setText on this LabelField rather than your method appendLabelText

  • Update of the main screen to a background thread

    Hi guys im trying to update the main screen from a background thread. in this case I'm using a 2 static pictures. Once I click on a butotn on the popupScreen when the application is loaded, it will update the image on the main screen.

    I wrote a small excerpt for it and can you please give me some help with this. because when I've debugged and one of the developers helped me thereby to discover that the screen im trying to update is not the active screen.  Please have alook please.ive extract have 3 classes here

    ///////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

    SerializableAttribute public class MyApp extends UiApplication
    {

    Public Shared Sub main (String [] args)
    {
    Create a new instance of the application and make the currently
    who runs the thread of the application of the event dispatch thread.
    MyApp PAP = new MyApp();
    theApp.enterEventDispatcher ();
    }
        
    /**
    * Creates a new object MyApp
    */
    public MyApp()
    {
    Push a screen onto the stack in the user interface for rendering.
    pushScreen (new MyScreen());
    final Pinpopup pp = new Pinpopup();

    UiApplication.getUiApplication () .invokeLater (new Runnable()
    {
    public void run()
    {
    UiApplication.getUiApplication () .pushModalScreen (pp);
    }
    });
    }
    }
    ////////////////////////////////////////////////////////////////////////////////////////

    / public final class screen extends MyScreen
    {
    /**
    * Creates a new object of MyScreen
    */
    public Bitmap bmp image;
    public BitmapField bmpField;
    public ButtonField btnDisplay;
    public ImageThread imgThread;
            
    public MyScreen()
    {
            
    Set the displayed title of the screen
    setTitle ("MyTitle");
    BMP = Bitmap.getBitmapResource ("image.png");
    btnDisplay = new ButtonField ("Display");
    bmpField = new BitmapField (bmp);

    btnDisplay.setChangeListener (new FieldChangeListener() {}
                
    ' Public Sub fieldChanged (field field, int context) {}
    TODO self-generating method stub
                    
    if(Field == btnDisplay)
    {
    BMP = Bitmap.getBitmapResource ("image1.png");
    bmpField.setBitmap (bmp);
    signInButtonClicked ("07760926037", "1234");
    LaunchImageThread();
                        
    }
    }
    });
            
    Add (bmpField);
    Add (btnDisplay);
            
    }
        
        
    Public Sub LaunchImageThread()
    {
    imgThread = new ImageThread (this);
    System.out.println ("THIS screen:" + this.getScreen ()); I realized that the im screen update is not active but its strange I don't create any other refrence so
    New Thread (imgThread) m:System.NET.HttpListener.start ();
    }
    }
    ////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// POPUPSCREEN CLASS
    class Pinpopup extends PopupScreen //implements FieldChangeListener
    {
    private ButtonField btnOk;
        
    Pinpopup()
    {
            
    Super (new HorizontalFieldManager());

    btnOk = new ButtonField ("Sign In");

    btnOk.setChangeListener (new FieldChangeListener() {}

    ' Public Sub fieldChanged (field field, int context)
    {
    TODO self-generating method stub
    Try
    {
    if(Field == btnOK)
    {
    Close();
    MyScreen ms = new MyScreen();
    Mrs. LaunchImageThread();
    }
    } catch (IllegalArgumentException e) {}
    TODO: handle exception
    System.out.println ("Exception Popup all in signingIn" + e.getMessage ());
    }
    }
    });
            
    Manager fieldManagerContext = new Manager (USE_ALL_WIDTH)
    {
    ' public void sublayout (int width, int height) {}

    int xPos = 10;
    int ypos = 40;

    Field = getField (0);
    layoutChild (field, 280, 50);
    setPositionChild (field, xpos ypos + 100 + 165);

    setPosition (300, 300);
    setExtent (350, 225);
    }
    };
            
    fieldManagerContext.add (btnOk);
    Add (fieldManagerContext);
    }
    }

    /////////////////////////////////////////////////////////////////////////////////////////////////////

    / public class ImageThread implements Runnable
    {
    private MyScreen parent;
        
    public ImageThread (MyScreen myScreen)
    {
    parent = myScreen;
    }

    public void run()
    {
    Try
    {
    UiApplication.getUiApplication () .invokeLater (new Runnable() {}
                    
    public void run() {}
    TODO self-generating method stub
    System.out.println ("active screen:" + UiApplication.getUiApplication () .getActiveScreen ());
    System.out.println ("active screen:" + parent.getScreen ());
    parent.bmp = Bitmap.getBitmapResource ("image1.png");
    parent.bmpField.setBitmap (parent.bmp);
                        
    }
    });
    }
    catch (Exception ex)
    {
    System.out.println ("Exception in Thread:" + ex.getMessage ());
    }
    }
    }

    was soon thanks

    I suspect that this is your problem:

    MyScreen ms = new MyScreen();
    Mrs. LaunchImageThread();

    I suspect that if you did as I suggested on the other Thread and put a breakpoint in the constructor of MyScreen, you'd have foiund, this creates a second instance.

    I hope that you can take it from here.

  • Qosmio F60 - Toshiba updates causing the blue screen (BSOD)

    Hello

    I applied updates based on the recommendations of the Toshiba Service Center app on my F60 and now it starts with windows and then displays the BSOD. Updates have been a nVidia display driver and an update of the BIOS, published on 11/10/2010.

    I did a windows 7 system restore but problem still occurring. Managed to get to a command prompt, so I can back up my files at least.

    Someone else had this problem? You fear that the updates may have fried the equipment? Advice on how to solve this problem before you do a restore system with my Toshiba recovery disks?

    Hey,.

    > I did a restore of windows 7
    What kind of system restore do you exactly? To restore to an earlier point or a new complete installation of Windows 7 using the Toshiba Recovery disk?

    You can also start your laptop in safe mode?

    I also made the new updates my Qosmio F60 and everything works fine. I can t view this problem.

    In the worst case you must reinstall Windows again recovery disk. It seems that something has confused the Windows registry can therefore start t.

  • Using the "back button" update for the LCD screen on the 60 d

    I used this method all the time, but now when I push on the development of the "back" button, it snaps as it is to take a picture, but no image is recorded on the SD card. When I look through the viewfinder and use the button "return" of discussion, it works perfectly.  I would like to know how to get back to the old method of development on the LCD screen, with the emphasis of the "back" button.  My Canon is a 60 d

    pixeltaker wrote:

    I used this method all the time, but now when I push on the development of the "back" button, it snaps as it is to take a picture, but no image is recorded on the SD card. When I look through the viewfinder and use the button "return" of discussion, it works perfectly.  I would like to know how to get back to the old method of development on the LCD screen, with the emphasis of the "back" button.  My Canon is a 60 d

    You must go to the menu and move the quick mode to Live Mode.  In fast mode, when you press on the "back" button, the mirror flips down (click) and the camera tries to focus.  He has not yet made the photo.  To take a photo, you must listen to the AF confirm beep, then press the shutter button.  Quick mode is in fact the "snail", in my opinion .  Read more about this on page 160-168 of this manual.

  • 11.1.1.2 Oracle: Oracle Business Rules: rules update on the fly

    Hello

    I understand that in the latest version of Soa (11.1.1.2), rules, already built on Jdeveloper can be changed from the em console.

    I installed everything, but could not find my path to such a facility. Please provide advice.

    Kind regards
    Anand.

    Hi Anand,
    This service is provided by SOA composer not by EM.

    Try to access http://host:soa_server_port/soa/composer.

    You will be able to set/change the rules on the fly using this composer of SOA

  • You are prompted to reactivate Windows after the updates but the activation screen empty.

    Yesterday, after the Windows updates, I was prompted to reactivate Windows in 3 days but activation dropdown was blank.

    This is MGAdiag report.

    Bill

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->
    Release status: not activated
    Validation code: 1
    Code of Validation caching: n/a
    Windows product key: *-* - H62RJ - GYBCR-WMJGT
    Windows product key hash: VFmeKHHQn3RyKvzwppN6EX + = PLbM
    Windows product ID: 76477-007-5077027-21604
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 5.1.2600.2.00010300.3.0.hom
    ID: {FF0EF72C-5B92-48A7-BC5D-9CA06A532725} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: registered 1.9.9.0's,
    Signed by: Microsoft
    Product name: n/a
    Architecture: n/a
    Build lab: N/A
    TTS error: n/a
    Validation of diagnosis: 025D1FF3-230-1_025D1FF3-238-2_025D1FF3-258-3
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a
    Version: n/a

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 100 authentic
    Microsoft Office Standard Edition 2003 - 100 authentic
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: 025D1FF3-230-1_025D1FF3-238-2_025D1FF3-258-3_E2AD56EA-765-d003_E2AD56EA-766-0_E2AD56EA-134-80004005_E2AD56EA-765-800a_E2AD56EA-766-191_E2AD56EA-148-80004005_16E0B333-89-80004005_B4D0AA8B-1029-80004005

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Program may Explorer\IEXPLORE.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {FF0EF72C-5B92-48A7-BC5D-9CA06A532725}1.9.0027.05.1.2600.2.00010300.3.0.homx 32*-*-*-*-WMJGTS-1-5-21-1275210071-1801674531-83952211576477-007-5077027-216045MICRO-STAR INTERNATIONAL CO., LTDMS-7238American Megatrends Inc.. V1.3 20070105000000.000000 + 0000E563C8701846C7A08090409GMT Standard Time(GMT+00:00)03100100Microsoft Office Standard Edition 2003116Ec3jQmb7EXXuT4ag6Ai3ekupaM =70141-745-1390177-562171 1DCE0596ED8FDD2

    License data-->
    N/A

    Windows Activation Technologies-->
    N/A

    --> HWID data
    N/A

    Activation 1.0 data OEM-->
    BIOS string matches: Yes
    BIOS marker string: 13 22: REAL C & C INC | 16AAE:sharp Corp.,
    Marker of OEMBIOS string. DAT: N/a, hr = 0x80004005

    Activation 2.0 data OEM-->
    N/A

    Hi Bill,

    ·         The computer starts in safe mode?

    If so, check to see if this article helps you.

    Blank page to activate Windows in the wizard of Windows Product Activation

    Do not respond with results so that we can help you best.

  • Dynamic layout managers or managers to update "on the fly".

    Hello

    I'm looking for more help with managers.

    I create a presentation grid using the combination of horizontal and vertical field managers (HorizontalFieldManager and VerticalFieldManager). Some of the columns in the grid are too wide to be shown, so I truncate the text, but I would like to widen the column when one of the fields in this column gets the focus.

    I tried to replace the getPreferredWidth() of my custom field object that is actually a cell and invalidate() it, that the manager chooses to jump upward change and redraws itself using the new dimensions, when this does not work, I tried to invalidate() field of the cell and the Manager, but that didn't work either.

    Any help in the form of a code or management would be greatly appreciated, thanks!

    UpdateLayout () is perhaps what you are looking for?

    http://www.BlackBerry.com/developers/docs/4.2.1API/NET/rim/device/API/UI/field.html#updateLayout )

  • How can I fix the blue screen that appears after the Welcome screen and also the compaq screen changed after windows update the or to the 03/23/11

    March 23 windows set to date. a failure and then managed. After that, the compaq screen has changed and the blue display lights for a little after the Welcome screen.

    Hello

    If you think the update caused the blue screen then uninstall it to check.

    Control Panel - Windows Updates - lower left Installed Updates - uninstall or change

    Or

    Remove an update
    http://windowshelp.Microsoft.com/Windows/en-us/help/182043da-fc3e-4220-AFBC-d9b09f2b2a1a1033.mspx

    Or

    The problems with the removal of updates
    http://windowshelp.Microsoft.com/Windows/en-us/help/5a319824-5cb5-493d-9151-9a97d0f565b61033.mspx
    Or

    How to uninstall updates in Windows Vista
    http://www.vista4beginners.com/how-to-uninstall-Windows-Vista-updates

    Disable or hide optional updates on Windows Vista
    http://www.howtogeek.com/HOWTO/Windows-Vista/disable-or-hide-optional-updates-on-Windows-Vista/

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

    If not, remove the updates help then we can troubleshoot the BlueScreens.

    Check this thread for more information using BlueScreenView, MyEventViewer and other methods
    to troubleshoot the BlueScreens - top 3 responses (+ 1 other).

    http://social.answers.Microsoft.com/forums/en-us/vistarepair/thread/3deab2fa-4000-4136-8c78-a3d22b1db009

    We can analyze the minidumps if make you it available to the SkyDrive or another file
    sharing sites.

    ZIP or download the content of the C:\Windows\minidump

    Use SkyDrive to upload collected files
    http://social.technet.Microsoft.com/forums/en-us/w7itproui/thread/4fc10639-02dB-4665-993a-08d865088d65

    -------------------------------------------------------------------------

    Also this, so you can see the probable bluescreens.

    Windows Vista restarts automatically if your computer encounters an error that requires him to plant.
    (also Windows 7)
    http://www.winvistatips.com/disable-automatic-restart-T84.html

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

    Check out these utilities to see if information may be collected:

    It is an excellent tool for displaying the blue screen error information

    -Free - BlueScreenView scans all your minidump files created during "blue screen of death," collisions
    and displays information about all accidents of a table.
    http://www.NirSoft.NET/utils/blue_screen_view.html

    -------------

    MyEventViewer can be verified at the time of the blue screen (BSOD) within a second or so of the
    time of the BSOD to provide more information about the possible cause - see TIP.

    MyEventViewer - free - a simple alternative in the standard Windows Event Viewer.
    TIP - Options - Advanced filter allows you to see a period of time instead of the whole of the record-
    Set it for a bit before and after the time of the BSOD.
    http://www.NirSoft.NET/utils/my_event_viewer.html

    ------------

    AppCrashView - free - a small utility for Windows Vista and Windows 7 that displays the details of all the
    application goes down has occurred in your system. The information breaks down is extracted from the .wer
    the files created by the Windows Error Reporting (WER) of the operating system component of each
    time that an accident has occurred. AppCrashView also allows you to easily record the list of accidents to
    text/html/csv/xml file.
    http://www.NirSoft.NET/utils/app_crash_view.html

    I hope this helps.

  • Updated broken links on the fly

    FreeHand update on this page links can be fixed?

    It seems that no the updates on the fly for 10 or more are available

    http://www.Adobe.com/support/Freehand/updaters.html

    If this is not the right place to post this, can a mod move it to the right place?

    Reported to administrators of the Adobe Web site to fix.

  • Colors in Windows 7 too bright/faded after running Windows Update for the first time (everything was going well after initial installation). See the details.

    I just installed Windows 7 Pro on a HP Pavilion with a HP w2007 20 ". I have had no problem of color first and everything worked fine. The first time I ran Windows Update, it included an optional update called "HP - display - HP w2007 LCD wide screen". That the update "has failed" to install and when I rebooted, my screen had a look very 'neon' - my desktop background, a picture of a tree with a bunch of Red leaves, was very washed out and now most of the leaves were bright red with no visible details. This is obvious everywhere, not only my desktop background (another example... small green circles next to the names of Gmail chat contacts are very bright green, more even than usual). Everything is too bright. I tried the following hotfixes:

    -Manually reinstall the update of the HP screen (it worked this time) and restart - did not work.
    -Reset my monitor to factory setting - has failed.
    -Download and install the latest HP driver for this monitor - did not work.
    -Through: "Control panel-> appearance and personalization-> display-> Calibrate color" and through an assistant color calibration (that's new for Windows 7?). Also, did not work.

    I have the dual-boot of Ubuntu installed on this machine and I think the colors under Linux are always very well, so I think it's a problem with Windows and not the monitor. Because it was working fine before, I would rather try to get everything worked, rather than the update manually the brightness/contrast of my monitor. Any ideas?

    A useful answer, I got on another forum (windows7forum.com). It worked:

    I had this problem too!

    In my case it is also explained by a driver from Windows Update called "nVidia display".

    Fortunately, I figured out how to fix it:

    1. Open Computer Management (start > right click on "Computer" > Manage)
    2. Select "Device Manager".
    3. Select 'show cards '.
    4. Right click 'NVIDIA GeForce 8600 GT' (or whatever your video card)
    5. Click 'properties '.
    6. Select the 'Drivers' tab
    7. Click on the button "return to the version.
  • How to enable the Welcome screen in photoshop cc?

    With photoshop the new se update. The home screen has disappeared and I wanted it back. I found it very useful with some of my drawings. How to enable the Welcome screen?

    And just to clarify: Welcome screen has been replaced by the workspace of departure, completed by the advice that the Welcome screen was (although I admit that's exactly as good).

  • With regard to the update of the locations of cards-oracle

    HII everyone,

    In my application, we using mapviewer, which was installed locally on our server, for map rendering and showing the locations of a client like pinball machines.

    Suppose that some places (address, City) is updated map... How mapviewer (which has been installed on our server locally) will update this site all in rendering...

    Thank you

    learner

    It depends on how you got the map features.  Mapfeatures are usually stored in the cache.  If a change in database may not appear in the card immediately.  If, however, given the characteristics of the map as a vectorlayer, then simple vector update updates map.  You should consider two options with regard to the update database process.  You can store the geometry as a function that is updated on the fly as change attributes of database, or you may use a database trigger to update the geometry when the attributes change.  Thus, using a combination of correct space architecture and mapviewer correct functions.

Maybe you are looking for

  • HP Officejet 8620: hp 8620 printing front/rear

    I have a new HP 8620.  I found that it doesn't have the ability to print pages at the front to back order.  I did the other driver I've seen listed here, but then I don't get the duplex printing option.  I want both options.

  • Cannot find GPS location

    Hello In recent weeks, I have a very annoying problem with my Sony Z3 Compact. It shows the GPS location very wrong even when I'm out. I already tried most of the solutions that have been posted in this community, but nothing helped. Also when I use

  • Loading with charger image

    Hello Anyone know how to properly load images from a domain? I am trying to load an image from a domain, for example "http://domain.com/image.gif". When I try on the spot, it woks fine, but when I try to get a domain / server, it does not work. Here

  • Configuration VPN 3000 - redundancy - management

    We have two hubs configured as a redundant pair. I realize there is no automatic method of synchronization config but wondered which is the easiest and fastest way to copy changes throughout. Is it possible to save the config and just edit the IP add

  • BBC iPlayer works does not on the Surface RT

    Just noticed today that I am not able to play bbc iplayer on my rt surface. This worked days ago but now won't work at all. I get a message saying that my device does not support BBC iplayer. It says to turn off the desktop to the browser option. Can