UNKNOWN SYMBOL DRIVING ME MAD, PLEASE HELP!!!

I have a symbol that has come up on my screen. It's a white box with a black dot inside and a red dot like the 'notification star' on it. It's in the same area as where you get your bbm, facebook, email, etc. notifications. I've tried going through all my apps and nothing is helping. It's driving me mad. PLEASE PLEASE HELP!

Hi DivaAoife,
Sounds like an update notification for BlackBerry App World. Do you have an email regarding an update? If not, you may be able to see the update notification in My World within App World.
-FS
Come follow your BlackBerry Technical Team on Twitter! @BlackBerryHelp
Be sure to click Kudos! for those who have helped you.
Click Solution? for posts that have solved your issue(s)!

Similar Messages

  • Airport Express (AX) not found after restart....driving me mad, please help...!

    Hello,
    I tried to search for this issue but never found the solution. In the meantime, it drives me mad......so please do respond if you know the answer.
    Here is the problem. I have a WDS setup for our home, time capsule as base and several airport extremes (AX) for the wifi net through the house. In addition there is one AX for iTunes and I have one setup for the printer. Untill last week everything worked just fine. However, after installing a new printer, the printer AX blinked amber. I performed a reset and went through the setup, my AirPort Utility found it right away. I followed the steps for setting it up to join my current wireless network (usb printer). However, after the message: "The settings for this AirPort Express have been successfully updated. You can close this window or wait for this AirPort Express to restart" , the AX restarted, I finally got a message telling me there was an error joining my network. So I closed the ultility, resetted the AX and went through the process again. Unfortunately, the same result. Tried to connect the old printer, same result. Tried another AX, same result. Tried connecting it with a LAN cable, same result. It all goes fine untill right after the restart phase. NExt the AX is not recognized.
    As nothing has been changed in the meantime, I have no clue at all what might be the problem. Anyone ????
    Looking forward to the answer, untill now, I have not been able to find a solution.
    Kind regards,
    Mark

    Mark,
    I am having the same problem.  I found this website, not sure if you have already given this a try.
    http://adamantventures.com/blog/airport-express-setup-troubleshooting/

  • Html:link not working in struts project driving me mad, please help...

    Afternoon all,
    Can anyone help me with an issue I'm having with my first struts project, I'm learning as I go.
    Anyway, I'm trying to create a bog standard hypertext link which passes a value back to a specified struts action. The flow of the application
    is as follows:
    1) search.jsp
    User enters a name and postcode to search on, then click submit
    2) searchAction
    Struts action 'search' is called and does the search in a back-end db.
    Each result found from search is created as a javabean (named resultsBean), and added to a list object. The list object is set as a request
    attribute named 'SearchResults'.
    The action is then forwarded on to another jsp page named results.jsp
    3) results.jsp
    The results.jsp page retrieves the list object from the 'SearchResults' attribute and loops through each entry
    in the list and converts each entry to the 'resultsBean' javabean object.
    Each resultsBean object has a getVirtualID method which stores a string value. This value is retrieved and a hypertext link is created which
    passes this value on to another struts action named 'select'.
    When this link is clicked on, the select struts action is called and the value passed as a parameter is retrieved.
    This is the part I can't get to work, I can't get the link to render properly. When I click the link the select action retrieves
    & lt;%= resultsBean.getVirtualID() & gt; as the value of the parameter 'vid' instead of the value stored in the getVirtualID method of the resultsBean.
    Listed below is the code from my results.jsp page. If anyone can help me get this to work I would be very grateful.
    Thanks in advance,
    Alex
    results.jsp code
    <%
       List searchResults = (List)portletRequest.getPortletSession().getAttribute("SearchResults");
    %>
    <div id="table_layout" style="width: 713px; margin: 0px 0px 0px 3px;">
      <div id="row">
        <div id="column"><img src='<%= response.encodeURL("/images/results.gif") %>' alt="" width="223" height="159" border="0" /></div>
         <div id="column" style="width: 30px;"></div>
         <div id="column">
          <div id="table_layout" style="width: 460px;">
            <div id="row" style="width: 430px; border-bottom: 1px solid #4e137d;">
              <div id="column" style="width: 155px;">Name</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" style="width: 130px;">Address</div>
              <div id="column" style="width: 10px;"> </div>
              <div id="column" align="right" style="width: 120px;">References</div>
            </div>
    <% if (searchResults.size() > 0) {
           Iterator it = searchResults.subList(0, searchResults.size()).iterator();
           ResultsBean resultsBean = new ResultsBean();
           while (it.hasNext()) {
                resultsBean = (ResultsBean)it.next(); %>
            <div id="row" style="padding: 5px 0px 10px 0px;">
              <div id="column" style="width: 155px;"><html:link styleClass="results"  page="/select.do?vid='<%= resultsBean.getVirtualId() %>'" title="<%= resultsBean.getFullName() %>"><%= resultsBean.getFullName() %></html:link></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" style="width: 130px;"><%= resultsBean.getFullAddress() %></div>
              <div id="column" style="width: 10px;"></div>
              <div id="column" align="right" style="width: 120px;"><%= resultsBean.getReferenceIcons(portletResponse) %></div>
              <div id="column" style="width: 13px;"></div>
              <div id="column" style="width: 22px;"><input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;"></div>
            </div>
    <%     }
       } %>
           </div>
         </div>
      </div>
    </div>
    <br />
    <br />
    <html:link forward="/searchpage">Return to search page</html:link>

    If you have part of an attribute dynamic, you need to make the entire attribute an expression.
    ie instead of
    page="/select.do?vid='<%= resultsBean.getVirtualId() %>'"
    it has to be
    page="<%= "/select.do?vid=" + resultsBean.getVirtualID() %>"
    However for my approach, I would aim for zero scriptlets, and use the struts tags even more. For instance instead of an iterator, use the struts logic:iterate tag (or the JSTL c:forEach>
    Also instead of div tags, I would use html table tags - <table> <tr><td> etc etc. Thats what its for right?
    Here is at least some of it rewritten with struts tags.
    I left out the div tags so I could focus on the "important" stuff.
    <logic:iterate id="resultsBean" name="SearchResults">
      <html:link styleClass="results"  page="/select.do" paramId="vid" paramName = "resultsBean" paramProperty="virtualId">
        <bean:write name="resultsBean" property="fullName"/>
      </html:link>
      <bean:write name="resultsBean" property="fullAddress"/>
    <%= resultsBean.getReferenceIcons(portletResponse) %>
    <input id="<%= resultsBean.getVirtualId() %>" name="ckbox" type="checkbox" value="" title="tick to select for merging" style="border: 0px solid #ffffff;">
    </logic:iterate>I'm not entirely certain what you are doing with that checkbox at the end. They all have the same name, but no value. You couldn't identify at the server end which one was clicked.
    Hope this helps some,
    evnafets

  • I tunes problem driving me mad - please help

    Hi, I've just got a new laptop and have installed i-tunes on it. I have copied all my music to the hard drive from my previous computer and i-tunes has has automatically placed all of the music in the i-tunes library. The problem is that for some reason the library is showing 3 copies of each song even though there is only one of each on the hard drive. i have tried removing i-tunes and reinstalling but it is still happening. i have looked through the i-tunes settings but can't work out why it is happening. i dont want to have to go through the library deleting songs as it would take forever...
    Has anyone else had this problem? any help would be greatly appreciated
    Thanks

    sometimes different songs are placed under one name and also it looks through multiple directories.try to single the folder out for music and then it might work
    hope i helped.

  • FCP plays DVCPro HD - QuickTime does not - Driving me mad – please help-.

    Hello
    This is a follow on from a previous post. Trying to get DVCPro HD QuickTime file to playback on a MAC Mini. The file opens but the image is white and I occasionally get a dialog box informing me that a QuickTime component is missing.
    I have installed Final Cut Pro on to this MAC
    I have downloaded and installed the DVCPROHD components software from apple.
    From FCP I can do a custom export (File Export QuickTime Conversion) for DVCPro HD but the same option isn’t available if I try and do a custom export from QuickTime.
    I have done the same install on a G5 and all is well. Is it the Intel – Mac Mini that is causing the problem? Both MACs have 10.4.8 installed so I don’t think it’s a system thing.
    ?????..any advise is greatly appreciated.
    Sincerely
    D

    you answered yourself, give you the green star,
    http://forums.creativecow.net/cgi-bin/newreadpost.cgi?forumid=8&postid=914678&pview=t#head

  • HT201263 Hi. I forgot my passcode and now I am unable to unlock my ipod. I tried restoring it using itunes in recovery mode as well as dfu mode but it says unable to restore,unknown error occured (3004).  Please help me out. My ipod is locked for one hour

    Hi. I forgot my passcode and now I am unable to unlock my ipod. I tried restoring it using itunes in recovery mode as well as dfu mode but it says unable to restore,unknown error occured (3004).  Please help me out. My ipod is locked for one hour now.

    Locked Out, Forgot Lock or Restrictions Passcode, or Need to Restore Your Device: Several Alternative Solutions
    1. iOS- Forgotten passcode or device disabled after entering wrong passcode
    2. iPhone, iPad, iPod touch: Wrong passcode results in red disabled screen
    3. Restoring iPod touch after forgotten passcode
    4. What to Do If You've Forgotten Your iPhone's Passcode
    5. iOS- Understanding passcodes
    6. iTunes 10 for Mac- Update and restore software on iPod, iPhone, or iPad
    Forgotten Restrictions Passcode Help
    You will need to restore your device as New to remove a Restrictions passcode. Go through the normal process to restore your device, but when you see the options to restore as New or from a backup, be sure to choose New.
    Also, see iTunes- Restoring iOS software.

  • How to fix this: The iphone "iPhone" could not be restored. An unknown error occurred (3014). Please help me :(

    how to fix this: The iphone "iPhone" could not be restored. An unknown error occurred (3014). Please help me

    Read here:
    http://support.apple.com/kb/ts3694#3014

  • I am having problem when i am updating my iphone 4 to ios 5 ..it get update n took 50 minutes then at the end when it was processing file ...suddenly an error comes that an unknown error accurred {9006}..please help me..how will i update my iphone 4

    i am having problem when i am updating my iphone 4 to ios 5 ..it get update n took 50 minutes then at the end when it was processing file ...suddenly an error comes that an unknown error accurred {9006}..please help me..how will i update my iphone 4

    Error 9006: Following Troubleshooting security software frequently resolves this error. There may be third-party software installed that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your Registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet size modification for assistance.

  • Hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    hi, i just try to update my 3g in itunes unfortunatly it got error while updating it asked me to restore update but unable to restore it , now my 3g i locked and on screen it displying usb symbol connect to itunes ,please help me regarding this

    I suspect your error was 1015, not 1051. This usually involves a jailbroken iPhone, use Google to find your solution.

  • TS3694 I couldn't be update my iphone. An unknown error occurred (6). Please help me to resolve this problem.

    I could not be updated my iphone4. An unknown error is occurred(6). please help me to resolve this problem

    Errors related to third-party security software
    Error 2, 4 (or -4), 6, 1000, 9006
    Follow Troubleshooting security software. Often, uninstalling third-party security software will resolve these errors.
    There may be third-party software that modifies your default packet size in Windows by inserting a TcpWindowSize entry into your registry. Your default packet size being set incorrectly can cause these errors. Contact the manufacturer of the software that installed the packet size modification for assistance or follow this article by Microsoft: How to reset Internet Protocol (TCP/IP).
    Verify that access to ports 80 and 443 are allowed on your network.
    Verify that communication to albert.apple.com or phobos.apple.com is not blocked by a firewall, or other Internet security setting.
    Discard the .ipsw file, open iTunes and attempt to download the update again. See the steps underAdvanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations.
    Restore your device while connected to a different network.
    Restore using a different computer.

  • I opened up a radio site that i used to listen to on my old computer, but when i opened the site up, it said it needed a plugin, then it couldn't find the plugin and said unknown plugin (audio/x-mpegurl) please help!

    i opened up a radio site that i used to listen to on my old computer, but when i opened the site up, it said it needed a plugin, then it couldn't find the plugin and said unknown plugin (audio/x-mpegurl) please help!

    ChrisJ4203,
    Thank you for the help.  Every app on my phone was downloaded using my old I-tunes ID.  I just hope that they will re-download under my new ID because I still can't change it on my phone.  In order to change to the new ID it says I have to sign out from the old ID and change to the new one.  My problem is that I don't remember my password to be able to sign out from my old ID.  Then the phone says it can change my password through e-mail and I  agree but I never get an e-mail at my old address or the new one.
    BHuyett

  • Display of eBay Sales Manager Sold Page to wide for screen. Scrolling is driving me mad. Help please for Newbie to Mac!

    I have a new Mac Book Pro 13” & an iPad for my Amazon and eBay business. I have been a PC user.  The problem relates to both.
    On my eBay Manager Sold page, the display of the page is wider than my screen. I use Safari and all other webpages are fine apart from this and a couple of other eBay Sales Manager pages.  I have tried using the eBay default column widths for the Sold display page & also setting the widths of the Sold columns to my own preferences.  However, on each page refresh the display page width reverts meaning I am having to scroll left and right to see full details of each sale.
    Help would be much appreciated as it is driving me mad.  I have tried all the usual things - page display, clearing cookies, restarting computer but nothing helps. 

    Hey mylittlefleur,
    Sounds like the eBay Manager Sold page expects a very wide window.
    Does the content get too small if you zoom out the window?
    Zoom in on webpages - Safari Help
    Make the webpage content larger: Choose View > Zoom In, press Command (⌘)–Plus Sign (+), or pinch open on your trackpad. To make only text larger, choose View > Zoom Text Only before you zoom in.
    Set a minimum font size for webpages: Choose Safari > Preferences, click Advanced, then select “Never use font sizes smaller than.” Click the pop-up menu and choose the minimum font size you want.
    Expand to full-screen view: Click the green full-screen button in the top-left corner of the browser window, or press Control-Command (⌘)-F. To return to standard view, move the pointer to the top-left corner of the screen, then click the green full-screen button again, or press Control-Command (⌘)-F.
    Of course you can zoom out to see more.
    Nubz

  • E: drive full and trying to back up! driving me craaaazy please help

    hey! my laptop is like 5 days old! i put all my old photos and music from itunes onto disks from my old laptop and put them onto this one. everything was fine until sunday! the laptop started a back up! i got a messege saying that the disk E: drive was full and to delete files ect... or i could change the settings! i tryed to change the back up to do this onto disk. but iv been told there should be a place to do this on the laptop and the the wall partions may not be set rite. i also keep getting a warning that my E: drive is full and to make space! i have phoned hp support and they say talk to the place i got the laptop from and so i did they said i could sent it back but that means removing everything! i have googled and seen loads of people with this prob so is there a way to fix this? someone please help its drivng me crazy! i have a hp pavilion g6 series. thaaaaaaaanks x

    You need to re-run the backup program to unselect the E drive.
    As a sidebar, it is actually unwise to backup to the same physical hard drive. You need to realize that you have a single hard drive , that is partitioned in hard disc C,D,E.  If that physical hard drive were to crash, cease to function. burn-out, etc, you lose all of it. It is not separate drives.
    I am a volunteer. I am not an HP employee.
    To say THANK YOU, press the "thumbs up symbol" to render a KUDO. Please click Accept as Solution, if your problem is solved. You can render both Solution and KUDO.
    The Law of Effect states that positive reinforcement increases the probability of a behavior being repeated. (B.F.Skinner). You toss me KUDO and/or Solution, and I perform better.
    (2) HP DV7t i7 3160QM 2.3Ghz 8GB
    HP m9200t E8400,Win7 Pro 32 bit. 4GB RAM, ASUS 550Ti 2GB, Rosewill 630W. 1T HD SATA 3Gb/s
    Custom Asus P8P67, I7-2600k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX660 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Custom Asus P8Z77, I7-3770k, 16GB RAM, WIN7 Pro 64bit, EVGA GTX670 2GB, 750W OCZ, 1T HD SATA 6Gb/s
    Both Customs use Rosewill Blackhawk case.
    Printer -- HP OfficeJet Pro 8600 Plus

  • I restored my itunes and now it wont sync back. it says a unknown error has occured (14) please help!!!!

    My ipod was acting up, it wouldnt sync any new songs purchased after i updated my itunes. So i thought okay i will restore it, and sync everything back, so i restored it and now it tries until a message saying 'The ipod 'IPOD' could not be restored. An unknown error occurred. (14)'
    I have tried to sync the same library onto an older ipod and the same thing has occurred.
    Please help i dont like not have my music!!!!!!!
    Thanks.

    Sure it will.
    What happens when you connect your device and try to sync?

  • Oracle 10g Rel2(10.2.0.3) on Vista ultimate driving me crazy, Please HELP

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

    Hello Folks and Expert,
    I am Certified Ora DBA and am stuck, thats a shame
    I am going to install and Test Oracle 10g on Vista as my future client will use Just Vista and no othr OS, so there is no OTHER OS options,
    I ready all the documentaiotn and release notes and also read that Oracle 10g(10.2.0.3) is certified on Vita Ultimate.
    I downloaded the DB which is frm the below link:
    Oracle Database 10g Release 2 (10.2.0.3/10.2.0.4) for Microsoft Windows Vista and Windows 2008
    *** It installs but it justdoesn't work properly, PLEASE HEEEEEEELP I am running out of time.
    steps I have done:
    1. Installed loppback and tested and it works when I ping, both ping computer and ping computer.domain with no error.
    - whic means under windows>system32>driver> etc>host I added the 10.10.10.10 and cmputer name.
    2. Under MMC I added cmputer local policy for local computer
    3. Also Under "Local security setting" under "Local Policies" Under "User right Assignment" Under "Log on as a Batch job" I added the User name which was created when weload the Vista for the first time which is the Computer Admin, ALSO REALOADED THE COMPUTER WITH TH FACTORY SETTING AND AFTER THE FIST BOOT, UNLOCKED THE "ADMINISTRATOR" USER OF THE OS AND TESTED WITH THE ADMIN USER AS WELL WHICH WAS ADDED TO THIS lOG ON AS A BATCH JOB.
    4. Restarted the Computer on all the step that I had to
    5. Downloaded the DB and installed the DB, it installled without any Error
    ******************My Questions are as belooooowww ******************
    When Oracle installd he prduct, usually under the
    Start menu> All programs we should have 4 folders (Application Development, Configuration and Migration, Integrated management tools, Oralce installlation products) and DATABASE CONTROL - ORCL
    a - when installation finishesh it JSUT DOESN't CREATE ------> DATABASE CONTROL - ORCL Whyyyyy ? (It is driving me crazy, I have another xp machine and it has also I had EVEN Vista Home premium and I was able to install on it before to test)
    b - I can loging to the database after i type the adress I remembered manually in the browser, it logs in without any errror, but
    When I want to shutdown the database It passes the host crendential once and I wait and it does nothing and a little windown pops up and says
    *"Enterprise manager stopped working"*
    C - To test and stop Listener also it just doesn't stop it and doest the samething,
    I just wannna CRYYY, it is getting me Crazy,
    PLEASE HELP ME with all THREE QUESTONS A,B,C PLEASE HELLLLLLPPPPP
    Rgrds,

Maybe you are looking for

  • ITunes & User Account Control In Windows 7 64 Bit

    I have an iPod Touch 5G, and a PC running Windows 7 64 bit. The latest Windows 64 bit iTunes with the latest update that was released a few days ago is installed. When the PC starts, a warning screen appears asking if I want to allow iTunes to run. T

  • Save As dialog box

    may i know how to do the save as function example to save, once i click the save as, it would allow me to save the current file to another filename? thanks!

  • Apple IE DAV has stopped working

    I use a PC (Windows) laptop for work and I have itunes installed and use it to manage and sync with my iPad. I use iCloud and iMatch.   I also use outlook and have it synced to iCloud. Well, all of a sudden I am now getting this message when I start

  • Record Audio/Pause Video

    I'm trying to create a couple of captivate videos. Have finished the videorecording. When I started to record audio, what I've captured runs to fast. Is there any way of pausing the video on certain frames while recording the audio?

  • Trouble connecting via Ethernet

    At home I use Airport with a Time Capsule and a DSL connection. Recently I've tried to plug into the modems at friends' houses via Ethernet and haven't been able to get online. At one location it's a cable modem, the other DSL. I go to Network Prefer