Figuring out how to access a device using Windows.Devices.HumanInterfaceDevice?

Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
Public Class VirtualMouseDeviceOpen
Class Enumeration
' Enumerate HID devices
Public Async Function EnumerateHidDevices() As Task
Dim vendorId As UInt32 = &HBEEF
Dim productId As UInt32 = &HFEED
Dim usagePage As UInt32 = &HFF
Dim usageId As UInt32 = &H1
' Create a selector that gets a HID device using VID/PID and a
' VendorDefined usage
Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
' Enumerate devices using the selector
Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
Dim count As Integer = devices.GetResults.Count
If count > 0 Then
' Open the target HID device
' At this point the device is available to communicate with
' So we can send/receive HID reports from it or
' query it for control descriptions
Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
Await Vendor.ReadWriteToHidDevice(device)
Else
' There were no HID devices that met the selector criteria
MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
End If
End Function
Class Vendor
Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
If device IsNot Nothing Then
' construct a HID output report to send to the device
Dim outReport As HidOutputReport = device.CreateOutputReport()
' Initialize the data buffer and fill it in
Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
Dim dataWriter As New DataWriter()
dataWriter.WriteBytes(buffer)
outReport.Data = dataWriter.DetachBuffer()
' Send the output report asynchronously
Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
' Sent output report successfully
' Now lets try read an input report
Dim inReport As HidInputReport = device.GetInputReportAsync()
If inReport IsNot Nothing Then
Dim id As UInt16 = inReport.Id
Dim bytes = New Byte(3) {}
Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
dataReader__1.ReadBytes(bytes)
Else
MsgBox("Invalid input report received")
End If
Else
MsgBox("device is NULL")
End If
End Function
End Class
End Class
Here's my report descriptor to avoid scrimmaging through everything trying to find it:
HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0xA1,0x01, // COLLECTION (Application)
0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0x15,0x00, // LOGICAL_MINIMUM(0)
0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
0x75,0x08, // REPORT_SIZE (0x08)
//0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
0xB1,0x00, // FEATURE (Data,Ary,Abs)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0x75,0x08, // REPORT_SIZE (0x08)
//0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
0x81,0x00, // INPUT (Data,Ary,Abs)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0x75,0x08, // REPORT_SIZE (0x08)
//0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
0x91,0x00, // OUTPUT (Data,Ary,Abs)
0xC0, // END_COLLECTION
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x02, // USAGE (Mouse)
0xa1, 0x01, // COLLECTION (Application)
0x85, 0x02, // REPORT_ID (2)
0x09, 0x01, // USAGE (Pointer)
0xa1, 0x00, // COLLECTION (Physical)
0x05, 0x09, // USAGE_PAGE (Button)
0x19, 0x01, // USAGE_MINIMUM (Button 1)
0x29, 0x03, // USAGE_MAXIMUM (Button 3)
0x15, 0x00, // LOGICAL_MINIMUM (0)
0x25, 0x01, // LOGICAL_MAXIMUM (1)
0x95, 0x03, // REPORT_COUNT (3)
0x75, 0x01, // REPORT_SIZE (1)
0x81, 0x02, // INPUT (Data,Var,Abs)
0x95, 0x01, // REPORT_COUNT (1)
0x75, 0x05, // REPORT_SIZE (5)
0x81, 0x03, // INPUT (Cnst,Var,Abs)
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x30, // USAGE (X)
0x09, 0x31, // USAGE (Y)
0x15, 0x81, // LOGICAL_MINIMUM (-127)
0x25, 0x7f, // LOGICAL_MAXIMUM (127)
0x75, 0x08, // REPORT_SIZE (8)
0x95, 0x02, // REPORT_COUNT (2)
0x81, 0x06, // INPUT (Data,Var,Rel)
0xc0, // END_COLLECTION
0xc0 // END_COLLECTION
My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
http://www.computerprofessions.us

