N97 WiFi question what am i doing wrong ?

ok i got the phone the other day and i am using a few different access points like for example in my house in my work other restaurants and so on ... when i connect to a different one the main screen doesnt update and its looking for an old network even though i have connected to a new one cant it just look at the one i have connected insted it just disconnects me from the one i am on now and is sais WLAN already in use? am i doing something wrong when i am connecting 2 different networks or is the phone just lame???? and yes i have arranged priorities and what not .....

thw main screen will try to connect to the network which you set it to ( if you choose a specific network ). You should always set you widgets to connect to the default connection which will be the one you are currently connected too based on you manual connection or priority list connections

Similar Messages

  • I am trying to connect with a friend via FaceTime from my IPad to his IPhone  and it will not connect.  We are both on wifi.  What are we doing wrong?

    I am trying to connect with a friend via FaceTime from my IPad to his IPhone  and it will not connect.  We are both on wifi.  What are we doing wrong?

    Read this:
    There is a troubleshooting section at bottom.
    http://support.apple.com/kb/TS5419

  • My ipad2 I just got today can't seem to recognize the net. I do have the wifi turned on. What am I doing wrong?

    I just received my ipad2 today, and did all the sync routine.  The wifi is working, but I can't seem to access the net. I get an error message stating "Cannot open page, Safari cannot open the page because it is not connected to the Internet." What am I doing wrong?

    Tap Settings in the Home screen then tap General / Reset / Reset Network Settings.
    Then restart the iPad. Press and hold down the Sleep / Wake button until you see the red slider then swipe to the right to power off, then hold down the Sleep / Wake button until you see the Apple logo.
    If that didn't help, try the iPad Wi Fi help here.

  • I am unable to save my revised iTunes security question.  What am I doing wrong?

    I originally setup up the account for my daughters Ipod and now I don't remember the answers to the Security questions for Itunes.  I try to reset them and fill in new answers to new questions but everytime I do and click save, the screen appears to take my changes, but when I click a different category a window asks me if I would like to save changes or disregard changes I have made.  I click save and log out.  Then I open the App store on my Macbook pro, and attempt to make my 1st purchase, I am then asked to answer old security questions.  What am I doing wrong?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • What am I doing wrong with this filter (counter/frequency issue), probably another newb question.

    I extracted the part of my VI that applies here.  I have a 6602 DAQ board reading a counter for frequency, using a Cherry Corp proximity sensor.  Getting a lot of noise and errant ridiculously high readings.  Speed of shaft which it's measuring is currently 2400rpm with one pulse per revolution so 40hz. 
    Trying to use the express filter VI to clean up the signal and ignore anything over, say, 45hz and under 35hz.  No matter what setting I choose I continually get the  20020 error, Analysis:  The cut-off frequency, fc, must meet:  0 <= fc <= fs/2.  I know this relates to sample period somehow, but for the life of me I can't understand what I'm doing wrong. 
    I used this VI without filtering on bench tests with a hand-drill and got perfect output every time.  Now it's on the machine and being erratic.  Any help here will ease my stress level significantly, thanks.
    VI attached
    Still confused after 8 years.
    Attachments:
    RPM.vi ‏92 KB

    Hello Ralph,
    I'm not sure about mounting your sensor to your rig, but I can provide a couple ideas about the filtering. Depending on the type of noise, the digital filters on the PCI-6602 could help eliminate the behavior you are seeing. If the noise manifests as a "glitches" or a bouncing signal, you could use another counter with a minimum period to help eliminate the noise. This concept is discussed in greater detail in this KnowledgeBase. I noticed that you are using NI-DAQmx; the practical application of the digital filters on the PCI-6602 in NI-DAQmx is discussed in this KnowledgeBase. A more detailed description of the behavior of these filters is provided in the NI-DAQmx Help (Start>>All Programs>>National Instruments>>NI-DAQ) in the book entitled "Digital Filtering Considerations for TIO-Based Devices".
    I also wanted to comment on your original post and explain why you were receiving error -20020. For convenience, I have copied the text of the error code below.
    Error -20020 occurred at an unidentified location
    Possible reason(s):
    Analysis:  The cut-off frequency, fc, must meet:  0 <= fc <= fs/2.
    I think you may have misunderstood exactly what the Filter express VI does. The Filter express VI takes a series of values in a waveform and performs filtering on those signals. So, it will look at a waveform made up of X and Y values and apply the defined filter to this waveform. Specifically in your application, the cut-off frequency (fc) is the Upper Cut-Off level that you specified in the Filter express VI; any frequency components of the waveform outside of the range you have defined will be filtered. The fs is the sample rate based on the data that you wire to the Signal input of the Filter express VI. In your VI, this data is coming from the DAQ Assistant. So, fs will be the sample rate of the DAQ Assistant and is associated with the rate at which points are acquired. The sample rate does NOT relate to the bandwidth of the signal, except that the Nyquist theorem tells us that the sample rate must be at least twice the signal bandwidth in order to determine periodicity of the signal. So, in this case, the sample rate of the DAQ Assistant would need to be at least double the high cut-off frequency.
    However, you are performing a frequency measurement using a counter. I think this is where the confusion comes in. For the frequency measurement using a counter, the DAQ Assistant returns a decimal value which represents the rate of the pulse train being measured by the counter. It does not return the actual waveform that is being read by the counter. It is this waveform that would be band-pass filtered to eliminate frequency content outside of the filter's bandwidth. Instead of the Filter express VI, I would recommend that you simply discard values that are outside the range you specify. I have modified the code you posted earlier to perform this operation. The image below shows the changes that I made; rather than using the Filter express VI, I simply compare the frequency to the "Low Threshold" and "High Threshold". I use a Case structure to display the value on if it is within the limits. Otherwise, I display a "NaN" value. I have also attached the modified VI to this post.
    Message Edited by Matt A on 09-04-2007 07:58 PM
    Matt Anderson
    Hardware Services Marketing Manager
    National Instruments
    Attachments:
    RPM (Modified).JPG ‏17 KB
    RPM (modified).vi ‏72 KB

  • I'm trying to hookup my new AirPort Extreme with my net gear 7550 router/modem from Frontier. I'm not getting a wifi signal from the airport. What am I doing wrong?

    What am I doing wrong?

    I'm trying to use AirPort Untility to configure the old APExtreme to extend the network, but it won't let me.
    "Extend" is only used if the two AirPort Extremes are connecting using wireless only.
    "Create" is the correct setting to use since the AirPort Exremes are connecting using Ethernet.
    Configure the second AirPort Extreme to create a wireless network using the exact same wireless network name, same security setttings and same wireless password as the "main" AirPort Extreme and make sure that you are choosing the Bridge Mode option for the second AirPort Extreme before clicking Update to save the settings.
    When you do this, everything will act like one big wireless network and computers will automatically pick up a signal from the AirPort with the strongest signal based on their location.
    This Apple document more details on this....which is called a Roaming Network.
    Roaming network

  • Real newbie-I can hear my loops in my library, but when I drag them to a track, there is no audio.  What am I doing wrong?

    Real newbie question-I can hear the loops in my library, but when I drag them to a track, there is no audio when I playback or record.  What am I doing wrong?

    You probably put Midi loops (green) on audio tracks, and audio loops (blue) on Midi tracks.
    That won´t play.
    JanD

  • I am using Firefox 3.6.13 and have installed Windows Media Player 1.0.0.8 for Firefox. However, if I attempt to open a file with a .wmv extension it appears to function properly, except, that I cannot "play" the file. What am I doing wrong?

    # Question
    I am using Firefox 3.6.13 and have installed Windows Media Player 1.0.0.8 for Firefox. However, if I attempt to open a file with a .wmv extension it appears to function properly, except, that I cannot "play" the file. What am I doing wrong?

    You probably have not seen anyone reporting the exact same problem as you. All three crash reports have the same crash signature and as currently ranked 67 it is not the commonest of reasons for a crash.
    I hope you enter your email contact information when reporting crashes. I note you see this crash when using videos, others may possibly see this crash in other circumstances.
    You have already tried the obvious, attempts at a fix so it is now down to wait and see, maybe developers working on the bug will report something or fix it.
    Did you try my suggestion of installing portable ESR ?
    For forum cross referencing purposes
    * Crash Reports for Crash IDs <br />bp-71697f5d-41d4-48ae-9db9-3e6302130607<br /> bp-6e1347bc-153f-433a-9c35-a5f022130607<br /> bp-92a533a2-9e09-4c1e-8df7-deb4c2130607
    *(all three) Crash Signature: EnumSoftwareMFTs(_GUID const&, unsigned int, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, __MIDL___MIDL_itf_mfobjects_0000_0006_0003 const*, IMFActivate***, unsigned int*)
    * Related bug 858667 NEW crash in mozilla::wmf::MFTEnumEx @ EnumSoftwareMFTs
    *I note this was first seen in Fx21 and is 100% Windows 7
    <br />

  • Using Photoshop online, when I try to open a file in RAW filter the page opens in bright red and won't allow me to acess the filter.  What am I doing wrong?

    Using Photoshop online, when I try to open a file in RAW filter the page opens in bright red and won't allow me to acess the filter.  What am I doing wrong?

    Photoshoponline has a link you can try which web browser are you using?  If may be your browser or that they do not support your camera's raw format.  I received an error tht states try layer.  You should ask them your question Adobe Photoshop is not the problem its their Web application use their  link Pixlr.com Contact Us

  • Can't get iTunes to sync from hp laptop to iPod shuffle. What am I doing wrong?

    I have iTunes on an HP laptop and I can't get songs moved from iTunes to the shuffle. If I open the shuffle on the laptop, it seems the songs are on it, but if I go to listen to the new music, they're not there. Can't figure out what I'm doing wrong. Help.

        Hey there web300!
    You are looking in the right place for all that information! You do need to be completely logged on (at the top right) in order to see all the values.
    If you are not getting the best signal, you can also change the security type under Wifi settings and Security. Various types can work better with certain computers. Do not make it an open network however.
    What zip code are you in that this is happening? Is it only indoors? Let us know and we can take a look on the network side.
    Thanks!
    MichelleG_VZW
    Please follow us on Twitter @vzwsupport

  • After my successful download of iTunes 64 bit,I continue to get an error message that it's missing Apple Application Support. What am I doing wrong?

    After my successful download of iTunes 64 bit,I continue to get an error message that it's missing Apple Application Support. What am I doing wrong? I've installed it and uninstalled it several times already, but each time I get that error message...

    I've been getting timed out for 2 days now, what finally worked for me was not plugging the phone into the computer and just doing the update through my wifi, worked perfectly, took less than 15 minutes

  • I have an I Pod Nano and would get messages to update my software.   In my I Tunes I have 1,900 songs but after the updates it will only sync 933 songs.  My current software version is 1.0.2.  What am I doing wrong or is it something in the software.  I h

    I have an I Pod Nano and would get messages to update my software.  In my I Tunes I have 1,900 songs but after the updates it will only sync 933 songs.  My current software version is 1.0.2.  What am I doing wrong or is it something in the software.  I have not done anything different in my I Tunes and all songs are checked.  Could someone please help or advise me what to do?

    Thank you Gail, but not to be ignorant but can I send you a print screen on what I am looking at.  I will try am explain what I see: I hooked up my I Pod Clicked on Music checked Sync Music 1909 Songs select Playlist, Artists, albums, and genres checked Include music videos Playlists checked 50's Music checked 70's Music checked 80's Music checked 90's Music checked 2000 Music checked 2010 Music   These are songs that I downloaded onto my I Tunes.  I bought me a new computer but when my data was transferred from old computer to new computer a lot of my songs on my hard drive were lost, but they were able to save all my songs on I tunes.  My I Pod is still connected Clicked on "On this Ipod" Music 938  Songs 2.2 days So my question to you is if I have 1,909 songs on my ITunes how come only 938 transferred to my IPod.  I checked my IPod and it shows only 938 songs transferred.  This did not happen before until I Tunes asked me if I wanted to update to a newer version.  Last month I did have all my 1,909 songs on my I Pod.  I hope this explains what I am asking

  • Even though I have Adobe Reader, I can't open my bank stmts. like I used to. What am I doing wrong??

    I have been opening my bankstatements online for a long, long, time.  All of a sudden, I can't get them to open.  All I get is a blank screen with a tiny "x" in the upper left-hand corner.  I'm pretty new to computers, so this may be a stupid question, but what am I doing wrong??

    I am using Windows 7, IE XI (?), and Adobe reader XI.  However, just to let you know, the problem has been solved almost by accident.  I happened to mention the problem to a friend who had had a similar problem and been told to us a different browser.  She did and her problem was solved.  I switched to Google Chrome, and my problem seems to be gone as well.  Thanks for your time.

  • HT2486 birthday are not saving in my contacts? What am I doing wrong.  I always have put in birthday before with no problems

    Birthday are not saving in some of my contacts? What am I doing wrong.  I always have put in birthday before with no problems.  Some contacts it works and others do not?  help me.

    Arnis and Jeff,
    Thank you both very much for your assistance.  I was able to figure out why the Adobe Application Manager kept failing on installing the patches.  Idiot me didn't unzip them first.  Once I unzipped the patch files, the installer worked fine.  Both patches are now successfully installed; my FM version is now 12.0.2..
    To answer some of your questions:
    Yes, I have administrator privileges on my PC.
    Yes, I had all of the files in the book opened when I generated and/or updated the LOR file.  So that was not the issue.
    With the patches installed, I opened a book and all of its files.  I updated the LOR and all works fine – it gives me all of the Imported Graphic references. So there must have been an issue with that release of FM12 (12.0.0.329), which was fixed with the patches.
    Again, thank you both for your help!
    Best regards,
    Beverly

  • Not quite sure what I'm doing wrong.

    As the topic states, not quite sure what I'm doing wrong here. I'm doing a problem for a class and maybe you guys could help me out, or point me in the right direction. The question states:
    "Write a program that reads in investment amount, annual interest rate, and number of years, and displays the future investment value using the following formula: "
    futureInvestmentValue = investmentAmount x (1 + monthlyInterestRate)numberOfYears*12
    (numberOfYears is to the power)
    import javax.swing.JOptionPane;
    public class Investment {
         public static void main(String[] args) {
                double investmentAmount;
                double interestRate;
                double investmentValue;
              int years;
              String stringInvestmentAmount = JOptionPane("Please Enter An Investment Amount");
                   investmentAmount = Double.parseDouble( stringIvestmentAmount );
              String stringIntrestRate = JOptionPane("Please Enter An Intrest Rate In Decimal Form");
                   intrestRate = Double.parseDouble( stringIntrestRate );
              String stringYears = JOptionPane("Please Enter A Number Of Years");
                   years = Int.parseInteger( stringYears );
              interestRate = 1 + interestRate / 12; //Monthly interest, I believe this is how you calculate it.
              investmentValue = investmentAmount * Math.pow(interestRate, years * 12); //Now the exponent should be the number of months.
              System.out.println("Your investment value is " + investmentValue + ".");
    }My Errors are:
    C:\Java\Investment.java:15: cannot find symbol
    symbol : method JOptionPane(java.lang.String)
    location: class Investment
    String stringInvestmentAmount = JOptionPane("Please Enter An Investment Amount");
    ^
    C:\Java\Investment.java:16: cannot find symbol
    symbol : variable stringIvestmentAmount
    location: class Investment
         investmentAmount = Double.parseDouble( stringIvestmentAmount );
         ^
    C:\Java\Investment.java:18: cannot find symbol
    symbol : method JOptionPane(java.lang.String)
    location: class Investment
    String stringIntrestRate = JOptionPane("Please Enter An Intrest Rate In Decimal Form");
    ^
    C:\Java\Investment.java:19: cannot find symbol
    symbol : variable intrestRate
    location: class Investment
         intrestRate = Double.parseDouble( stringIntrestRate );
         ^
    C:\Java\Investment.java:21: cannot find symbol
    symbol : method JOptionPane(java.lang.String)
    location: class Investment
    String stringYears = JOptionPane("Please Enter A Number Of Years");
    ^
    C:\Java\Investment.java:22: cannot find symbol
    symbol : variable Int
    location: class Investment
         years = Int.parseInteger( stringYears );
         ^
    6 errors
    Tool completed with exit code 1
    Edited by: Close on Oct 23, 2007 4:12 PM

    String stringInvestmentAmount = JOptionPane("Please Enter An Investment Amount");What is this line trying to do? If you are trying to create a JOptionPane object and pass that String to the constructor then you need the new keyword. If you are trying to call a method of the JOptionPane class then it would be a good idea to include the method name. I sure you are trrying to do the second option.
    Once you fix that, it is likely the other errors will disappear. Or different ones will emerge.

Maybe you are looking for

  • How to get the values from profileFormHandler

    Hi, here i have problem with how to get the values after setting the values to that , how i have to call repository, what repository i've to call?

  • Backups missing

    Hi first post I have a white macbook 2008 model, running leopard. ive been making backups via time machine for a while now, backing up all my old photos and the such. my brother recently got a macbook pro 2010 model, running snow leopard. i let him u

  • Iphone3.0 upgrade and safari4.0

    Hi, I have been using the 2.2 version on my iphone with no problems for using internet and logging in to my home security system. However, when I upgraded to 3.0 the problems started... I cannot use my iphone to access my home security network, the s

  • Control indicators for controlling area 1573 do not exist

    Hello All Control indicators for controlling area 1573 do not exist Message no. KI102 Diagnosis No control indicators exist in fiscal year 2009 for controlling area 1573. System Response No further processing is possible without valid control indicat

  • How can I use MD5 digest in Java?

    Hello mates, I tried to use MessageDigest class to do a md5 digest to a String: MessageDigest md = MessageDigest.getInstance("MD5"); byte toChapter1; byte toChapter2; try {      md.update(toChapter1);      MessageDigest tc1 = md.clone();      byte[]