Help with connecting Nintendo dsi to internet

I really need some help with connecting my daughters nintendo dsi to the internet, I have tried everything but just can't get it to work. Would really appreciate any advice....

Hi sandy and welcome
Have a read http://bt.custhelp.com/app/answers/detail/a_id/11263/c/346%2C502%2C504/kw/nintendo%20ds/r_id/125731
Note: The Nintendo DS only supports either no security or WEP security!!
-+-No longer a forum member-+-

Similar Messages

  • Help with connection flash builder 4.5 to remote php database

    help with connection flash builder 4.5 to remote php database

    Fatal error: require_once() [function.require]: Failed opening required 'Zend/Loader/Autoloader.php' (include_path='.;C:\php5\pear;D:/webserver/apache2/htdocs/ZendFramework/library') in D:\webserver\apache2\htdocs\giga\first-debug\gateway.php on line 27

  • Help with connecting a G4 with mac 9.2.2 to the internet?

    I am new to mac, and I have a G4 that runs on Mac 9.2.2. I plan on upgrading to 10.4.6 (tiger), but I am unable to get it to connect to the internet. Can anyone help?

    What is the specific model of your Mac? This can make a difference in some things.
    You can connect via a built-in 56K modem if it has one, but it will be very slow. Much better would be to connect via broadband (such as DSL or Cable) using an external modem, either hard-wired via ethernet (usual) or via wireless if available on the machine.
    Connecting via hard-wired ethernet is easy. You would need to acquire a modem that is acceptable to your ISP, or lease one from them if they make that option available. Either way, get one that connects via ethernet rather than via USB - USB on a G4 is just too slow for this purpose.
    The setup for ethernet is simple in OS 9:
    In the TCP/IP control panel (Apple menu > Control Panels > TCP/IP), set
         Connect via     -to-     Ethernet
         Configure         -to-     Using DHCP Server
    And that's usually all that is needed.
    Connecting via wireless, Airport in Apple's lexicon, is similar to ethernet, as far as setting up the software goes. In order to use wireless, the G4 will need to have an Airport card installed, or you can use a local transmitter which connects via ethernet to the G4. The modem would need to be connected to a receiver (base station) in order to complete the communication path with the Mac.
    If you choose to go this path, someone else would need to assist you in setting up the wireless components - I've never done that.
    However, if you do not now have wireless internet available, and this is going to be the only machine needing to connect to the internet, it would be much cheaper and easier to just connect the modem via wired ethernet directly to the Mac.
    In either case, you will also need to set up your email account. Your email service provider should provide you with the info you need to do that - account type and password, etc. This info is entered into the Internet control panel, Email tab.
    If I have misunderstood and you want to connect wirelessly directly to your ISP using something like those small transceiver type modems that many folk use with laptops, that's something else, and someone else would need to help with that.

  • Could you please help me connect my Telstra usb internet stick to my new Macbook Air? This is my first Mac and I am really struggling!

    Hi,
    I just brought my first Mac at Christmas and I am trying to connect my Telstra usb internet stick to it.
    The Mac recognises the internet stick and the widget pops up for the stcik but then asks me to register the internet stick with this computer. I am provided with a a description on how to do this (go to Open Network Preferences > a new pop up will say New System/internet found etc), but the "new system/internet pop up never appears, so I can click on the "directIP" showing on the left hand sinde of the Open Network Preferences windon, but then I dont know where to go from there.
    Could anyone help me with a step by step (aka lamens description) of how to fix this?
    Thank you very much!

    Hey there, my experience with the Telstra USB internet dongles is a little different, don't think you need to fuss with settings and all that, it's basically designed to plug and play almost.
    When you plug it in, it should prompt you to install the Telstra utility. Have you done this? You will know because in your 'Applications' you will see a Telstra icon. You need to use this utility to connecto the internet.
    So, if you have this, simply double click it and when the utility opens, click 'Connect' and as long as the dongle can detect the network it will connect. There should not be any other configuration required.
    If that utility is not there, then install it. When you plug in the dongle, you will see it appear as a drive, should be able to just double click it and then go through the installation process.
    Failing all that, head into a telstra store and the guys there will sort it out for you quite quickly.

  • Need help with connecting file inputs to arrays

    In this assignment I have a program that will do the following: display a list of names inputed by the user in reverse order, display any names that begin with M or m, and display any names with 5 or more letters. This is all done with arrays.
    That was the fun part. The next part requires me to take the names from a Notepad file, them through the arrays and then output them to a second Notepad file.
    Here is the original program: (view in full screen so that the code doesn't get jumbled)
    import java.io.*;       //Imports the Java library
    class progB                    //Defines class
        public static void main (String[] arguments) throws IOException
            BufferedReader keyboard;                                  //<-
            InputStreamReader reader;                                 //  Allows the program to
            reader = new InputStreamReader (System.in);               //  read the the keyboard
            keyboard = new BufferedReader (reader);                  //<-
            String name;                 //Assigns the name variable which will be parsed into...
            int newnames;               //...the integer variable for the amount of names.
            int order = 0;              //The integer variable that will be used to set the array size
            String[] array;             //Dynamic array (empty)
            System.out.println (" How many names do you want to input?");   //This will get the number that will later define the array
            name = keyboard.readLine ();
            newnames = Integer.parseInt (name);                                         // Converts the String into the Integer variable
            array = new String [newnames];                                               //This defines the size of the array
            DataInput Imp = new DataInputStream (System.in);       //Allows data to be input into the array
            String temp;                                       
            int length;                                                                  //Defines the length of the array for a loop later on
                for (order = 0 ; order < newnames ; order++)                                //<-
                {                                                                           //  Takes the inputed names and
                    System.out.println (" Please input name ");                            //  gives them a number according to
                    temp = keyboard.readLine ();                                           //  the order they were inputed in
                    array [order] = temp;                                                  //<-
                for (order = newnames - 1 ; order >= 0 ; order--)                                //<-
                {                                                                                //  Outputs the names in the reverse 
                    System.out.print (" \n ");                                                   //  order that they were inputed
                    System.out.println (" Name " + order + " is " + array [order]);             //<-
                for (order = 0 ; order < newnames ; order++)                                  //<-
                    if (array [order].startsWith ("M") || array [order].startsWith ("m"))     //  Finds and outputs any and all
                    {                                                                         //  names that begin with M or m
                        System.out.print (" \n ");                                            //
                        System.out.println (array [order] + (" starts with M or m"));         //
                    }                                                                         //<-
                for (order = 0 ; order < newnames ; order++)                                            //<-
                    length = array [order].length ();                                                   //
                    if (length >= 5)                                                                    //  Finds and outputs names
                    {                                                                                  //  with 5 or more letters
                        System.out.print (" \n ");                                                      //
                        System.out.println ("Name " + array [order] + " have 5 or more letters ");      //<-
    }The notepad file contains the following names:
    jim
    laruie
    tim
    timothy
    manny
    joseph
    matty
    amanda
    I have tried various methods but the one thing that really gets me is the fact that i can't find a way to connect the names to the arrays. Opening the file with FileInputStream is easy enough but using the names and then outputing them is quite hard. (unless i'm thinking too hard and there really is a simple method)

    By "connect", do you just mean you want to put the names into an array?
    array[0] = "jim"
    array[1] = "laruie"
    and so on?
    That shouldn't be difficult at all, provided you know how to open a file for reading, and how to read a line of text from it. You can just read the line of text, put it in the array position you want, until the file is exhausted. Then open a file for writing, loop through the array, and write a line.
    What part of all that do you need help with?

  • Help with connecting to NIST NTP server on port 123

    I can get NIST time in Daytime format using the rt_nist_date_time.llb example posted on ni.com, but I cannot connect to NIST NTP format time data using port 123.  I freely admit to being over my head with this stuff, and have spent much of this Thanksgiving holiday reading about UDP and TCP.
    The attached vi summarizes what I've tried so far.  The UDP case is what I thought would work, but I can't come up with a network address that the UDP-open vi likes.  Can anyone out there help this n00b tell the time?
    The attached file is supposed to be in 8.0 format, although I'm working in 9.0
    Here is a link discussing the time formats: http://tf.nist.gov/service/its.htm 
    Jeff 
    Solved!
    Go to Solution.
    Attachments:
    UDP.vi ‏17 KB

    jstevens wrote:
    THANK YOU!!!  I don't think I ever would have come up with connecting the web address to a Read or Write UDP rather than the Open UDP block.  Not to mention starting by opening port zero.
    Unlike TCP, UDP is a connectionless protocol. Here's a quick explanation in different words.
    A udp packet travels from a [sourceIP, sourcePort] to a [DestinationIP, destinationPort].
    UDP open basically reserves a local port used for sending (soucePort) and receiving (incoming packet with that same destinationPort). Since some local ports are always in use, you would generate an error if you would accidentally pick a used port. Picking zero is useful for requests (as in this case!), because the OS will pick an unused ephemeral port. The actual source port number does not matter because the NTP server will just send the reply packet back to whatever port it came from. (If you would write your own NTP server in LabVIEW, you would of course need to set the local port to 123, and would get a conflict if another NTP server is already running on your rig). Writing an NTP server in LabVIEW would be a trivial modification to the current code, try it! . Simply listen for packets on port 123, form a response packet based on the timestamp, and send it to whatever IP/Port it came from (that info is available from udp read) and then go back to listen for new requests.).
    UDP write sends a packet to the server using the above opened local port as source port. You can use the same connectionID to write to several other servers and ports, because UDP is connectionless. (TCP is connection based, so a TCP connection involves a defined source/destination pair)
    UDP read listens for incoming packets from all over the world at that same local port. It is very unlikely, but theoretically possible that other UDP packets will arrive at that same port, so you could even filter to make sure to read incoming packets until they match the port and IP of the original request. The current code is somewhat vulnerable to a DOS (denial of service) attack for example as follows: Imagine the guy in the next cubicle had means of sniffing your network traffic. He could write a small program that looks for your NTP requests and then immediately starts flooding your IP with meaningless UDP packets to the sourcePort you just used. The current program only reads one packet and thus will never see the return packet from the NTP server.
    UDP close frees up the local port and the computer is now no longer listening for packets on that port. Of course you could keep the port open for the duration of the program, especially if you intend to send UDP request once in a while during execution.
    Makes sense?
    LabVIEW Champion . Do more with less code and in less time .

  • I have problem with connect me to the internet

    Hi, I have my apple TV and always I had problem to connect me to the internet I don't know why because I have my Mac, and Iphone that don't have any problem with internet and is the same server.

    Ccan you elaborate on the issue?

  • Help with connecting

    i have recently bought a power mac g5, and wish to connect it to the internet through airport wireless..i have a belkin wireless router that i use to connect wirelessly to other pc's within my house..i am wondering what is best to do as i want to still be able to connect the pc's through a wireless network, and i want to buy something to enable me to connect my mac..whats best to buy? will just a airport card do, or do i need an airport base too? if i buy just a card will my connection be poor when used with the belkin? if i buy an airport base and card will my pc's still connect with usb belkin wireless sticks?
    thanks

    thr33designs, Welcome to the discussion area!
    will just a airport card do, or do i need an airport base too?
    If your Belkin is based on 802.11b/g then you only need to add wireless to your G5. Which Power Mac G5 to you have? The early Power Mac G5s use the AirPort Extreme card. If you have one of the latest ones, the AirPort Extreme card will not work. See KB 302721, Power Mac G5 (Late 2005) AirPort and Bluetooth options.
    if i buy just a card will my connection be poor when used with the belkin?
    Depends on distance from router, RF interference, etc. But those are the same factors that affect your PC wireless connection.

  • Help with connecting iPad 2 to Motif xs keyboard using GarageBand.?

    I have an iPad 2. I recently bought the iPad camera connection kit from amazon because I heard you can connect your iPad to a music keyboard with GarageBand. I have a Yamaha motif xs 8. When I connect my keyboard with a midi USB to the iPad.. Nothing happens. Can anybody help with this, and am I missing something in order to make this work???

    It worked for me no problem but I'm using an ES Rack and the dude on the video I think was using an ES. It maybe the XS is wired differently. Your best option is still getting a piece like IK Multimedia's iRig Midi. It connects from the iPad dock to actual midi cables and is way more flexible if your using multiple devices.

  • Help with Connecting New Computer w/ WRT110

    My sister just got a new laptop and has the WRT110.  My brother in law passed away 3 weeks ago and he had the security passcodes.  I just called Linksys to get help with it and their warrenty is up and wanted to charge us $30.  Money is tight right now.  Is there anyone that can help us with this issue?
    Thanks so much

    Open an Internet Explorer browser page on your wired computer(desktop).In the address bar type - 192.168.1.1 and press Enter...Leave Username blank & in Password use admin in lower case...
    Click on the Wireless tab..under Wireless tab,click on the subtab Wireless Security...Now,check the Security/Network Key.If you are using WEP Security then,use Key1 as the Security/Network Key.

  • MSI P67A-C45 (B3) Newb needs Help with connections..

    Hi all..
    First time posting here, but have been in the shadows for quite a while..   
    Anyway, i decided to finally take the plunge, and build my own PC, and now i'm beginning to hit a few bumps.
    I have a couple of questions that i would like some help with, if possible to reassure myself i may be in the right direction..
    I bought THIS PSU and was hoping someone could tell me where the Blue connectors (one labelled CP and one labelled U1) Connect to?
    Is it into JPWR2? And does it/do they only connect in the correct way? (Do i remove the plastic cap and attach both?
    and i bought THIS VIDEO/GRAPHICS CARD and i'm guessing the RED "PCI express" and "SLI ready" connect to that somehow (Haven't opened box yet for card)
    Again, wondering is there a certain way for them to connect.
    Also, from my chassis, the "AC '97" and "HDA" connectors go to JAUD (I guess), does it matter which one? (I currently have "HDA" connected)
    I have i5 2500k already on board. (If that makes a difference).

    Quote from: Ben_Cartwright on 26-May-11, 22:05:35
    Do the Audio plugs go into JAUD? and does it matter which one?
    Yep, connect the front panel audio to the JAUD. If you need the pin layout, it says in the manual. I would say the HDA connector is the one to connect.
    Quote from: Ben_Cartwright on 26-May-11, 22:05:35
    Any recommendations for testing it all, before i plug it in, and press the power?
    Should i (Can i) test individual parts first?
    Thanks again.
    Check all power connections, seating of the RAM and add-on cards, check the HSF is plugged into the fan header, and obvious things like that.
    As for testing, enter the BIOS and make sure the CPU isn't running too hot. Set up the RAM with the required timings and voltage, and test with >>Memtest86<< for several hours. No point starting the Windows installation if say your RAM has errors, since it will corrupt files during the install, if it installs at all.

  • Help with Connection Settings for Blu ray-to-Airport Express-to-TC?

    I'm trying to use the network capability of my Sony Blu ray player and having no luck. I have the Blu ray connected via ethernet cable to the Airport Express, which in turn is connected wirelessly to my Time Capsule. The problem I'm having is horrendous because I'm so lame and no amount of forum or internet searching has helped.
    The Blu ray network settings wants the following information:
    IP Address
    Subnet Mask
    Default Gateway
    DNS Server (Primary)
    DNS Server (Secondary)
    Do I get these settings from System Preferences>Network>AirPort>Advanced or do I get them from either the Airport Express or Time Capsule using AirPort Utility?
    I tried giving the Blu ray player a static IP Address in Time Capsule using DHCP Reservations and the Blu ray's MAC Address, but that's not working either. Between the AirPort Express, Time Capsule, cable modem, and MacBook Air there are numbers everywhere and I just don't which set to use.

    bluegrsss wrote:
    I have tried most of the suggestions on these forums to get my Samsung connected to the airport express network but so far no luck. Anybody have success out there with step by step suggestions?
    Are you trying to connect it to your AirPort Express wirelessly? (That's probably the case if your AirPort Express is your only Wi-Fi device, as its Ethernet port would be connected to your broadband modem.)
    Is your AirPort Express "N"-capable? What type of encryption are you using on your network?
    Have you installed the "supplied Wireless LAN Adapter"?
    This manual
    http://www.samsung.com/us/consumer/tv-video/home-theater/home-theater-systems/HT -BD3252T/XAA/index.idx?pagetype=prd_detail&tab=support
    seems to have useful advice, particular starting on page 54.

  • Need help with connecting laptop

    Hi there,
      I looked through the boards and found some messages that kind of fit to my problem, but not completely so here goes. 
    I have a gateway desktop(windows xp) connected to dsl (charter) and a laptop(gateway solo with windows xp) that I am trying to connect through a wireless router (Linksys wrt54g). 
    When I connect the wireless router to my laptop it says it is connected, but I cannot get a webpage to appear and once my router is connected I cannot use my desktop online. 
    I am sure there is just some configurations that need done, but I'm not that familiar with alot of the comuter lingo in order to figure this one out on my own.  I mainly use the desktop, but I would like to configure the laptop so I can use it online when needed.  Help and keep it simple please...
    Another question...do I need to use the wireless router or can I somehow connect my laptop through my desktop or just through my dsl connection?
    Thanks, Deanna

    Connect the Modem to the Internet Port on the Router.
    Then , Connect the Computer using a different
    Ethernet Cable to Port 1 or Port 2 on the Router.
    Now, Press the Reset Button on the rear panel of the Router
    for 12 Seconds. Then, Release the Reset Button,
    Unplug the Power Adapter to the Router. After 10 Seconds,
    Unplug the Power Adapter to the Modem. Then Wait for
    30 Seconds, Re-connect the Modem, and once the Lights are
    up on the Modem, Re-connect the Linksys Router.
    If yes, Open a new Internet Explorer
    Page, and in the address bar, type http://192.168.1.1, press
    return, And when asked for Username and Password,
    Leave the Username blank and in the Password field,
    type admin . This will help you access the Router's
    Console.
    In the Router's Setup Page, just below Setup Tab,
    in the blue line, you could an option " MAC Address Clone "
    Click on that, Enable it, Save the Settings
    Below the Setup Tab of the Router's Console,
    Change the MTU from "AUTO" to "MANUAL" , and
    Set the Size to 1400, Save the Settings,
    Powercycle the Modem and the Router.
    Check the Connections.
    If you are able to go Online when hard wired to the Router.
    Then make your computer wireless and verify . . .

  • 2nd hand ipod please help with connection

    Hi there
    I have purchased a 2nd hand ipod mini. I have not had one before so i dont know the first thing about them. I have downloaded Itunes, but when I try to connect the lead to usb port my internet connection goes and I cant do anything with it. The message comes up please check your settings, but I dont know what I should be doing.
    Please help

    see if this helps
    http://docs.info.apple.com/article.html?artnum=304468

  • Please help with connection problem!

    Hi people,
    I am trying to use Siemens Speedstream 4200 modem to connect to the internet using its ethernet port. It is connected via USB to my wife's HP Pavillion DV9000 laptop (Win XP)and works fine with that. Almost all hardware in Brazil where I live does not support mac, so I'm not sure if the modem is made only for PC. I imagine that's unlikely. I have tried using both a simple direct ethernet connection to my mac as well as via my airport base station (which I initialised) but to no avail.
    My airport is connected and has the IP address 10.0.1.2. I have also checked 'set serice order' to make sure the correct method of connection is at the top of the list. Do I need to find out some of the PC's network info to apply to my mac's setup?
    Please, any help most appreciated as I need to connect for my work.
    Thanks! Ben

    1st the technology is the same worldwide, and it is not restricted to Mac only or Pc only the technology works on all compuuters irreguardless of the manufacture.
    Turn off the Modem you are using and the same with the Airport Base.
    Plug the ethernet into the Speedstreme Modem and into the Airport Router start the Modem first and wait a minute and then do the same to the Airport Base.
    If your wifes PC is wireless it should connect as well as the Mac.
    Get the Mac working first. The Pc should connect as well as the Mac either way with Ethernet or Wireless, if she has a wireless card in her's.
    Don't be afraid to consult the paperwork that came with the Airport, or Airport Extreme Base.

Maybe you are looking for

  • Open browser window behavior in Mac not working right

    I am simply selecting my text in my html document and then selecting "Open Browser Window" from the Behaviors panel.  I then put in the info for the file I want it to open along with the size, etc... When I test it in the browser (Safari) the link wo

  • Insert Images in a report

    Hi, I have a question: I have an Oracle table with an image field, when I build a report Portlet in tabular or in form mode, it appears as a link and if I want to view it I have to click on,so the image is displayed in another window. Is there a way

  • Can I use more than one USB 6008 in the same program?

    I am working on a project that may require up to six USB-6008 modules.  Before I purchase more I need to know if I can use all six at a time in the same Lab View program.  Can anyone help? Solved! Go to Solution.

  • How to stop insert of new row in tabular form if it's also being deleted

    Suppose you have a tabular form, and one of the fields is a not-null column. A user checks a button to "add additional row", which adds a new row to the form, defaulting that not-null column to null. Assume it's a name or something, so there is no re

  • How do it get the phone back on?

    My phone was low on charge but not on red.  I put it on to charge and a few minutes looked at the phone and it had gone dead. Now it won't switch back on.  Any ideas  what i can do to get my phone back.  I've only had this phone a couple of weeks?