Before I start, I would like to share this link I used to access windows RT libraries from Desktop applications (only the ones stated in MSDN documentation that are accessible from desktop applications):
http://blogs.msdn.com/b/cdndevs/archive/2013/10/02/using-windows-8-winrt-apis-in-net-desktop-applications.aspx .
After following the above instructions you can import some of the windows RT libraries in references. I have been trying to use the Windows.Devices.HumanInterfaceDevice library. I think my UsagePage and UsageId are off though. I am wondering
if someone good in hex can translate them from my report descriptor. I already have the VID and PID (this should be enough along with the path if I called write file or some of the other win32/OS api's). Here's the code I am using in VB.NET:
Public Class VirtualMouseDeviceOpen
Class Enumeration
' Enumerate HID devices
Public Async Function EnumerateHidDevices() As Task
Dim vendorId As UInt32 = &HBEEF
Dim productId As UInt32 = &HFEED
Dim usagePage As UInt32 = &HFF
Dim usageId As UInt32 = &H1
' Create a selector that gets a HID device using VID/PID and a
' VendorDefined usage
Dim selector As String = HidDevice.GetDeviceSelector(usagePage, usageId, vendorId, productId)
' Enumerate devices using the selector
Dim devices As Windows.Foundation.IAsyncOperation(Of Windows.Devices.Enumeration.DeviceInformationCollection) = DeviceInformation.FindAllAsync(selector)
Dim count As Integer = devices.GetResults.Count
If count > 0 Then
' Open the target HID device
' At this point the device is available to communicate with
' So we can send/receive HID reports from it or
' query it for control descriptions
Dim device As HidDevice = HidDevice.FromIdAsync(devices.GetResults.ElementAt(0).Id, FileAccessMode.ReadWrite)
Await Vendor.ReadWriteToHidDevice(device)
Else
' There were no HID devices that met the selector criteria
MsgBox("MUTT HID device not found!", MsgBoxStyle.Exclamation)
End If
End Function
Class Vendor
Public Shared Async Function ReadWriteToHidDevice(device As HidDevice) As Task
If device IsNot Nothing Then
' construct a HID output report to send to the device
Dim outReport As HidOutputReport = device.CreateOutputReport()
' Initialize the data buffer and fill it in
Dim buffer As Byte() = New Byte() {10, 20, 30, 40}
Dim dataWriter As New DataWriter()
dataWriter.WriteBytes(buffer)
outReport.Data = dataWriter.DetachBuffer()
' Send the output report asynchronously
Dim a As Windows.Foundation.IAsyncOperation(Of UInteger) = device.SendOutputReportAsync(outReport)
' Sent output report successfully
' Now lets try read an input report
Dim inReport As HidInputReport = device.GetInputReportAsync()
If inReport IsNot Nothing Then
Dim id As UInt16 = inReport.Id
Dim bytes = New Byte(3) {}
Dim dataReader__1 As DataReader = DataReader.FromBuffer(inReport.Data)
dataReader__1.ReadBytes(bytes)
Else
MsgBox("Invalid input report received")
End If
Else
MsgBox("device is NULL")
End If
End Function
End Class
End Class
Here's my report descriptor to avoid scrimmaging through everything trying to find it:
HID_REPORT_DESCRIPTOR G_DefaultReportDescriptor[] = {
0x06,0x00, 0xFF, // USAGE_PAGE (Vender Defined Usage Page)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0xA1,0x01, // COLLECTION (Application)
0x85,CONTROL_FEATURE_REPORT_ID, // REPORT_ID (1)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0x15,0x00, // LOGICAL_MINIMUM(0)
0x26,0xff, 0x00, // LOGICAL_MAXIMUM(255)
0x75,0x08, // REPORT_SIZE (0x08)
//0x95,FEATURE_REPORT_SIZE_CB, // REPORT_COUNT
0x96,(FEATURE_REPORT_SIZE_CB & 0xff), (FEATURE_REPORT_SIZE_CB >> 8), // REPORT_COUNT
0xB1,0x00, // FEATURE (Data,Ary,Abs)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0x75,0x08, // REPORT_SIZE (0x08)
//0x95,INPUT_REPORT_SIZE_CB, // REPORT_COUNT
0x96,(INPUT_REPORT_SIZE_CB & 0xff), (INPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
0x81,0x00, // INPUT (Data,Ary,Abs)
0x09,0x01, // USAGE (Vendor Usage 0x01)
0x75,0x08, // REPORT_SIZE (0x08)
//0x95,OUTPUT_REPORT_SIZE_CB, // REPORT_COUNT
0x96,(OUTPUT_REPORT_SIZE_CB & 0xff), (OUTPUT_REPORT_SIZE_CB >> 8), // REPORT_COUNT
0x91,0x00, // OUTPUT (Data,Ary,Abs)
0xC0, // END_COLLECTION
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x02, // USAGE (Mouse)
0xa1, 0x01, // COLLECTION (Application)
0x85, 0x02, // REPORT_ID (2)
0x09, 0x01, // USAGE (Pointer)
0xa1, 0x00, // COLLECTION (Physical)
0x05, 0x09, // USAGE_PAGE (Button)
0x19, 0x01, // USAGE_MINIMUM (Button 1)
0x29, 0x03, // USAGE_MAXIMUM (Button 3)
0x15, 0x00, // LOGICAL_MINIMUM (0)
0x25, 0x01, // LOGICAL_MAXIMUM (1)
0x95, 0x03, // REPORT_COUNT (3)
0x75, 0x01, // REPORT_SIZE (1)
0x81, 0x02, // INPUT (Data,Var,Abs)
0x95, 0x01, // REPORT_COUNT (1)
0x75, 0x05, // REPORT_SIZE (5)
0x81, 0x03, // INPUT (Cnst,Var,Abs)
0x05, 0x01, // USAGE_PAGE (Generic Desktop)
0x09, 0x30, // USAGE (X)
0x09, 0x31, // USAGE (Y)
0x15, 0x81, // LOGICAL_MINIMUM (-127)
0x25, 0x7f, // LOGICAL_MAXIMUM (127)
0x75, 0x08, // REPORT_SIZE (8)
0x95, 0x02, // REPORT_COUNT (2)
0x81, 0x06, // INPUT (Data,Var,Rel)
0xc0, // END_COLLECTION
0xc0 // END_COLLECTION
My UsageId is the first Usage Hex value in the report descriptor I believe (I am still a little confused too). My UsagePage is the hex values in the first Usage_Page in the report descriptor.
Note: the problem with the VB.NET code is that it returns 0 on the count above which means it did not find a device using my criteria.
Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
http://www.computerprofessions.us
I forgot anyone wanting a picture of what the device hierarchy looks like in control panel here it is (HID compliant vendor device is the first one in the report descriptor above I want to access and then the mouse device): 
Once you eliminate the impossible, whatever remains, no matter how improbable, must be the truth. - Sherlock Holmes. speak softly and carry a big stick - theodore roosevelt. Fear leads to anger, anger leads to hate, hate leads to suffering - Yoda. Blog -
http://www.computerprofessions.us

Similar Messages

  • I have no tirefox tool bar or search bar at all. Can't figure out how to get it. Using windows vista.

    Since updating Firefox, I have no tool bar / menu bar / search bar. All I have at the top is my fox news radio tool bar.
    I can't figure out how to get the tool / menu / search bar at the top of my screen. So... I can't search from Firefox.

    The alt key or F10 will reveal hidden toolbars. Then use View- Toolbars to turn them back on.
    Then press F9 when in a write window to turn on the contact sidebar for access to your address books.

  • I purchased pro twice but cannot figure out how to access it.  I don't have a serial number.

    i purchased pro twice but cannot figure out how to access it.  I don't have a serial number.

    Hi lisalhawkins,
    I checked with your account and it shows that you have purchased an annual subscription of Adobe ExportPDF online service. Right?
    ExportPDF service does not require a serial number to access it.
    All you need to do is sign in at "https://cloud.acrobat.com/exportpdf" using your Adobe ID and password.
    Then, you can upload PDF files from your computer and convert them to other formats like Word, PowerPoint, etc.
    On completion, you can download the converted file on your computer and edit it for further use.
    Hope I am clear. Please let me know if you have further query on the same.
    Regards,
    Anubha

  • I created a folder from my camera roll and shared with my icloud acct, can't figure out how to access it from my computer?

    I created a folder from my camera roll and shared with my icloud acct, can't figure out how to access it from my computer? I log onto icloud and can't find anywhere where "shared" photos are..

    You need Mountain Lion (10.8.2 or higher) and iPhoto '11 (9.4 or higher) or Aperture 3.4 to get shared photo streams on Mac.
    Another option to transfer them is to either import them to iPhoto using your usb cable, as explained here:http://support.apple.com/kb/HT4083, or to us an app like PhotoSync to transfer them to your Mac over your wifi.  (PhotoSync will also transfer albums, not just photos from the camera roll.)

  • Need Help Figuring Out How to Access On/Off Field in Upper Left Hand Corner

    I am hoping someone can help as I am not at all TECHNICALLY SAVVY!!  I must have hit some wrong button yestyerday because now I cannot get access to my messages on my Blackberry Curve.  I think it may be because the word OFF appears at the top of the screen on my Blackberry on the far left hand side and I cannot figure out how to access that part of the screen to change it to say ON.

    Well, give it a few minutes, and if after 15 minutes no new email messages, Do a simple reboot on the BlackBerry in this manner: With the BlackBerry device POWERED ON, remove the battery for a minute, and then reinsert the battery to reboot. A reboot in this manner is prescribed for most glitches and operating system errors, and you will lose no data on the device doing this.
    Meanwhile, if you've read or deleted any of the email sent in the interim from your PC, you won't be getting it on your BlackBerry.
    1. If any post helps you please click the below the post(s) that helped you.
    2. Please resolve your thread by marking the post "Solution?" which solved it for you!
    3. Install free BlackBerry Protect today for backups of contacts and data.
    4. Guide to Unlocking your BlackBerry & Unlock Codes
    Join our BBM Channels (Beta)
    BlackBerry Support Forums Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • I have downloaded an app from the Istore and now I can't figure out how to open it or use it

    I have downloaded an app to use on my laptop and now I can't figure out how to open it and use it.  It shows it in the download area..........any suggestions would be great.

    Have you looked in your menu of programs (in Windows:  Start -> All Programs -> etc....)?

  • Cannot figure out how to access battery on iPhone 6

    IIn activating my phone I need the SIM card info and I can't figure out how to take the back off to access

    The SIM card is on the right side.
    Insert a paperclip into the small hole and push to eject the SIM tray.
    -> iPhone and iPad: How to remove the SIM card

  • Cant figure out how to fix my labtop, Acer Windows 8

    Hello,
    Something was uninstalled on my labtop (acer, windows 8), it was something that had to do with office. So now when I try to open any files made in word, excel, powerpoint, ect. They wont open.
    This is what I have tried and gotten no luck:
    1) I tried reinstalling Office Mircrosoft Professional Plus 2013 (This is want I installed when I first got the laptop). When I put in the disk it asks me if I want to run it, when I click on YES, another message pops up saying: Something went wrong,
    sorry we ran into a problem, try going online for additional help. (Which hasn't been helpful).
    2) I tried doing a System Restore, but it ran through the restore and didn't change anything. I tried doing it again, but it now wont even let me do a restore. So I tried the Advance System Recovery, but it wont run also.
    3) I then went into the Run System File Checker tool to troubleshoot the issue. A list of all the programs (expect for office) popped up and the only problem it
    came up with was that the Blue Tooth Audio Device has a driver problem and needs to be reinstalled. But I don't know how to do that. And I'm not sure what I'm even looking for in the list of programs for the troubleshooting.
    Also, other issues I'm having is that its telling me I cant change things unless I'm the admin, but I am and I don't have any other user accounts set up. It also tells me I have things open in other accounts and so I cant make
    changes to whatever it is at the moment I'm trying to change. I've been trying to change a few things not know really what I'm doing.
    Any advice or steps to take to figure out how to get my labtop working like normal?
    If the issue still exists, run System File Checker tool to troubleshoot the issue:
    1.    
    Insert the Windows 7 installation DVD into the DVD-ROM; Click Exit if the auto-menu pops up.
    2.    
    Open an elevated command prompt. To do this, click Start, click All Programs, click Accessories, right-click Command Prompt, and then click Run as administrator.
    If you are prompted for an administrator password or for a confirmation, type the password, or click Allow. 
    3.    
    At the command prompt, type the following command, and then press ENTER

    Do you mean in your from field or the signature field?
    where does it show up...? it wouldn't be on the iPhone as that doesn't show a from field. Check the account details in MM open it up go to settings and check you typed it in right simple as that if it's on someone elses hardware when they recieve an email from you then they need to fix your name in their contacts.

  • How do I share the Photo Library on my desktop with another User. I have Apoerture set up on my wife's user account but cannot figure out how to access the photo library from her desktop.

    I just got a new IMac. I transferred all the photos from our old PC to the Aperture Library on my User account. My wife is set up as another User. She can access Aperture from her User account but there are no photos in the Library. How can I share or giver her access to the photos so that she can work with them on Aperture from her User account?

    Move the Aperture library to separate disk or disk partition with plenty of space for all your photos. On a separate disk or partition it will be possible to set the "Ignore ownership on this volume" flag. Then two users can write to the same Aperture library without permission problems.
    The procedure is describe here for iPhoto libraries, but this will work for Aperture libraries as well:
    iPhoto: Sharing libraries among multiple users
    If you want to use a drive for your Aperture library, that has been used with a PC, format it for Mac, before you move the Aperture library there. This can be done with Disk Utility.

  • I just purchased a new iMac. My iTunes account is missing a ton of music and I cant figure out how to access it. When I try to load music from my ipod to match my imac it only asks if i'd like to sink my ipod with my account. How do I access my library?

    I just purchased a new iMac. My iTunes account is missing a ton of music and only contains "purchased" music. When I try to load music from my ipod to match my imac it only asks if i'd like to sinc my ipod with my account. How do I access my entire library? Thanks

    Unless you subscribe to Match, you will have to transfer your non-iTunes stuff from your old computer:
    http://support.apple.com/kb/HT4527
    If you want to copy non-iTunes music off of your iPod (eg, if your old computer doesn't exist), you'll need to use a third party program.  I don't know of any free ones anymore, but if you google, you can find several in the $19 range.

  • Can't figure out how to access information in schemamodelgroup

    Hey all,
    I am a newbie at this, so please bear with me. I have to major questions.
    1. I created my jars based on a very lengthy schema that i was supplied. There are 2 portions in the schema that are group names as opposed to simple/complextypes. I need the information found in those, but i don't see any classes, just the 2 xsb files that are of the same name as the group names. How do i reference data that is located in that portion of the xml document?? If you need more data, please let me know.
    2. for a portion of the document that i can get to easily, i try to unmarshal which seems pretty easy. Unfortunately, i get a nullpointerexception as if the data doesn't exist. I will post a shortened portion of the xml and my code. if you need the portion of the schema, let me know. Please help, this stuff needs to be done quickly.
    Here is the xml portion:
    <?xml version="1.0" encoding="UTF-8"?>
    <MDADocument>
    <defenseDesignDocument>
         <planningContextHeader>
         <OPLAN>
              <planId>9151314447111817754</planId>
              <name>Venezuela</name>
         </OPLAN>
    </defenseDesignDocument>
    </MDADocument>
    and here is my code:
    PlanningContextHeaderType planContext = PlanningContextHeaderType.Factory.parse(inputFile);
    PlanningContextHeaderType.OPLAN oplan = System.out.println(planContext.getOPLAN());
    Thanks for the help
    Jason

    Here's another fun way:
    Boot the system, and press the "Menu" key on your remote control. This will bring up the boot screen, and you can use the remote to toggle between either Windoze or OS X to boot
    HTH
    Brian

  • I have created another user on our iMac but cannot figure out how to access aperture, excel and other purchased applications on the new desk top

    I have created an additional user on our iMac and have tried to set up file share but nothing happens.  I have an empty desktop and only the applications that came with the computer appear.  I'd like to have access to the others that we've purchased... Aperture, excel, etc.  I've followed the instructions for file sharing but I must be missing something. 
    Thanks for any assistance.

    Rebecca1952,
    You are over complicating things.  File sharing has nothing to do with what applications that each user has access to.
    To me it sounds like you just need some basic help getting the applications that you need onto your dock.
    Try this:
    Login to you new user account
    Click on an empty part of your desktop
    Click on the "Go" menu and select "Applications"
    A Finder window should open showing ALL of the applications on the Mac.
    Double-click one of them that you will use frequently (e.g. Excel)
    Once it is up and running you should see it's icon down on your dock.
    Right-click that icon on the dock, then select "Options", and "Keep in Dock"
    Once you have added each application to the dock in this manner, then it will remain there even after you quit the application.
    For one more expert way to launch any application on your mac quickly, try this:
    Hold the [command] key and hit the [spacebar] (this will start a Spotlight search)
    Start typing the name of the application you want to run (e.g. "Aperture")
    Once you see "Aperture" selected, simply hit the [return] key and Aperture will launch
    Hope this solves you problem.

  • Cannot figure out how to sync my photos using itunes, help anyone?

    Can anyone walk me though using sync itunes to transfaer photos to my ipad2?  I need step by step instructions!

    Hello there, No10Blondie.
    The following Knowledge Base article should provide the steps you're looking for:
    iTunes: Syncing photos
    http://support.apple.com/kb/HT4236
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro.

  • HT1351 Have downloaded one playlist in my ipod classic,works fine, now downloaded another, can't figure out how to access it??into playlist from there goes to On-the-Go. How do I access Playlist 2????

    Just got this Ipod classic,  little greek to me,      Have downloaded one playlist,   works fine,   now  tried to download a second , which  I believe it did, out of my Itunes library,  but how is it listed in my Ipod    , scoll down to playlist, then what?    seems to always go to On-the-Go then what ???    Thanks   Dan

    When you go into the Playlists menu of your iPod Classic, you should see a list of the Playlists you have downloaded from your iTunes Library - and the On-The-Go Playlist. If you can only see the On-The-Go Playlist, that suggests that you have not successfully downloaded any Playlists.
    Playlists are separate from the songs. The songs, albums etc. etc. will be listed under those menu headings on the Main Menu.
    The On-The-Go Playlist is a feature that allows you to create Playlists on the iPod. Initially, and after each Sync with iTunes, the On-The-Go should be empty. If you create one, you can save it on the iPod and it will be transferred back to the iPod at Sync time and renamed as On-The-Go X (X is the next available number). If you create and save one on your iPod, it will be named on the iPod as New Playlist X, but renamed as On-The-Go X when Synced with iTunes.

  • Can't figure out how to access "mac" on macbook

    i had windows installed, and at first when i turned the computer on, i had a chose-mac or windows. now all i get is windows.
    how do i start up the mac???
    i feel REALLY dumb asking this, but i can't seem to find the answer anywhere....

    Here's another fun way:
    Boot the system, and press the "Menu" key on your remote control. This will bring up the boot screen, and you can use the remote to toggle between either Windoze or OS X to boot
    HTH
    Brian

Maybe you are looking for

  • Get the Domain Directory...

    Hi I am working with weblogic 8.1...my need is to get the current domain directory...there is...one process i am using is not working properly... i.e using the method of weblogic.management.configuration.DomainMBean method getRootDirectory....which i

  • How to download Skype in C6-01

    how to get skype in nokia c6-01? Please give me link Moderator's note: We have provided a more subject-related topic. We also moved the post to the most appropriate board.

  • Default memory target/SGA values in Oracle 11g

    I have a few minor questions about how Oracle assigns memory parameters when creating database. I'm working with Oracle 11gR2. Right now, I've got 4G of RAM available. When I did my install, I created a 'default' database. It assigned a memory_target

  • MTO and MTS

    Dear Gurus, I want to know that what are the basic configration of MTO scenario and if we are goin to make the sales order so the purchase order is goin to made automatically in the schedule line or the planned order is goin to made automatically in

  • Javascript date format problem

    I want to get the current date assigned to a variable in the "YYYYMMDD" format using Javascript