HELP! Newbie

Lots of interesting threads here and am in need of help.
I have just had my old N97 exchanged for a N900 and am in the process of putting all the old apps (or substitutes, lack of voice guidance on Ovi Maps is for another day!) onto the new device.
I am trying to install Sygic Mobile Maps on the handset but when I try to run the set up application nothing happens.
From other threads it appears that to activate the '.deb' file I need to do a firmware update which again is not showing on the handset update facility and I am having no luck with Flasher 3.5.
Any suggestions or anyone living in Oxfordshire that could do it for me would be greatlfully appreciated.
Has Nokia given any reason why the current firmware release has not been advised using the inbuilt facility??

Aahhhhh, Had a feeling you were a Vodafone victim when I read your first post 
If you're trying to start the flasher from the icon within the flasher folder, it won't work. Try starting it from the start menu. Works like that for me.
Once you're up and running copy and paste this line:
flasher-3.5.exe -F RX-51_2009SE_10.2010.19-1.203.1_PR_COMBINED_203_ARM.bin -f -R
to the end of
C:\Program Files\maemo\flasher-3.5>
and hit return. All being well you should start flashing.
Assuming that is the .bin file you downloaded.

Similar Messages

  • New window help - newbie :(

    i found this script here, but I am a newbie and I cant figure
    out how to put in a "yes" to scrollbars. Can anyone help?
    on (release) {
    url="
    http://yahoo.com";
    winName="newName";
    w="400";
    h="400";
    getURL
    ("javascript:n_name=window.open('"+url+"','"+winName+"','width="+w+",
    height="+
    h+"');void(0);");
    Thanks!
    Maria

    try:

  • Help newbie debugger ?

    Guys is there a FREE and easy to use for newbie debugger ? I am not debugging windowsXP so i dont need super duper. What i am looking for is a program where i can watch it run through the code and i can stop/pause slow down watch value change etc etc basic functions. Can you guys help me out.

    i got this error:
    Note that JAVA_HOME is the path to the JDK, while JSWAT_HOME is the path to the jswat.jar file. The <JAVA_HOME>\lib directory must contain the tools.jar file in order for JSwat to start. This file contains the JPDA classes (com.sun.jdi) used by JSwat. If the file containing these classes is located elsewhere in your system, you must make the appropriate change to the command used to invoke JSwat.
    when trying to run bat file. so i updated code and ran it , like this
    java -Djava.ext.dirs=C:\Program Files\j2sdk_nb\j2sdk1.4.2\lib -jar C:\jswat-2.27\jswat-2.27\jswat.jar
    ran that windo pop up then went away.
    i will try again later

  • Installation Help, newbie!

    Hi:
    I'm a newbie in Java, so I'm sure I'll be asking many basic questions!
    I'm trying to install Java on a Unix box.
    I've downloaded the filename-rpm.bin file.
    Moved it to the proper folder.
    chmod a+x . (According to manual)
    In the manual it says "Run filename-rpm.bin and agree to terms"
    well how do I run it?
    What's the syntax for it?
    Please help!

    ./filename-rpm.bin
    Bhav

  • LiveCycle Designer 8.0 Drop-down menu help - newbie

    I am new with LiveCycle and do not know much about coding and the like. I've search the forums and have not found quite what I need. (It might be because I don't know the correct terms to search - so I apologize in advance if there was a previous posting regarding this)
    I am creating a form for lab tests for referring physicians to fill out.
    for simplicity, I will just use the state, city example.
    >>>>>> QUESTION 1.
    I have dragged/dropped a drop-down menu icon onto the form, gone through the Palette>Object>Field>List Items to compile the list of states (in my real case, a list of lab tests)
    How can I get the second drop down menu to show the corresponding cities based on the "state" selected in the first drop down menu? So that when I choose "California" I have the option in the second drop-down menu to choose from "Los Angeles," "Orange County," "Long Beach," etc
    VERSUS
    if I select "Texas" the list will retrieve "Houston," "Sugarland," "Dallas," etc.
    I read about hardcoding and although I'm not quite sure what that means, I think that is what I will be doing as I will not be referencing outside of my form.
    Also, the items in these menus are long/descriptive in nature, is there a way to refer to the lists in the code without having to type everything out? In my form (instead of "state") I will have lab tests "Test_1" with CPT codes attached, that is the list includes items like:
    93880 - carotid duplex scan, bilateral
    93882 - carotid duplex scan, unilateral
    and in drop-down list 2 I have items like:
    454.0 - varicose vein with ulcer
    454.1 - varicose veins with inflammation
    it would be such a pain to type each out in the code, but if there are no other ways around it, that is fine too.
    >>>>>>> QUESTION 2.
    The referring physician will have the option to email this form to the vascular lab scheduler. To prevent an "accidental" changes, I would like the form to be a "live form" for people to fill out, but upon return, the form to be a static PDF file, that is, the person receiving the email does not have the option to make any changes (purposeful or accidental), is there a way to do this?
    THANK YOU SO MUCH IN ADVANCE!
    again, I apologize for asking for help for what I'm sure is an easy fix. I don't know very much about the coding language, if it is not too much to ask - step-by-step would be helpful.
    I'm using Adobe LiveCycle Designer 8.0.
    Thank you.
    -Viv

    Hi Geo,
    Thank you for the link.
    Sorry, this is very difficult for me to explain not knowing the scripting language, but I will try my best not to confuse you too much.
    I was able to get Thom's example to work, and based on that, I was able to get this hypothetical situation to work:
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    12345678912345678: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    HOWEVER, I cannot get something like this one to work (the only difference is that I added a "9" to the first option) it seems as though I cannot insert anything beyond 17 consecutive characters (no dashes and underscores are allowed either):
    < script contentType="application/x-javascript" name="Example2" >var oTestOrdered = {
    123456789123456789: [ ["-"], ["AAA (Endologix)"], ["AAA (GORE)"], ["Aortic Arch"],["other"]],
    56565: [ ["-"], ["Varicose Vein"], ["Venous Insufficiency"], ["Spider Veins"],["Symptomatic Var Veins"]],
    46546: [ ["-"], ["TA biopsy"], ["CEA"], ["amputation"], ["debridement"]]
    function SetTestEntries()
    ICD9_2.clearItems();
    ICD9_2.rawValue = null;
    var aTests = oTestOrdered[xfa.event.change];
    if(aTests && aTests.length)
    for(var i=0;i<aTests.length;i++)
    ICD9_2.addItem(aTests[i][0].toString());
    </ script >
    The form I am creating is a Vascular Lab request form, where the test ordered (drop down box 1)has a CPT code to reference the test being ordered (i.e., 93880 - Carotid Duplex Scan, bilateral) and the test has a set of diagnoses (ICD-9 codes) in drop down box 2, associated with that test (i.e., 459.81 - Venous Insufficiency)
    I have found that I do not have a problem with the "diagnoses" but I cannot add the descriptive test select in the first place. That is, the code works fine if I leave it as "93880" but not "93880 - description." I have also run into the problem that I cannot use dashes or underscores, nor can I type more than 17 characters otherwise the code no longer works.
    Is there something I need to add or remove in order to make this work?
    Thank you in advance for your help and patience!

  • In need of desparate help (newbie)

    so my plan is simple. from the execute query i bring back multiple resultsets, which i then populate into a vector. then this vector must be redirected to a JSP to iterate through a loop and display the results.
    here is my following code:
    test.java
    Vector vRecords = new Vector();
    while(rs.next()){
    temp.setMarkerId(rs.getInt("markId"));
    temp.setFirstName(rs.getString("markFName"));
    temp.setLastName(rs.getString("markLName"));
    temp.setAddress(rs.getString("streetAddress"));
    temp.setCity(rs.getString("city"));
    temp.setProvince(rs.getString("province"));
    vRecords.add(temp);
    request.setAttribute("markerList",vRecords);
    //response.sendRedirect("../results.html");
    RequestDispatcher disp = request.getRequestDispatcher("../../results.jsp");
    disp.forward( request, response );
    dbConnection.close();This is my error message:
    Mar 13, 2005 11:12:48 PM
    org.apache.catalina.loader.WebappClassLoader validateJarFile
    INFO: validateJarFile(C:\jakarta-tomcat-5.5.8\webapps\ROOT\WEB-INF\lib\servlet.jar) - jar not loaded. See Servlet Spec 2.3, section 9.7.2. Offending class: javax/servlet/Servlet.class
    java.lang.NullPointerException
    please and thanks. i am in need of desparate help.
    johnny.

    The problem might be due to some other servlet JAR which is already loaded and using a different version of servlet specifications. Check your Classpath for other JARs present.
    $Carol

  • Help newbie here with Mac Airport Extreme

    Hello Everybody,
    I just purchased my first mac (new macbook). im so excited. i also purchased a airport extreme base station together with the macbook. i was wondering if i can set-up the airport base station with my PC? my pc does'nt have any wireless just a plain ethernet card. can you guys help.
    thanks in advance
    eugene

    just plug the pc into your airport extreme (won't work on express in the same way). i have had a few issues with full access by both my ibook and pc to each others shared files, so i am still working the network. however, from the beginning, my pc has had full broadband access through the ethernet.
    have fun!
    chewy

  • Help newbie: in running sample CORBA and EJB

    HI,
    I am trying to run the samples that come along with the http
    server for 8.1.7, all the examples work except for these two,
    for the CORBA,I am able to load and publish, and works
    perferctly from the client (used runit.bat) but when i try to
    run from the web, it gives me a "class hell.Hello not found in
    import",
    and in EJB,
    while i run makeit.bat it gives me an ora error which tells that
    i am trying to insert a value too long for oracle, this comes
    when trying to use loadjava.
    can anybody help me out, any help is appreciated.
    Thanks,
    dharma

    Hi,
    If you are building & running EJB applications, please
    use Oracle9iAS - OC4J, Oracle Containers for J2EE. It is a
    robust, fast and a suggested environment for developing J2EE
    based applications. Oracle database JVM should be used only for
    deploying Java Stored Procedures. OC4J can be downloaded from OTN
    , small footprint, easy to download and install and much easy to
    configure. You will know it yourself once you download it.
    Cheers
    --Rajesh                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Sending me round the bend, no mail in my iCloud inbox, it asks me for ios5 it is on the iPad, also got an account, I do not understand any computer stuff stmp etc so please do not be tetchy just simple help newbie here

    This pad is so stupid, iCloud iOS5, iTunes pallet IID etc etc, I have ios5, I have an iCloudd account it will not send or receive mails in iCloud, please
    Do not be tech here, I do not even understand stmp etc, why is it not getting mail in easy steps please.

    You should be able to chat with an agent via Contact Customer Care; click on the Still need help? button.

  • HELP NEWBIE Integrating CR into Visual Basic 2010 pro

    I am creating reports in CR for ms visual studio(VB) how do I do this I am lost. I do not understand how to have a menu written in vb. A menu with reports that a user can select which report to run. I have been tring to do this for weeks. I am using SQL which is on a MS SBS. Any help would be grateful.
    Thanks

    Hi William,
    Could you provide the version of CR and VS you are using?
    Also, have you designed the report? do the report work fine from CR designer?
    Designing Crystal reports from designer and viewing them from a .NET application are two different things. For a report to work fine from application, it is important that the report should work fine from designer. It is the CR designer where you could connect to the database and drop the DB fields on the report. Once the report is designed and works fine when refreshed then it can be viewed from a .NET application.
    To design a report,
    - start a new app in VS
    - add a new item as a Crystal Report. It will automatically launch the reportcreation wizard for you.
    Select the database and add the fields to the report.
    The simplest VB.NET application to view reports is using below procedure.
    - Start a new app in vosual studio.
    - Drag a Crystalreportviewer from toolbox and drop on the form.
    - Assign a reportsocurce as your report to the viewer and run the app.
    - reprot will prompt for the DB credentials.
    And then you could go on adding code to your app..
    See the CR.NET sample applications here: http://wiki.scn.sap.com/wiki/display/BOBJ/Crystal+Reports+for+.NET+SDK+Samples
    - Bhushan
    Senior Engineer
    SAP Active Global Support
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Getting started and moving ahead with Crystal Reports .NET applications.

  • How create this effect...please help newbie

    I saw this effect on the website template at templatemonster
    and was wondering if someone knows how to create this or has a
    tutorial how to do it
    you go here to preview
    templatemonster.com/website-templates/10795.html
    I like the way the blocks transition from one pic to another
    any help would be greatly appreciated
    thanks

    Wolf van Ween wrote:
    > You have two pictures on top of each other, then you
    mask off the top one with quadratic blocks, making that area of the
    underlying picture visible.
    Just as Wold says...
    You would be surprised how primitive are the methods behind
    some really spectacular effects.
    Just a bit of imagination and patiences, such masking
    consists of lots of layers and tweens,
    for many simply discouraging... tho once you do few, it
    become quite easy.
    Based on Wolf's explanation, made quick mock up of the
    masking for you:
    http://flashfugitive.com/stuff/slide_05a.swf
    d/l
    http://flashfugitive.com/stuff/slide_05a.zip
    Regards
    Urami
    Happy New Year guys - all the best there is in the 2006 :)
    <urami>
    http://www.Flashfugitive.com
    </urami>
    <web junk free>
    http://www.firefox.com
    </web junk free>

  • Help: newbie of iplanet clustering & loading balancing

    As l went through the sample app, "bank" coming along with iplanet. l have a few questions in mind. It is highly appreciated somebody can give a helping hand to me by answering below questions
    1) In ias-web.xml and web.xml, the app is set as "distributable" and session is synchronized by "dsync". Also, all servlets are set "sticky". My question is why the JSP don't need to be set as "sticky". If l have a web site made up of serveral ten of thousand of JSP pages, it will be a big trouble
    2) Let's say, if the sample include a stateful session bean, do l have to set that stateful session bean to "sticky". If so,
    does it mean the invocation from servlet to stateful session bean will take place in same JVM process.
    3) Is there any latency if session is synchronized by "dsync" process. If the application is set as "distributable" (support load-balancing), but the servlet is NOT set as sticky. Will it cause any trouble due to latency of synchronization of session among iplanet server
    regards
    Danny

    Hi
    Firstly, Thanks for your reply. it would very thankful if you can provide me more detailed information on below questions
    1) As a stateful session bean is set sticky. Does it mean all requests from same session will be directed from web-tier to the same jvm initializing that stateful session bean. Also, all invocation to entity bean/other sesson beans from that sticky stateful session bean will take place within same jvm as this stateful session bean is, am l correct ?
    2) Is there a latency for "dsync" to do replication of state of HTTPsession and stateful session bean ? If so, there is chance that state of HTTPSession / stateful session bean will be lost if the crash of jvm happen in-between the replication, am l correct ? Is there any way to avoid it ?
    regards
    Danny

  • Help newbie - adding facebook/twitter buttons to pages?

    Hiya,
    Haven't been on here for a while, but people were so kind and helpful last time I was struggling.
    I desperately want to add buttons on my webpages for things like facebook and twitter so people can like/share the pages. I've been to the social networks themselves to read instructions, as well as all kinds of websites that claim you can just cut and paste their button code into the html, but everything I try isn't working. I don't know whether it's just because GoLive! doesn't know what to make of their code or if it's something else. Problems range from extra bits of text appearing on the page to do with the little button thingy that shouldn't be visible but are, to buttons not working, to buttons appearing in odd places.
    Admittedly, I'm not very technical and don't know much about html, but have been following the instructions and cutting and pasting the html code generated by these button sites into the html source of the pages....but nothing works. Is it just me or is there a known, good way of creating working 'share' and 'like' buttons for adobe pages that I haven't been able to find yet.
    Would so appreciate any help.
    Thanks,
    Claire

    THanks M,
    I have managed to get a very simple 'like' button working for facebook, so should be alright for the minute, but I will probably need some more help soon with the more adventuros stuff. Thanks for replying x

  • Cant connect to database please help newbie here

    I am very new to oracle and have just installed oracle database 10g express beta. The problem is when I log into the homepage nothing happens. It just goes back to the log in screen again. I have tried using the wrong password and it gives me a error message. I have also gone through SQL and it says i'm connected.But I can't get the icons to come up after logging in. Any help would be greatly appreciated

    Welcome to Oracle.
    Similar problems to yours have been reported on the forum.
    The first seemed to be being caused by ZoneAlalrm - see Database home page will not load whilst ZoneAlarm Pro is running
    The second seemed to occur if the user was connected to their corporate network via VPN - see Database Home page / VPN's
    Let us know if either of these helped

  • HELP Newbie (can't configure network)

    hello, im new to arch...
    i was using ubuntu (fluxbox on top of minimal iso) then i downloaded arch and installed it with no problems
    but, wen i login first time and ping www.google.com it says unknown host.
    YES i have read begginers guide, and i know about rc.conf, but i dont realized how to configure network... in winxp and ubuntu it was automatically configured... i have dsl with automatic ip adress (im not really educated about this)
    this is what i got from my isp : IP 192.168.1.4, Subnet Mask 255.255.255.0, default getaway : 192.168.1.1, prefered dns server: 62.168.168.2, alternate dns server: 62.168.168.5.
    i use SiS ethernet driver, if that metters.
    so i wrote these numbers in rc.conf according to begginers wiki (i think), but still nothing.
    can anyone help me? how should i edit rc.conf?
    sorry for my english, im from georgia.. and thanx in advance...
    Last edited by alkali1471 (2008-03-15 20:09:24)

    alkali1471 wrote:thanks for quick reply, but ping still says unknown host
    and what means lo? maybe i should comment it? interface=(lo eth0) it says...
    where im mistaken?:(
    i forgot to put:
    interface=(lo eth0)
    don't comment it. you need that.
    unknown host is when domain.com isn't resolved. try ping an IP, google.com has 64.233.187.99
    maybe i'm not understanting your network. you have adsl or you have direct connection?try to explain how do you configure you internet connection under windows
    Last edited by wonder (2008-03-15 22:51:28)

  • Can someone help newbie to set up ftp on Mac OS X (10.4.7)?

    I'm completely new to Macs and need help setting up an ftp account when using Airport Express. I would really appreciate it if someone would be willing to walk me through it. Many thanks.
    Kathryn

    Well 2 things:
    1.) If youre using wireless then you almost have to be using a wireless router/firewall/base sation etc.. You need to go into that device's admin program and set up Port Forwarding.All traffic actually comes through this device first and is then routed to the computers attached to (wireless or wired). You can access this by using Applications/Utilities/Airport Admin Utility if its an apple airport base station, or by going to the devices ip address on the network if its a thrd party like Linksys or D-Link or what have you. This ip address is typically something like 192.168.1.1 or 192.168.168.1by default but you may have changed that during setup.Consult the documentation of your device for the username and pasword if you havent reset it yet. If you poke around you should see something about port forwarding... go in there and forward port 21 to your computer's local ip address (example: 192.168.1.2) .Sine most of these wont forward to a DNS name and since youre using wireless and will be loggin on and off alot i assume youll need to set up your powerbook to use a static ip address. go to System Preferences>Network>TCP/IP and choose either Static or Staic IP with DHCP. Enter the appropriate info which you can get from the Router Status page.
    2.) Makes sure youre not giving your froend your local ip address. Which will probably be the one "Sharing" tells you t o give out.YOu need to give im the public ip address which will NOT start with 192 or 127... YOu can get this address from the router status page as well.

Maybe you are looking for

  • How to configure domainValues file for BI apps?

    Hi Experts, I am configuring EAM analytics 7.9.6.4 with EBS R12. I am following http://docs.oracle.com/cd/E35287_01/bia.7964/e35272.pdf In Section 16.2.2 Domain Values and CSV Worksheet Files for Oracle Enterprise Asset Management Analytics with Orac

  • Can't log in to my iMac.

    I changed the name and password, came back sometime later and noticed the name wasn't changed and now neither passwords work. What do I do?

  • Passing Parameter to SQL-Query

    Hello , i have an SQL Query as Data Source of my Crystal Report . I d like to pass the parameter to my SQL-Query. Parameter ?city Query1 select Order ID, City,      -- How to pass my ?city here Amount from Orders, thanx ..

  • Windows error code 1114

    I am unable to access iTunes after a recent update.  There shows a runtime error, then asks me to download itunes.  I have tried to download itunes, but it does not owrk.  The erro code is 1114.

  • Redaction Question

    I have hilighted various portions of a document with Mark for Redaction tool.  The color I initially chose was yellow. I saved the document prior to applying the redactions.  I know want to change the color to red to indicate the redacted areas.  Is