How do I add my Ipad to my homegroup using WiFi ?

Synced my new ipad to itunes using the cable supplied. Also linked the device up to my existing wifi router with no problems and can surf the net and e-mail OK! Wanted to use the homesharing option to acess my itunes library on my desktop without transferring it all to my Ipad. However when I tried to add the pad as a wifi device to my home network my PC cannot find it. Am I missing a step here? I am running w7 home premium. Tried turning blutooth visabiliy on to no avail.

Ok I am going to need to remember to search communities better before I ask. Found the link_Easy!!
https://supportprofile.apple.com/MySupportProfile.do

Similar Messages

  • HT1937 how i can add the ipad in my acount using the s.n. only

    how i can add the ipad to my acount without connecting it to the pc only using the serial number

    Sorry. The question doesn't make sense.

  • How do I add multiple iPads to my Apple ID

    How do I add multiple ipads to my Apple ID

    Should just plug it into iTunes and go. You'll just likely need to give each one a different name. That's what i did when I added my iPad to my iTouch on iTunes.
    When you plug them into the computer, give each  a different name and choose to either make them clones of each other (back up XXXX profile onto this iPad) or set each up as a new iPad.

  • How do i add an ipad to my share everything plan?

    how do i add an ipad to my share everything plan?

    A. Has to be vzw branded iPad
    B. Do you have an extra line your not useing?
    C. Add a line

  • How do I add an ipad to my itunes account which was previously associated with another account and user?

    how do I add an ipad to devices in my itunes account which was previously associated with another account?

    Just sign into your own ID in Settings>iTunes & App Store. Sign out of the old ID and sign into your ID. I get the feeling though, that there is more to what you are trying to do or want to do and I'm not understanding or you are not explaining completely.
    If this is a previously owned iPad, it should have been erased before you got possession of it.

  • How do you add the ipad device to your itunes account? Please!!

    How do you add the ipad 2 device to your itunes account

    There is no need to add the iPad, just sign into your iTunes account when you need to.

  • How can i add an ipad to my wifi connection?

    I got a "new used" ipad from a friend. When I see my wifi id and click on it, it asks for a password. But when I type the password (six digits) that I use on my laptop, it doesn't recognize it. How do I add the ipad to my network?

    The following has instructions and a link to further troubleshooting. The most likely problem is that you are using the wrong password -- that's a common problem because once you have connected a device such as your laptop the first time it typically auto connects every time after that and the password gets forgotten. iOS: Connecting to Wi-Fi

  • HT5312 How do I add another iPad to my account?

    How do I add another iPad to my account?

    What are trying to do ? You can log into your account on it via Settings > iTunes & App Stores, or sync your content to it from your computer's iTunes

  • How to block adds on iPad air

    How to block add ON IPAD AIR

    You can use the Camera app : open the app, slide/drag the Video / Photo / Square options on the right-hand side of it so that 'Video' lines up with the yellow dot next to them, and you should then be able to take a video in the app by pressing the round button above those options to start recording, and tap it again to stop.

  • How do I keep the ipad 2 on while using it without having to push buttons to get back to where I was?

    How do I keep the iPad 2 on while using it so it won't go off, making have to push the buttons to get back to where I was?

    Open the Settings app > General > AutoLock - set to Never. You will, howver, want to get in the habit of manually putting it to sleep with the on/off button.

  • How does one add tables to an existing universe using COM designer SDK.

    Morning All
    How does one add tables to an existing universe using COM designer SDK. I have tried:
    objUniverse.Tables.Add (strTable_Name)
    but get "Cannot create Table" error.
    Any ideas?
    Thanks in advance.
    Anita

    Hi Anita,
    -Use the Add method to add classes and objects to an existing universe using a VB 6 application.
    Adding a Class
    Definition: Function Add(Name As String) As Class
    Syntax: NameOfClassesVariable.Add
    Adding an Object Instance
    Definition:  Function Add(Name As String, [ClassName As String]) As Object
    Syntax: NameOfObjectsVariable.Add(name, [class])
    - name is the name of the object.
    - class is the name of the class containing the object. This parameter should be used in cases where more than one objects exist with the same name.
    Sample Visual Basic 6 Code
    Dim DesApp As Designer.Application
    'MODIFY AND EXPORT CLASSES AND OBJECTS OF AN EXISTING UNIVERSE
    Sub modify_and_export_universe()
    Dim DesUnv As Designer.Universe
    Dim DesCls As Designer.Class
    Dim DesObj As Designer.Object
    Dim DesDBCol As Designer.DBColumn
    Dim DBColName As String
    Set DesApp = New Designer.Application
    'Login to designer
    Call DesApp.LogonDialog
    'Make sure to log on with your administrator profile
    'e.g : "hostname","username", "password","Enterprise"
    'Make Designer application visible
    DesApp.Visible = True
    'This line disable warning messages from Designer
    DesApp.Interactive = False
    'to Open  locally  the universe you want to modify
    'Set DesUnv = DesApp.Universes.Open("club_uni")
    'Use OpenFromEnterprise method (Universes Class) to import a universe from the repository and opens it
    Set DesUnv = DesApp.Universes.OpenFromEnterprise("Universes", "club_uni", False)
    'Add a valid connection which already exists
    DesUnv.Connection = "club"
    'open the universe
    'Call DesApp.Universes.Open("club_universe")
    'Add the table Account and refresh the view in the main window
    Set DesTab = DesUnv.DBTables.Item("Customer").Insert
    DesUnv.ArrangeTables
    'Add a class
    Set DesCls = DesUnv.Classes.Add("Class MyCustomer")
    'Looping through all the fields of the DB Table Account
    For Each DesDBCol In DesUnv.DBTables.Item("Customer").DBColumns
    'Store name of the column
        DBColName = DesDBCol.Name 
         'Add an object to the class
        Set DesObj = DesCls.Objects.Add("Obj " & DBColName)
         'Affect a field to the object
        DesObj.Select = "Customer" & "." & DBColName
    Next
    'Save the existing universe with the same name club_uni or you can change
    DesUnv.SaveAs "club_uni"
    MsgBox "Universe created and saved Class MyCustomer has been added!!"
    'Close the universe
    UnvFullName = DesUnv.FullName
    MsgBox "The UniverseFilePath is " & UnvFullName
    'Close the universe
    DesUnv.Close
    'This line disable warning messages from Designer
    DesApp.Interactive = False
    'Export the universe to the CMS DB (to the last universe folder)
    'Make sure you save the universe before exporting it
    Call DesApp.Universes.Export("Universes", UnvFullName)
    MsgBox "This document has been exported successfully !!"
    'Close designer
    DesApp.Quit
    Set DesApp = Nothing
    End Sub
    Hope this helps.
    Regards,
    Deepti Bajpai

  • How do i make my ipad Bible program always use KJV Bible only

    How do i make my ipad Bible program always use KJV Bible only (Dakes Study Notes - Wordsearch)

    I really doubt that anyone here will be able to answer your question without some more details, like what Bible app are you using? Have you tried the app support website for help?

  • Updating ipad 2 to io6 using wifi

    Im selling my iPad 2 (getting the new generation  iPad 4) to a friend who doesn't have a computer or notebook , although he has internet service at home which he use basically for phone service. I was wondering if he can update the iPad 2 to io6 using wifi, since I will be handing over the iPad 2 into its original factory set up (after a full erase)   .
    Thanks in advance for any input.

    Hi Davonex,
    Thanks for  your prompt .another concern is that when i hand  over the ipad2 in its original factory setting it wont have the io5 software yet...how can he update this without a computer. I know the io6 can be updated via wifi but what about the ios5 ? I can connect this to my own computer but it would download all my back up to the ipad im selling, which is not ideal.
    Can you please clarify.
    Thanks again

  • How can I add the iPad cover lock option to the iPad 2?

    The iPad cover lock option doesn't come up on my settings on my iPad 2. How can I add it?

    Hi Sven,
    You can't. GC does not support the monitoring of standalone HTTP server installs. Only HTTP servers which have been setup through an iAS install can be monitored.
    I have had a SR raised with Oracle regarding this and a enhancement request has now been raised, but how long this will take is anyone's guess.
    Regards
    Brian

  • TS3474 how do i add my ipad to my list of products so i have all the serial numbers together.  It keeps saying put purchase date but i cannot remember as got it a few years ago i got new ipad and phone so got dates for those

    how can i add my old ipad to my list of products so i have all the serial numbers stored in one place.  It will not add as it asks for a purchase date which i cannot rmemeber as purchased years ago

    have a look at these:
    http://bt.custhelp.com/app/answers/detail/a_id/9855/kw/pay%20monthly%20payment/c/761,2072,2102/relat...
    http://bt.custhelp.com/app/answers/detail/a_id/14098/kw/monthly%20payment%20plan/c/761,2071,2089
    The monthly payment allows you to pick your payment day.
    Check your exchange or major service outagesIf someone has given a helpful answer, please click on their Ratings star on the left-hand side. ***

Maybe you are looking for

  • How do I edit the songs on my ipod through itunes w/o having to update all

    I just recently got an ipod and I'm loving it. I am a heavy music downloader and am also very particular about how my songs are organized (no duplicate artist names, songs, etc.)sometimes a song slips my eye, so how can i edit my songs and artists on

  • Quality Based Invoice

    Dear Experts, Our clients wanted to go quality based invoice,  the following steps i made for the process, 1. In OQB1 I have set  invoice control key 0007  & assigned in material master and activated. 2. And message set in MM Invoice M8 280 When i do

  • Settlement profile in order confirmation

    Dear all We want to settle partial confirmation and then and there we do settlement also ,in the first settlement the Accounts are posted properly in the second , third confirmations the postings effect the Price difference account also , we need to

  • Color profile for ordering prints from Apple

    Hy, I'm due for ordering prints tomorrow from Apple, my screen is hardware calibrated but can anyone tell me which profile to choose for softproofing when ordering prints from Apple ( I live in Belgium, print order come from Ireland )??? Thanx

  • Oracle By Example Downloads

    Is there a compressed version of the "Oracle by Example" Tutorials for downloading? Thanks you for your help