Cannot load maps to N70 (w/o GPS)

I first installed Nokia Maps (ver 1.0 S60 2.8) on my N70 and used once. Then took the memory card and inserted to my laptop. After installing Map Loader on my laptop, I downloaded some maps successfully as shown by the program. Then I put the memory card back to my N70. When I run Nokia Maps, nothing shows up but the globe. How can I use the map data I've downloaded ?

add
mysql_jconnector.jar in the folder C:\bea\jdeveloper\\system11.1.1.5.37.60.13\DefaultDomain\lib

Similar Messages

  • Cannot load map for Japan into Lumia 800

    Hi,
    I am shortly travelling to Japan I wanted to pre-load Japan map into my Lumia 800. However, it seems that it is impossible. When trying to load Japa map via Nokia navigation there is no Japan under Asia. There is China and many other Asian country, but Japan is missing ...
    Is this known feature or what ???

    To date Nokia has avoided getting involved in providing mapping for Japan as the Japanese banchi address system is not based on the street number system like the US or Europe.
    Users of Nokia Symbian devices had to utilise Garmin Mobile Xt for navigation in Japan.
    Happy to have helped forum in a small way with a Support Ratio = 37.0

  • My gps is not working.  I cannot use turn-by-turn navigation in google maps.  I downloaded a GPS test app and it showed my phone is not locking on any satellites.  How can I correct this?

    My gps is not working.  I cannot use turn-by-turn navigation in google maps.  I downloaded a GPS test app and it showed my phone is not locking on any satellites.  How can I correct this?

    We certainly want to make sure you get the most out of the GPS, wplaxico! Was this tested primarily outdoors? When did this begin? Any other recent apps of updates installed when this started?
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWSupport
    If my response answered your question please click the �Correct Answer� button under my response. This ensures others can benefit from our conversation. Thanks in advance for your help with this!!

  • Cannot load the bookstore servlet

    I am going through the bookstore tutorial of J2EE 1.4 final version, all the steps are fine, and finally I try to load the servlet with http://localhost:8080/bookstore1/bookstore, it says:
    HTTP Status 404 - /bookstore1/bookstore
    type Status report
    message /bookstore1/bookstore
    description The requested resource (/bookstore1/bookstore) is not available.
    I am pretty sure I followed all the instructions, I checked everything, aliases in the Deploytool, etc. and from the Server admin console, I could see the bookstore1 is deployed with other applications, but why it doesn't work.
    checking the server.log file, I found the foolowing:
    Remote message: Processing beans ....
    [#|2003-11-28T20:56:38.625-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.deployment|_ThreadID=11;|DPL5110: EJBC - END of EJBC for [bookstore1]|#]
    [#|2003-11-28T20:56:38.687-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.deployment|_ThreadID=11;|Total Deployment Time: 1953 msec, Total EJB Compiler Module Time: 110 msec, Portion spent EJB Compiling: 5%
    Breakdown of EJBC Module Time: Total Time for EJBC: 110 msec, CMP Generation: 0 msec (0%), Java Compilation: 0 msec (0%), RMI Compilation: 0 msec (0%), JAX-RPC Generation: 0 msec (0%),
    |#]
    [#|2003-11-28T20:56:39.203-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.admin|_ThreadID=11;|ADM1041:Sent the event to instance:[ModuleDeployEvent -- deploy web/bookstore1]|#]
    [#|2003-11-28T20:56:39.312-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.container.web|_ThreadID=11;|WEB0100: Loading web module [bookstore1] in virtual server [server] at [bookstore1]|#]
    [#|2003-11-28T20:56:39.359-0500|SEVERE|j2ee-appserver1.4|javax.enterprise.system.container.web|_ThreadID=11;|WEB0117: Error loading web module [bookstore1] in virtual server [server]: javax.naming.InvalidNameException: Real JNDI name cannot be empty for jdbc/BookDB|#]
    [#|2003-11-28T20:56:39.359-0500|INFO|j2ee-appserver1.4|javax.enterprise.system.tools.admin|_ThreadID=11;|ADM1042:Status of dynamic reconfiguration event processing:[success]|#]
    The only thing strange is that "Real JNDI name cannot be empty for jdbc/BookDB", when I set resourse refs tag, I did enter the sun-specific settings, but and I save the file, the infomation of jdbc/BookDB is lost.
    hope someone could show me the reason.

    settings in web.xml is fine. here is the content.
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>bookstore1</display-name>
    <filter>
    <filter-name>HitCounterFilter</filter-name>
    <filter-class>filters.HitCounterFilter</filter-class>
    </filter>
    <filter>
    <filter-name>OrderFilter</filter-name>
    <filter-class>filters.OrderFilter</filter-class>
    </filter>
    <filter-mapping>
    <filter-name>HitCounterFilter</filter-name>
    <servlet-name>BookStoreServlet</servlet-name>
    </filter-mapping>
    <filter-mapping>
    <filter-name>OrderFilter</filter-name>
    <servlet-name>ReceiptServlet</servlet-name>
    </filter-mapping>
    <listener>
    <listener-class>listeners.ContextListener</listener-class>
    </listener>
    <servlet>
    <display-name>BookStoreServlet</display-name>
    <servlet-name>BookStoreServlet</servlet-name>
    <servlet-class>servlets.BookStoreServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>ShowCartServlet</display-name>
    <servlet-name>ShowCartServlet</servlet-name>
    <servlet-class>servlets.ShowCartServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>CashierServlet</display-name>
    <servlet-name>CashierServlet</servlet-name>
    <servlet-class>servlets.CashierServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>BannerServlet</display-name>
    <servlet-name>BannerServlet</servlet-name>
    <servlet-class>servlets.BannerServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>BookDetailsServlet</display-name>
    <servlet-name>BookDetailsServlet</servlet-name>
    <servlet-class>servlets.BookDetailsServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>ReceiptServlet</display-name>
    <servlet-name>ReceiptServlet</servlet-name>
    <servlet-class>servlets.ReceiptServlet</servlet-class>
    </servlet>
    <servlet>
    <display-name>CatalogServlet</display-name>
    <servlet-name>CatalogServlet</servlet-name>
    <servlet-class>servlets.CatalogServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>BookStoreServlet</servlet-name>
    <url-pattern>/bookstore</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>ShowCartServlet</servlet-name>
    <url-pattern>/bookshowcart</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>CashierServlet</servlet-name>
    <url-pattern>/bookcashier</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>BannerServlet</servlet-name>
    <url-pattern>/banner</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>BookDetailsServlet</servlet-name>
    <url-pattern>/bookdetails</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>ReceiptServlet</servlet-name>
    <url-pattern>/bookreceipt</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
    <servlet-name>CatalogServlet</servlet-name>
    <url-pattern>/bookcatalog</url-pattern>
    </servlet-mapping>
    <error-page>
    <exception-type>javax.servlet.UnavailableException</exception-type>
    <location>/errorpage.html</location>
    </error-page>
    <error-page>
    <exception-type>exception.BooksNotFoundException</exception-type>
    <location>/errorpage.html</location>
    </error-page>
    <error-page>
    <exception-type>exception.BookNotFoundException</exception-type>
    <location>/errorpage.html</location>
    </error-page>
    <jsp-config/>
    <resource-ref>
    <res-ref-name>jdbc/BookDB</res-ref-name>
    <res-type>javax.sql.DataSource</res-type>
    <res-auth>Container</res-auth>
    <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    </web-app>
    since in the server.log file, it complains the following:
    [#|2003-11-28T20:56:39.359-0500|SEVERE|j2ee-appserver1.4|javax.enterprise.system.container.web|_ThreadID=11;|WEB0117: Error loading web module [bookstore1] in virtual server [server]: javax.naming.InvalidNameException: Real JNDI name cannot be empty for jdbc/BookDB|#]
    I believe the problem is from the JNDI name, therefore it cannot load the web module [bookstore1], I check the sun-web.xml file:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE sun-web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Sun ONE Application Server 8.0 Servlet 2.4//EN" "http://www.sun.com/software/sunone/appserver/dtds/sun-web-app_2_4-0.dtd">
    <sun-web-app>
    <context-root>/bookstore1</context-root>
    <resource-ref>
    <res-ref-name>jdbc/BookDB</res-ref-name>
    <jndi-name>jdbc/BookDB</jndi-name>
    </resource-ref>
    </sun-web-app>
    this jdbc/BookDB is defined by using the admin console, and the actual table name is BOOKS, which could be seen by the PointBase console, under SCHEMAS->PBPUBLIC->TABLES nodes. But how this jdbc/BookDB is mapped to the table BOOKS, the tutorial doesn't say. I doubt if this is the problem?

  • Cannot load source/destination schema - on a .BTM file

    I'm converting a project originally developed in VS2008/BTS 2009 to VS2013/BTS2013R2
    I get this error in my MAP file while building.
    Exception Caught: Cannot load source/destination schema: MyCompany.Schema.  Either the file/type does not exist, or if a project dependency exists, the dependent project is not built.
    Why is this? I've tried GACing, Re-GACing, reloading the source and target schemas etc etc. None of the commonly suggested solutions worked for this error. 
    We contacted MSFT support; the engineer after trying various approaches, finally recommended to change Build Action from BTSCompile to None for the .BTM file. Apparently, this fixed the build error. But I feel like this is just masking the real problem.
    What is the true remedy for the above error occuring in a .BTM file ? Thank you for any help. 
    -Perennial Newbie-

    Since you have a case opened with Microsoft, it would be better to get the root cause from them.
    We can speculate by any suggestion may not be the exact reason for your issue and the more appropriate/relevant solution
    would be from Microsoft support as they are already on top of your issue and would have taken some log/knew the complete background of your issue completely.
    If this answers your question please mark it accordingly. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • Cant load maps onto E71

    Hi there,
    I have been using nokia maps on my E71, and I have updated to the latest version, which deleted the maps present on the phone. I now cannot load any maps onto it. While connected to my PC the maps application says that the maps on my phone are corrupt, but I cannot delete them, or load new ones. I have tried deleting the CITIES folder, and deleting the qf file, but get the same error. I also reinstalled ovi suite on my PC, same error. I cannot uninstall the maps app on my phone. Any ideas how to sort this? 
    Thanks in advance!
    Tim
    Solved!
    Go to Solution.

    Hi All,
    I hit this problem on my N82 as well (yesterday) after I reinstalled OVI Maps 3.01.
    To workaround (got this from ovikovi), I did the following:
    1. Close OVI Suite. Note that OVI Suite will take some time to close; you can verify if it is fully closed using Windows Task Manager. In the mean time, you can move on to the next step.
    2. Detach the mobile from your computer.
    3. On your mobile, go to file manager and rename the "cities" directory and "qf" file.
    4. On your mobile, launch OVI Maps. Close OVI Maps a few moments after it is fully launched. Wait for it to be fully closed; it can take up to tens of seconds on my N82.
    5. After checking that OVI Suite is fully closed (as per step 1), launch it back up.
    6. After OVI Suite is fully loaded, attached your mobile as "PC Suite" mode and then retry after OVI Suite attaches to it. If it works, you can remove the renamed directory and file on step 3.
    @John: Note that I am not sure how this will impact the preloaded map.
    Hope this works for you folks, as it had worked for me. Good luck.
    Cheers.

  • Map Loader Can't Load maps to 5230 on Mac OSX

    When I start Nokia Map Loader application for dowloading maps on Nokia 5230 I get an error message saying :
    The following errors occured while transferring files. If the error is not permanent, you can try starting the file transfers again.
    config.cfg file couldn't been found. operation forbidden
    config.cfg file couldn't been found. operation forbidden
    I can't download maps on the phone because the region list is empty (it is not supposed to be).
    This happens every time I try to use the Map Loader.There are screenshots of the same problem on another forum: http://betalabs.nokia.com/apps/nokia-map-loader-fo r-mac/bugreport/configcfg-operation-forbidden
    Operating system is Mac OSX
    Thank you for your help.

    Hi all my experience with map loader is similar and I'm hoping for dramatic improvements to enable me to successfully load maps to my 5800MX,  apols for the length of my post but I have just spent 12 hours trying to get MAP loader to work and have found and fixed a number of issues that I hope will help some people,  I have also found a no of shortcomings in the software and am hoping for Nokia to take note and apply some fixes.  
    1. I got rid of the config.cfg error message by loading maps on my phone and changing the memory card location to drive E:  I then waited for a satellite connection and found location,  then connected to my MacAir running 10.6.4 OSX.  Prior to running maps on my 5800 I had the config.cfg errors. 
    2. BEWARE that if you are connecting a phone that has not been synced using nokia  MMT before or one that was previously synced but had the music etc deleted (like my 5800 because I formatted the memory card) then initially the NMMT symbol flashes as if it is working,  BUT shortly after it will remain static and then the color wheel will appear when you float the mouse over the NMMT icon,  this can give the impression of a complete software lock upand in my case only after 2 forced quits and reboots not altering things I  decided to leave the MAC in this state  ,  low and behold some 40mins later NMMT started showing a status of music and photo transfer .  SO NOKIA please fix this your software appears to be totally hung but it is merely working so something needs resolution in my view as there really is no indication that the software is running and in "force quit" the software shows as not responding.
    3. MAP LOADER, - initially upon loading map loader it reported "phone cannot have maps or is not compatible" however this was because my default memory card (on the 5800 maps, settings ,maps, menu) was C: and I had not actually re-run maps after formatting my memory card (see note 1 and 2) . Changing the default memory location in maps on the phone to E: allowed map loader to run.  Then I had an issue that the map regions were not showing in the left column,  the software simply showed nothing and I had nothing to drag into my phone for upload.  This was resolved by getting a faster internet connection.  Internet Speed and Reliability - Now (still not resolved)  I have a faster internet connection I have loaded MAP loader and have dragged all of the relevant maps to the right.  I click on upload/download maps and the software stars the download process but takes an eternity to download maps,  last night I left the software for 7 hours and still no maps were downloaded,  In addition to this I have to leave my phone connected to my MACAIR the whole time I am attempting to download,  so I can't even download maps from nokia and upload them to my phone at a later date. I think this is due to my internet connection speed but I am using bittorrent to frequently download torrents which works fine so it cannot be that bad.  So MY REQUEST to NOKIA software development for MAP LOADER is can we please have some software that is designed to run on an internet connection that is less than 500K (it looks like you developed it on a 1GB LAN connection).  IE why do I have to connect my phone  for MAP loader to start in the first place  OR  Can't you put an option in the SW to allow the Nokia phone to be disconnected after downloading commences (ie if this is a licensing issue) so I can freely use my phone whilst maps are downloaded on my MACBOOK when Im not in the office  ?  Could you employ a capability like bittorrent in the downloader so we can download in portions when we have access to the internet  ?  Why is your MAP loader so slow ?  IE I happily download 100M updates to MACOSX and ITUNES over these internet connections but MAP LOADER just WONT WORK, OR works so slowly and cannot recover from slow internet connection states that it is unusable ?
    4. As I have a MACAIR I only have one USB port so was hoping to connect my 5800 with Bluetooth so I can run maploader whist I am connected to my USB mobile internet.  Unfortunately I was unable to get the MAP loader to recognize my 5800 via bluetooth ,  I loaded the software , chose use bluetooth and it continually searched with no connection found.  This is despite me having the devices paired,  I have used bluetooth connections for both isnc (calendar and contacts sync works fine) and for NMMT. NMMT recognized the 5800 bluetooth connection in the dropdown menu but MAP LOADER completely failed to recognize it.  NOKIA please allow a BT connection with the nokia 5800 so I can run this combination,  OR simply allow me to disconnect my phone whilst I am on the internet downloading my maps,  then once maps are on my local MACdrive I can just disconnect from the internet and uploads maps to my phone.
    That's it, in short MAP Loader for MACOSX 10.6.4 seems unworkable in its current form unless your connected to an 8M internet connection or the Nokia development LAN.   Please fix ASAP

  • Cannot load interactive graphics

    cannot load the weather.com interactive map
    the thread on this topic was locked by Chris ??, making it impossible to persue.

    Hi bobjm, I don't understand your reference to the topic locked by Chris. However, I can see that the map uses the Flash player. Have you noticed any other issues with Flash? This article might help: [[Flash 11.3 doesn't load video in Firefox]].

  • Error loading Map Tile Layer when restart

    Hi all,
    I'm a newbie to Mapviewer. I'm having some problem after i restart the oc4j. Originally, when i insert the image into georaster and some other steps, then i did a xml_request for the map tile. It could load the map originally. When i restart the oc4j, it gives me the following error
    2008-03-11 17:55:28.046 WARNING Cannot list base maps.
    2008-03-11 17:55:28.203 ERROR Error in loading map tile layer config from databa
    se!(TEST,ML1)
    2008-03-11 17:55:28.203 ERROR Base map does not exist. Cannot create internal ma
    p source.(TEST,ML1)
    The mapviewer and app server is on the same domain but the database in on a different domain. When i tried to shift mapviewer to the same domain as the database, it won't cause this problem.
    Could anyone suggest me any solution?
    Message was edited by:
    nvr4getu

    Hi,
    It's pointing to the correct data sources. I've even tried to remove all the map tile and data, then upload again from my test application, it can render the map. However, when i restart the oc4j, the error occur again. Is this a bug of mapviewer that mapviewer must be deploy on the same machine with database?
    Cheng

  • Just downloaded iOS 6. Cannot view maps at street level now. Any solutions?

    Just downloaded iOS 6. Cannot view maps at street level now. Any solutions? Apple help told me I cannot delete iOS 6 and go back to 5.1.1

    Apple is constantly working on improving their new Maps service, but until it reaches the level of finesse necessary to be usable, take a look at some alternatives.
    Bing Maps offers a very good maps service with Bird's Eye, a feature similar to Flyover. It's arguably better than Google Maps.
    http://itunes.apple.com/us/app/bing/id345323231?mt=8
    You can use Google Maps by creating a shortcut to the Home Screen with help from the article below.
    http://www.ign.com/articles/2012/09/20/how-to-get-google-maps-on-ios-6
    MapQuest also has a very nice app available.
    http://itunes.apple.com/us/app/mapquest/id316126557?mt=8
    Nokia Maps is another great service that you can add to your Home Screen via a web shortcut.
    http://m.maps.nokia.com
    Waze is another very well reviewed app.
    https://itunes.apple.com/us/app/waze-social-gps-traffic-gas/id323229106?mt=8
    Here's an article detailing how to receive Public Transport directions.
    http://www.wired.com/gadgetlab/2012/09/transit-apps-ios6-woes/?pid=3798
    If you want a YouTube app, Google has made a very improved version available on the App Store.
    http://itunes.apple.com/us/app/youtube/id544007664?mt=8
    If you would like to send a suggestion to Apple, please go to http://www.apple.com/feedback or you can Report a Problem via the Maps app by tapping the bottom right.

  • Using Firefox to access facebook chat Button or online friiend chat button generates a Black screen with CANNOT LOAD IMAGES and no chat window opens.

    This does not happen in other browsers and it happens on a variety of computers I have access to and would seem to be a common problem but I can find no identical cases in my searches of
    Firefox , Facebook or windows help or Google search. My home machine is only a P2 with WINXPCORP but works fine and I have done all updates but still have this continuing problem every time I try to use Firefox
    to access Facebook chat but it does not happen with IE or chrome
    The response to clicking on chat button or friend chat is a black screen with small center square box with blue title bar that says
    '' VIEW IMAGE FULL SCREEN - (42) FACEBOOK X""
    center of box is ""! "" mark in yellow triangle and wording
    "" CANNOT LOAD IMAGES ''' OK
    clicking on OK returns to facebook page but no chat opens.
    Some times |VERY RARLEY if as the page loades you click on
    chat button with 1/2 second of it appearing chat will open.

    Hi,
    Please also see [https://support.mozilla.org/en-US/kb/Problems%20using%20Facebook%20in%20Firefox this.]

  • Error while starting essbase after Installation: Cannot load $DM_APP$

    Hi,
    I have installed Essbase on solaris. After installation when I start Essbase it started successfully but with an error:
    [Mon Sep 19 09:52:22 2009]Local/ESSBASE0///Error(1052003)
    Timed out reading from server
    [Mon Sep 19 09:52:22 2009]Local/ESSBASE0///Error(1054001)
    Cannot load application $DM_APP$ with error number [1052003] - see server log file
    [Mon Sep 19 09:52:22 2009]Local/ESSBASE0///Warning(1051221)
    Creation of Datamining Object Management Application Fails with status [1054001]
    I have verified all the evnironment variables they are set correctly same as one of our other environments.
    I would really appreciate if some can help me troubleshoot this.
    Thanks and Regards,
    Vamshi

    Finally Found that the JVM path is set inccoretly.This should be the path to be set: $HYPERION_HOME/common/JRE/Sun/1.5.0/lib/sparc/server
    Thanks and Regards,
    Vamshi

  • Error message: Cannot load the rpt file

    Can anyone please help.
    I created a Crystal Report which I deployed into Business One. Tested this report on about 13 machines running Business One and all running well except one machine where it comes up with the following error messages:
    1: Cannot load the rpt file
    2: Object reference not set to an instance of an object
    3: Invalid report file path
    I have tried logging into Business One on that machine as a different user and encountered the same issue. Then logged onto another machine as the user who uses the machine with the error message and her profile works well on another machine.
    This is leaving me with concluding this problem could be down to the machine but cannot figure out how to fix it.
    Does anyone have any ideas to solving this?
    Thanks
    Tony

    Hi Tony,
    On the troubled computer, check in Control Panel whether Crystal Report Runtime is installed. If not, un-install client app and re-install from B1_Shr client's folder. The first thing that it will do is to instal Crystal Report Runtime.
    Source: when I did an upgrade on a client recently this happened. After troubleshooting everything I found that this issue is a hit-and-miss as some PCs had it some don't. I started comparing between working and non-working PC and found this is the only difference I could found.

  • The pass 4 days now my iTunes Store is not responding, when I reload it all that comes up is a blank white page that says iTunes Store. Help please!!!! Cannot load my gift card to buy music and such!!!

    The pass 4 days now my iTunes Store is not responding, when I reload it all that comes up is a blank white page that says iTunes Store. Help please!!!! Cannot load my gift card to buy music and such!!!

    I tookyour suggestion and SUCCESS!  I can now access the Itunes Store.  A simple fix, and thanks so much!!.
    Below is the advice you forwarded:
    I found a solution to my problem.
    > start menu
    > accessories,
    > right click on the command prompt icon and choose "run as administrator".
    Once it opens, type in the following command...
    netsh winsock reset
    hit enter
    You should get a message that the winsock reset successful and you will need to reboot your computer.
    Reboot and when I reloaded itunes the store loaded fine.
    Thanks again, -Dean Stoneburner

  • Internal error, cannot load engine Number 2 due to error 5

    I have had a StartStop transcription program for several years. I bought my Dell computer with Windows 8 (now 8.1) in late 2014. I had no problems running the StartStop program until it got a tune-up by my regular tech.  Since then, when I click to
    open it, I get the message: "##### Internal error, cannot load engine Number 2 due to error 5."  My tech couldn't figure it out and another tech couldn't fix it either after looking at it for hours.  StartStop could not figure it out either.
    Since then, I bought a Digitope digitalizer, which converts cassette tapes to CD's. When I try to open that program the exact same error message comes up!  
    So I am thinking there is something awry with certain audio programs. I am able to run another transcription program, Express Scribe. 
    Any thoughts!  
    The 2nd tech suggested rebooting the entire computer and reinstalling all programs, but I'm not sure I can find all my original programs. 
    Thanks!

    Hello Silent Fisher,
    What StartStop transcription program do you mean?
    Please share me a screenshot.
    If it is a third-party software, it is recommended to contact the support of the software.
    If the issue occurs after your change, please use the system restore to restore your computer’s system files to an earlier point in time.
    http://windows.microsoft.com/en-HK/windows-8/restore-refresh-reset-pc
    Best regards,
    Fangzhou CHEN
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact [email protected]

Maybe you are looking for

  • Formula to calculate two fiscal year/period difference for non null quantit

    We'd like to have a query result like the following: Person -- Jan_2007 -- Feb_2007 -- Mar_2007  --  No. of Months Tom --- 21 --- 54 --- 10 --- 2 John --- 0 ---  3 --- 15 --- 1   In the above query, the row is sales persons, the 1st three columns lis

  • Reader XI "save" button creates "save as"-dialog in a dynamic PDF

    I made a dynamic PDF with LCD ES4. Sometimes it occurs that a "save as"-dialog appears though I pushed the "save"-button. I am using Reader XI 11.0.07 on a Windows 7 Pro system. Suggestions?

  • Any way to get video out from your Treo 800???

    I have video files on my treo 800.  I can view them on my treo 800.  Is there any way to "pipe" the video output through the usb port and wirelessly to something else so I can take my treo 800 to a customer presentation and play a video for them on a

  • FCP 7.0.3 Import window closes itself before I can select anything

    I just reinstalled FCS on my mac book pro and updated it to FCP 7.0.3. I am running Yosemite. When I select file>import the dialogue pops up but before I can click on anything or make a selection it closes. Anyone else see this behavior? What might b

  • Forms to JSP conversion

    Hi all, I have some forms developed in Oracle 9i forms builder. I want to convert them in JSP. Can I do this by using JHeadStart? I have downloaded JHeadStart 10G. But I can not use it with JDeveloper 9i What else can I use for converting 9i forms to