Reverse geocoding does not

 

I use reverse geocoding for location name. I have run the following query:

http://maps.googleapis.com/maps/geo?json&ll=-42.307546,-101.048116&sensor=false

And it results in the following output:

{
  "name": "-42.307546,-101.048116",
  "Status": {
    "code": 602,
    "request": "geocode"
  }
}

She does not need to get the name of the place for me. How can I find the name of the location? Help, please.

Thank you very much.

As far as I know, the Locator class is deprecated.

And I found the solution to my problem. I was using the wrong coordinates. Now, when I corrected my details, I got the right address.

Thanks for help.

Tags: BlackBerry Developers

Similar Questions

  • Selection of the type (reverse type) does not appear when you select type

    I have AI CS5 on OS X 10.6.4. I just created an illustration. The problem is that when I try to type in this illustration, the text does not invert to indicate what was selected. The selection work; If I drag on the text, I would like to change, and then type the replacement text, old_text is replaced as expected. But it's as if we were working blindly.

    This is a weird problem and happens only in this particular document. If I copy the content to another document, it works very well there. It doesn't matter if I change the police. The problem occurs constantly in the present a document even if I open the document on another Mac, so do not appear to be specific to the computer.

    I found a solution by copying everything into a new document. However, I am curious to know why this is happening. I was wondering if anyone else had never seen this behavior.

    Show/hide the edges (selected in the view menu or via the Hotkey Cmd / Ctrl + H) is a per document setting. That would explain what you have seen.

    To "fix" your problem document, open, switch to Show Edges, then record under using the same or a different file name. (If you just Save without making further changes to the document, it will not take.)

  • Check IP unicast reverse path does not

    I configured the ip ip verify unicast reverse path on a Cisco 2611 runs code 12.3 (26). IP cef is enabled at level global but disabled using the no command of cef of cache to route ip on all interfaces except the interface WAN face (serial 0/0).

    !

    interface Serial0/0

    Description connected to the internet

    bandwidth 768

    IP 100.100.20.10 255.255.255.252

    Check IP unicast reverse path

    no ip redirection

    no ip unreachable

    no ip proxy-arp

    property intellectual accounting-access violations

    NAT outside IP

    route IP cache flow

    no ip mroute-cache

    no fair queue

    No cdp enable

    !

    Whenever I reboot the router, it works for awhile, then no longer works. The traffic meter see ip Unicast RPF drop unexpectedly closed escalating after a few minutes and stays where it stopped.

    Industrial property statistics:

    RCVD: 35015 total, 346 local destination

    format 0 errors, 0 checksum error, 0 number of bad jumps

    0 unknown protocol, 17 not a gateway

    security failures 0, 0 bad options, 0 with options

    Opts: 0 end, nop 0, 0, 0 route open source basic security

    timestamp 0, 0 extended security, road record 0

    0 stream ID, 0 source route strict, alert 0, cipso 0 0 ump

    0 other

    Frags: 0 up, 0 time 0 could not back up

    0 fragmented, fragments of 0, 0 could not fragment

    BCAST: 6 received, 0 envoys

    MCAST: 0 a 0 a received, sent

    Envoy: 265 generated, 23074 transmitted

    Drop: 1 encapsulation failure, 0 pending, 0 without adjacency

    120 none route, 467 unicast RPF, 0 forced fall

    options 0 denied

    Fall: 0 packets with source IP address zero

    Fall: 0 packages with inner loop back IP address

    Can anyone think of a reason it works for a few seconds after starting, and then stops?

    [edit]

    I took out the declaration route ip cache flow thought that was up here the problem, but still no change in the meter.

    There are several ways you can use for the same purpose, here are some examples:

    > LCD

    > Policy Based Routing + ACL (two interfaces, scoring on one, deletion via ACL)

    > MPF 'drop' keyword

    > Black Hole routing (Routes null 0)

    > uRPF

    Each method has its advantages and disadvantages, ACLs and static routes are difficult to maintain and operate. ACL with the keyword "log" is process switched, making it slower.

    Routing black hole works by sending a spoofed traffic (hit the Bogon) to Null0 Null0 being a direct adjacency (sort of the interface) of all routers CEF, it is relatively faster.

    uRPF is commonly used with Blackhole triggered remote routing (RTBH). For example, we manage a large organization with several points of entry into the network. Now you know that your network is under attack from back of Source 1.2.3.0/24 with RTBH, all border routers have active uRPF and there is an internal router, known as a 'Router Trigger. You could inject a route in your area of IGP, something like:

    IP route 1.2.3.0 255.255.255.0 null0 tag 255

    And then all the edge routers would receive this route and with the help of uRPF drop all packets 'source' from the network of the attacker. The process is a little more complicated than that, but I hope you get the idea.

    Concerning

    Farrukh

  • Pack component 4.7 - Overview icon does not change

    Hello

    I use Eclipse.  Compilation with BB component pack 4.7.

    I have a master project (CLDC) and a second project (CDLC replacement Entry Point). The second project is checked system and startup.

    Note: the second entry point was to record a personalized for the app, not on the icon menu item.

    I right click on the "main" project-> properties-> Blackberry Project Properties-> resources.

    I select an icon file (1.png) in the dialog box "files of icons".

    I select a second (2.png) icon file in the "Icons of focus files" dialog box.

    I clean, compile, run under a 'new' "BOLD" Simulator (9000) and my app has the icon "no-focus".

    When I reversal, it does not change.

    What I've read, 4.7 is supposed to make this easy.  It seems to be advantageous, so I don't know I'm missing something that is obvious (to everyone except me).  I am new to Java and Eclipse, but really get the hang of it... so far, it's...

    Does anyone have any ideas why this might not work?

    Thank you!

    You project must have an entry point with parameter. This additional entry point must be defined as "Autostart". Add the parameter's main entry: gui

    And check the code below. This works.

    import net.rim.device.api.ui.UiApplication;import net.rim.device.api.ui.component.LabelField;import net.rim.device.api.ui.container.MainScreen;import net.rim.device.api.system.Bitmap;import net.rim.device.api.system.ApplicationManager;import net.rim.blackberry.api.homescreen.HomeScreen;
    
    public class HomeScreenIcon extends UiApplication{    public static void main(String[] args)    {        //Check for the argument defined in the project properties.        if (args != null && args.length > 0 && args[0].equals("gui"))        {           HomeScreenIcon theApp = new HomeScreenIcon(false);            theApp.enterEventDispatcher();        }        else        {            HomeScreenIcon theApp = new HomeScreenIcon(true);            theApp.enterEventDispatcher();        }    }    public HomeScreenIcon(boolean autoStart)    {        if (autoStart)        {        //The application started using the auto start entry point.        //Setup the rollover icons.        final Bitmap regIcon = Bitmap.getBitmapResource("1.png");        final Bitmap icon = Bitmap.getBitmapResource("2.png");
    
            invokeLater(new Runnable()        {            public void run()            {                ApplicationManager myApp =                  ApplicationManager.getApplicationManager();                boolean keepGoing = true;
    
                    while (keepGoing)                {                    //Check if the BlackBerry has completed its startup process.                    if (myApp.inStartup())                    {                        //The BlackBerry is still starting up, sleep for 1 second.                        try                        {                            Thread.sleep(1000);                        }                        catch (Exception ex)                        {                          //Couldn't sleep, handle exception.                        }                    }                    else                    {                        //The BlackBerry has finished its startup process.                        //Set the rollover icons.                        HomeScreen.updateIcon(regIcon, 0);                        HomeScreen.setRolloverIcon(icon, 0);                        keepGoing = false;                    }                 }                 //Exit the application.                 System.exit(0);            }        });
    
        }    else    {         //The application was started by the user.         //Start the application and display a GUI.         MainScreen ms = new MainScreen();         ms.setTitle(new LabelField("Hello there."));         pushScreen(ms);    }  }}
    
  • Master page with rollover menu, using States, does not work for all pages?

    Hello.

    I created my masterpage with a basic at the top menu. It has two States. The 1st State is normal and State 2 is a simple rollover behavior, just a different color.

    Why my menu would work perfectly on the page ' 01', but then the reversal function does not work for other pages? (portfolio 03 etc.). She has just the hoverover slider and the link, but the color does not change.

    I have something wrong?

    Thanks a lot for all the help on these forums

    Make sure that all the subpages have a second State added to them. You

    do not put any content on this State, but it must be present

    the transfer of work from the watch page.

    If you do not already have that second State, trying to link then cancelled

    the subpages of the master page. I came across this scenario recently

    because I had created a master page after some of my subpages have been

    already built.

    HTH

    Jim Babbage

  • When I unplug my headphones the sound does not go to my regular speakers and also the reverse happened... logitech headphones... HELP Please

    When I unplug my headphones the sound does not go to my regular speakers and also the reverse happened... logitech headphones... HELP Please

    Hi MaryLitrel,

    Follow the steps in the article.

    How to troubleshoot sound problems in Windows XP

    http://support.Microsoft.com/kb/307918/en-GB

    How to update a sound card driver in Windows Vista and Windows XP

    http://support.Microsoft.com/kb/166774

  • the 'c' key don't act does not on the keypad wired iMac

    C on my wired keyboard key does not work. I looked at the keyboard Viewer, and the c button does not illuminate when I look at. The capslock key is staying too dull-lit when not in use, the light becomes brighter when I activate it, but she remains weakly lit when turned off.

    I restarted but also tried to plug into each USB port. (I don't think that the keyboard is broken, as I tested it)

    It's the first day, I had these problems.

    I would blow with compressed air, or reverse & bang softly there.

    In the keyboard Viewer can you click the c button and highlight?

  • For about two weeks the right click does not work in firefox, how to solve this?

    I have always used the Nightly of Firefox version, so I thought it was a bug in the new update. But now I have completely removed nightly and installed the normal Firefox, but still nothing happens after having right in the screen > in, for example the bar bookmarks, it does not work properly, but not anywhere while browsing!

    The application databases

    Name: Firefox
    Version: 32.0.3
    User Agent: Mozilla/5.0 (Windows NT 6.1; rv:32.0) Gecko/20100101 Firefox/32.0

    Reports of incidents for the last 3 days

    All Crash reports

    Extensions

    Name: Download YouTube videos to MP4
    Version: 1.7.28
    Enabled: true
    ID: {b9bfaf1c-a63f-47cd-8b9a-29526ced9060}

    Name: DownThemAll!
    Version: 2.0.17
    Enabled: true
    ID: {DDC359D1-844A-42a7-9AA1-88A850A938A8}

    Name: Clear Cache button
    Version: 2.7
    Enabled: true
    ID: {4cc4a13b-94a6-7568-370d-5f9de54a9c7f}

    Name: SoundCloud Downloader - Technowise
    Version: 0.87
    Enabled: true
    ID: {c8d3bc80-0810-4d21-a2c2-be5f2b2832ac}

    Name: convenience store
    Version: 1.1
    Enabled: true
    ID: [email protected]

    Name: avast! Online security
    Version: 9.0.2021.112
    Enabled: false
    ID: [email protected]

    Name: F.B. purity - cleans Facebook
    Version: 9.3.2
    Enabled: false
    ID: [email protected]

    Name: gTranslate
    Version: 0.9
    Enabled: false
    ID: {aff87fa2-a58e-4edd-b852-0a20203c1e17}

    Name: Lightbeam
    Version: 1.0.10.2
    Enabled: false
    ID: jid1-F9UJ2thwoAm5gQ@jetpack

    Name: TinEye Reverse Image Search
    Version: 1.1
    Enabled: false
    ID: [email protected]

    Graphics

    Description of the adapter: ASUS AH3650 Series
    Drivers: atiumdag atiumdva atitmmxx
    RAM card: unknown
    ClearType settings: Gamma: Structure of 2200 pixels: ClearType R level: 100 improved contrast: 100
    Device ID: 0 x 9596
    Direct2D Enabled: Blocked for your version of the graphics driver. Try to update your driver graph version 9.6 or newer.
    DirectWrite Enabled: false (6.2.9200.16492)
    Driver date: 01/09/2008
    Driver version: 8.452.0.0
    GPU #2 Active: false
    GPU accelerated Windows: 0/2 base (OMTC) blocked for your version of the graphics driver. Try to update your driver graph version 9.6 or newer.
    Vendor ID: 0 x 1002
    WebGL Renderer: Blocked for your version of the graphics driver. Try to update your driver graph version 9.6 or newer.
    windowLayerManagerRemote: true
    AzureCanvasBackend: skiing
    AzureContentBackend: Cairo
    AzureFallbackCanvasBackend: Cairo
    AzureSkiaAccelerated: 0

    Important change preferences

    accessibility.typeaheadfind.flashBar: 0
    Browser.cache.Disk.Capacity: 358400
    Browser.cache.Disk.smart_size_cached_value: 358400
    Browser.cache.Disk.smart_size.first_run: false
    Browser.cache.Disk.smart_size.use_old_max: false
    Browser.cache.frecency_experiment: 4
    browser.places.smartBookmarksVersion: 7
    browser.search.useDBForOrder: false
    browser.sessionstore.upgradeBackup.latestBuildID: 20140923175406
    Browser.Startup.homepage: topic: Home
    Browser.Startup.homepage_override.buildid: 20140923175406
    Browser.Startup.homepage_override.mstone: 32.0.3
    Browser.Tabs.Remote.AutoStart: true
    dom.mozApps.used: true
    extensions.lastAppVersion: 32.0.3
    font.internaluseonly.Changed: false
    make. Name.sans - serif.x - West: Cambria
    make. Name.Serif.x - West: Cambria
    GFX. Direct2D.disabled: true
    GFX. Direct3D.last_used_feature_level_idx: 0
    keyword. URL: https://www.google.com/search
    layers. Acceleration.Disabled: true
    Media.GMP - gmpopenh264.lastUpdate: 1405814443
    Media.GMP - gmpopenh264.path: C:\Users\Ramon\AppData\Roaming\Mozilla\Firefox\Profiles\cflwd3c1.default\gmp-gmpopenh264
    Media.GMP - gmpopenh264.version: 1.0
    Media.GMP - manager .lastCheck: 1411894750
    network.cookie.prefsMigrated: true
    places.database.lastMaintenance: 1411894888
    places. History.expiration.transient_current_max_pages: 33538
    plugin.disable_full_page_plugin_for_types: application/pdf,application/vnd.fdf
    plugin.importedState: true
    plugin. State.npezffpi: 0
    plugin. State.npovshelper: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_bgcolor: false
    Print.printer_Foxit_Reader_PDF_Printer.print_bgimages: false
    Print.printer_Foxit_Reader_PDF_Printer.print_colorspace:
    Print.printer_Foxit_Reader_PDF_Printer.print_command:
    Print.printer_Foxit_Reader_PDF_Printer.print_downloadfonts: false
    Print.printer_Foxit_Reader_PDF_Printer.print_duplex: 1515870810
    Print.printer_Foxit_Reader_PDF_Printer.print_edge_bottom: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_edge_left: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_edge_right: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_edge_top: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_evenpages: true
    Print.printer_Foxit_Reader_PDF_Printer.print_footercenter:
    Print.printer_Foxit_Reader_PDF_Printer.print_footerleft: & PT
    Print.printer_Foxit_Reader_PDF_Printer.print_footerright: & D
    Print.printer_Foxit_Reader_PDF_Printer.print_headercenter:
    Print.printer_Foxit_Reader_PDF_Printer.print_headerleft: & T
    Print.printer_Foxit_Reader_PDF_Printer.print_headerright: & U
    Print.printer_Foxit_Reader_PDF_Printer.print_in_color: true
    Print.printer_Foxit_Reader_PDF_Printer.print_margin_bottom: 0.5
    Print.printer_Foxit_Reader_PDF_Printer.print_margin_left: 0.5
    Print.printer_Foxit_Reader_PDF_Printer.print_margin_right: 0.5
    Print.printer_Foxit_Reader_PDF_Printer.print_margin_top: 0.5
    Print.printer_Foxit_Reader_PDF_Printer.print_oddpages: true
    Print.printer_Foxit_Reader_PDF_Printer.print_orientation: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_page_delay: 50
    Print.printer_Foxit_Reader_PDF_Printer.print_paper_data: 9
    Print.printer_Foxit_Reader_PDF_Printer.print_paper_height: 11 h 00
    Print.printer_Foxit_Reader_PDF_Printer.print_paper_name:
    Print.printer_Foxit_Reader_PDF_Printer.print_paper_size_type: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_paper_size_unit: 1
    Print.printer_Foxit_Reader_PDF_Printer.print_paper_width: 8.50
    Print.printer_Foxit_Reader_PDF_Printer.print_plex_name:
    Print.printer_Foxit_Reader_PDF_Printer.print_resolution: 1515870810
    Print.printer_Foxit_Reader_PDF_Printer.print_resolution_name:
    Print.printer_Foxit_Reader_PDF_Printer.print_reversed: false
    Print.printer_Foxit_Reader_PDF_Printer.print_scaling: 1.00
    Print.printer_Foxit_Reader_PDF_Printer.print_shrink_to_fit: false
    Print.printer_Foxit_Reader_PDF_Printer.print_to_file: false
    Print.printer_Foxit_Reader_PDF_Printer.print_unwriteable_margin_bottom: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_unwriteable_margin_left: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_unwriteable_margin_right: 0
    Print.printer_Foxit_Reader_PDF_Printer.print_unwriteable_margin_top: 0
    privacy.sanitize.migrateFx3Prefs: true
    Storage.vacuum.Last.index: 1
    Storage.vacuum.Last.places.sqlite: 1411212643

    JavaScript

    Incremental GC: true

    Accessibility

    Enabled: false
    Prevent accessibility: 0

    Versions of the library

    NSPR
    The expected minimum version: 4.10.6
    Version: 4.10.6

    NSS
    The expected minimum version: 3.16.5 based ECC
    Version: 3.16.5 based ECC

    NSSSMIME
    The expected minimum version: 3.16.5 based ECC
    Version: 3.16.5 based ECC

    NSSSSL
    The expected minimum version: 3.16.5 based ECC
    Version: 3.16.5 based ECC

    NSSUTIL
    The expected minimum version: 3.16.5
    Version: 3.16.5

    Experimental features

    You always use the same profile folder you used with the Nightly build (35.0a1)?

    If you do, then you must create a new profile.

    See "create a profile":

    If the new profile works then you can transfer files from a profile already used in the new profile, but be careful not to copy files corrupted to avoid transporting more problems.

    With the decommissioning of a Nightly build might be unstable, you should be still more restrictive with what to retrieve.

  • Problems connecting to a projector. Laptop recognizes the new monitor but projector does not display anything.

    I have a Macbook Pro (non-retina display) mid-2012. I have a mini VGA screen that worked throughout the year and all of a sudden, it doesn't seem to work. My computer recognizes the new monitor (screen flickers and flies all content secondary screen) but the projector does not display anything. I tried to reconnect the cable, the cable VGA switch to turn on the projector and turn off, restart my computer and clouds of dust on the connections. Sometimes if I move the connection just that will work, but if I so much as breathe on it or watch funny it stops and I can't get it back.

    Jiggle the cable or adapter is something different, you have a physical adapter or cable problem. Any bit-reversal can help that.

  • Logitech k400 touchpad scrolling (and scroll wheel works does not in general)

    I use Firefox Beta 19 for Android on a mini MK808 PC (but this also applies to other devices when using any kind of keyboard/mouse combo external;) I tried also with a Tablet Motorola XOOM 2 Media Edition with similar results).

    My keyboard is a Logitech K400 with a touchpad. It must scroll the page when we slide down/up with two fingers. The feature does not work in Firefox; Instead, I have to hold the mouse button and drag a finger. The gesture of two-finger scrolling works with Chrome and the browser of stock on this device, this issue should be repairable. It's a little annoying because Firefox is differently from other applications.

    In addition, during this test with another real with a mouse wireless keyboard/mouse combo I found that the mouse scroll wheel does not work. Again, it works in Chrome, so it is a behaviour Firefox only. (In fact, it makes perfect sense, because scrolling with two fingers to the keyboard Logitech is to emulate the scroll wheel). This is actually good news, because now I'm sure enough many users will be offended by this bug and it should be fixed.

    Note: in case this information is useful, the scrolling mouse work on Firefox start page with thumbnails of the most used links, but not on the other pages.

    Added: Find the bug: https://bugzilla.mozilla.org/show_bug.cgi?id=686228

    Apparently, there's a difficulty, but when he reached the beta channel?

    Yes! He works in Aurora! Even if for some reason, the logic is opposite to that of Chrome (scrolling down moves the page down in the window instead of the top). I can live with that.

    Edit: well, it works partially in Aurora. Scrolling of the Mouse/touchpad does not work on pages that have fields independently scrollable (for example, the web interface of Tweetdeck with different columns) or the parts that are supposed to be stationary. I hope that (and reverse the direction) will be fixed later.

  • Web pages does not appear

    I opened firefox and it looked like he briefly updated before you start. Homepage of google news did not come to the top and the address bar was empty, as the screen. I'll type a variety of web addresses in the address bar, and it seems to accept, but the screen never changes to be a Virgin. When you click on bookmarks, the current web address does not change, and the page remains blank.

    I had just started using a service to hide my IP called Unlock-France. This required me to disable the Internet 6 and use a specific Protocol Internet 4 DNS server address. I had zero problems with firefox while doing this, but thought it might be relevant. I've reversed these changes, but it has not changed the status of firefox.

    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:

  • disc eject does not correctly persist

    I get several error messages that my external hard drive was not ejected correctly. I ejected it, turned off, unplugged and then reverse the process. Whenever my screen locks when I open it there are several messages not eject disks does not correctly.

    Restart your Mac, and then drag the disc on the desktop for the external drive to the trash.

  • My calendar on iMac does not update on my iPhone

    Hi, it seems that events in my calendar of iOS are visible on my OS X calendar, but the reverse does not work. Any ideas? Thank you.

    Try to manually refresh the calendar of iOS. Tap "Calendars" at the bottom, you see the list of calendars. Now, drag to the bottom of the screen to reveal the spinner of the refreshment at the top and let go. Often, it works for me.

  • EliteBook 8460p: DisplayPort does not connect

    I connected my new HD monitor via the VGA input with no problems.  When I connect the laptop to the monitor using a DisplayPort adapter to DisplayPort cable and the monitor DisplayPort mode no connection is established.  My graphics cards are DameWare Development mirror driver 64 bit and Radeon HD 6470 M.  The monitor is an ASUS VE278Q. Is there a setting on the laptop that I need to activate the DisplayPort?  I guess that the cable connection should be sufficient for the monitor to the laptop.  Any help is very appreciated!

    Hello pmoo,.

    I have also an Elitebook 8460p (AMD Radeon HD 6470 M GPU) running Windows 7 (Enterprise), with an external HP 2511 x, LCD and * only * crossed a sceanrio simliar you did: I had problems to get a picture on my monitor when connected with a HDMI cable.

    To clarify, I actually use a docking advanced (230W) which has connections 2DVI & 2DisplayPort at the rear; I use one of these DisplayPort connections with a DisplayPort-> HDMI dongle to connect my HDMI cable to the monitor. If you connect directly to DP your laptop, this behavior * should * be the same...

    First of all, let me start by how I 'fixed' my question (your mileage may vary):

    1. I still think that it was a timing issue with me: the monitor and the laptop should be ISOLATED. Connect the cables; Turn on the laptop first, but make sure that the lid is CLOSED. THEN turn the monitor on.
    2. Have the most recent drivers can't hurt; Make sure that you install them before connecting the external monitor.
    3. CABLES CABLES CABLES!   Always check the wiring and try another HDMI cable if you have one.
    4. Make sure the connections themselve are nice and safe: in my case, the HDMI connection on the monitor was a bit sloppy (brand new monitor).
    5. And just stick to it... (im also confused as to why it took so long... > I spent 4 or 5 hours until what it worked..).

    Now, let me detail that I got here:

    My connections: I had my system & monitor off, and after removing my my docking station DVI connector and the monitor, I plugged my DisplayPort dongle to my dockign and plugged the dongle to the monitor using a HDMI cable. I fed my monitor & notebook (with cover open notebook in case I had to update the drivers, activate something, etc.).

    Tried to activate the mointor: I right click on the desktop to open the control/display panel / 'Screen Resolution' UI and interpreted by "detect": nothing: he showed the "integrated monitor' for the laptop and a generic monitor, but I don't see my monitor HP 2511. I have done several times, and finally, after some trial and error the right monitor #2 (HP 2511) appeared as a second monitor.

    I tried to "Extend desktop" for two monitors; but this only * partially * worked; I could see that the mointor received a signal because she was out of 'sleep' (the power light went from orange to blue (active))... but there is no image on the monitor (!)

    I've then updated the software and drivers for my laptop for the latest news from hp.com for laptop (3.20 - 130911 A - 164036 C (20 December 2013):)

    Note: "solves a problem where the system does not detect external displays properly when the system is connected to a docking station with 2 attached external displays and the lid is closed the system."

    Well, I said: nothing to see new drivers... so I installed them.

    However, even after installing the drivers, no. picture on the screen... I saw that it was getting a signal (did not sleep), but does not display anything.

    NOTE: I did this with my laptop open cover...

    I have so I checked the wiring; Brand new DisplayPort HDMI cable...... quite new dongle so I reversed the HDMI cable, tried another cable...

    Yet, nothing...

    Finally:

    • Back to the 'screen resolution' UI, this time I made sure that the Office was NOT extended to the #2 monitor (external monitor).
    • I have powered off the COAST of the external Mointor (I could here the PnP event for the monitor).
    • I have closed the lid of the laptop.
    • Double check all connections again (and again! they are capricious!).
    • I then On the external Monitor; I heard the PnP event for the monitor... and... PHOTO!  The external mointor now had an image.

    I hope this helps... it of just me and not of HP.

  • Portege M400: click right button on the pen does not work

    Hello

    I can't button right-click on the barrel of the pen to work with my new Portege M400 tablet PC. I tried with the option 'Use the stylus buton click-right' in the 'Pen settings' tab 'settings in Tablet and stylus' dialog checked and unchecked, but none worked.

    Is the stylus defective, or worse still the computer? Or can anyone suggest how to operate?

    Thank you

    Toby

    PS: "pen" should be "nep" reversed in option, tab and dialog names above, but the silent filter profanity does not accept the word "nep" (reverse).

    Hello

    You have this problem since the first day? Please remember that the pen is not in a very long distance from the screen. As you know if the distance is too great the pen will not work as usual.

Maybe you are looking for