Help needed in getting computer to recognise kindle

Our library (Liverpool (UK)) has just started using Adobe Digital Edition so that ereaders can read loaned e-books. My Toshiba laptop has the software installed and authorised but although the laptop recognises my Kindle paperwhite it does not appear as a device on the Adobe DE when I open it. What do I need to do ?

It's probably nothing but this is from the Windows Dev Center
"In Windows Vista, Windows Server 2003, Windows XP, Windows 2000, Windows Millennium Edition (Me), and Windows 98, audio drivers conform to the Windows Driver Model (WDM) and make use of the kernel streaming (KS) components, which operate in kernel mode and are part of the operating system."
I don't see any mention of Windows 8 - maybe nothing?
Just a thought - why not try the asio4all driver just to see if it makes a difference?
You can install it and then select that driver in Audition - you can always switch back
http://www.asio4all.com/

Similar Messages

  • Help needed in getting the previous Quarter Data

    Hello folks,
    I have this procedure where i have to modify the current procedure in the following manner:
    I need to get rid of the variables p_start and p_end so that i cannot see them in the crystal report and include the Frequency in the procedure to get the Data based on the Dates.
    and Main requirement is" If the Frequency is Quarterly " it should get the previous quarter Data, if "Frequency is monthly" it should return the previous month data.Can anyone please let me know where shud i make changes. Am including the procedure for refernce. Any help is appreciated
    Thanks a millioin,
    CREATE OR REPLACE PROCEDURE hcsc_recovery_report_h(report_record in out cr_return_types.gen_cursor,
    p_start       string,
    p_end         string)
    IS
    v_startdate date;
    v_enddate date;
    BEGIN
    v_startdate := to_date(p_start, 'YYYY/MM');
    v_enddate := last_day(to_date(p_end, 'YYYY/MM'));
    open report_record for
    select --distinct r.recovery_id
    r.event_id,
    r.event_case_id,
    c.client_id,
    c.client_code,
    c.client_name,
    b.branch_group_code,
    b.branch_group_description,
    g.employer_group_code,
    g.employer_group_name,
    e.client_policy_identifier,
    e.date_of_incident,
    e.event_type_code,
    sum(nvl(r.amount, 0)) as amt_received,
    nvl(sum(case
    when r.amount >= 0 then
    rd.fees
    else
    rd.fees * (-1)
    end),
    0) as fees,
    ec.close_date, *001* commented
    (case
    when ec.close_date <= to_date(to_char(v_enddate, 'MMDDRRRR') || '235959',
    'MMDDRRRR HH24MISS') then
    ec.close_date
    else
    null
    end) as close_date, --*001*  added
    get_case_value(ec.event_id, ec.event_case_id, v_enddate) as case_value,
    nvl(etl.fee_percent_flag, 'N') workmans_comp,
    max(to_char(r.recovery_date, 'FMMonthYYYY')) Year_Month,
    max(to_char(r.recovery_date, 'YYYYMM')) Y_M,
    max(to_date(to_char(r.recovery_date, 'MMYYYY'), 'MM/YYYY')) date_MY
    from recovery r,
    recovery_detail rd,
    event e,
    client c,
    branch_group b,
    employer_group g,
    event_case ec,
    event_type_lookup etl
    where r.event_id = e.event_id
    and r.event_case_id = ec.event_case_id
    and ec.event_id = e.event_id
    and rd.recovery_id(+) = r.recovery_id
    and r.recovery_date between v_startdate and
    to_date(to_char(v_enddate, 'MMDDRRRR') || '235959',
    'MMDDRRRR HH24MISS')
    and e.client_id = c.client_id
    and g.client_id = c.client_id
    and b.client_id = c.client_id
    and g.employer_group_id(+) = e.employer_group_id
    and b.branch_group_id(+) = g.branch_group_id
    and e.event_type_code = etl.event_type_code -- SST 130852 04/14/09
    group by r.event_id,
    r.event_case_id,
    c.client_id,
    c.client_code,
    c.client_name,
    b.branch_group_code,
    b.branch_group_description,
    g.employer_group_code,
    g.employer_group_name,
    e.client_policy_identifier,
    e.date_of_incident,
    e.event_type_code,
    ec.close_date,
    get_case_value(ec.event_id, ec.event_case_id, v_enddate),
    nvl(etl.fee_percent_flag, 'N')
    having sum(nvl(r.amount, 0)) <> 0
    order by c.client_code,
    b.branch_group_code,
    g.employer_group_code,
    r.event_case_id;
    Edited by: user11961230 on Oct 20, 2009 9:02 AM

    user11961230 wrote:
    1. I want to get rid of the p_start and p_end. So how do i declare the v_startdate and v_enddate in the following part?
    v_startdate := to_date(p_start, 'YYYY/MM');
    v_enddate := last_day(to_date(p_end, 'YYYY/MM'));I'm not sure what you mean by "declare".
    In PL/SQL, "declare" means state (at the beginning of a block) that there will be a certain variable with a certain name (such as v_startdate) and datatype (such as DATE). You're already declaring the variables v_startdate and v_enddate correctly, right before the BEGIN statement.
    Declaring a variable is not the same as initializing it, that is, giving it a value for the first time. Your next question seems to be about initializing..
    2. where exactly shud i include the logic that u have mentioned. sorry a dumb questionIn place of the two assignment statments that reference p_start and p_end.
    3. This time am gonna use frequency instead of report_type so that i will get rid of the p_start and p_end from the procedure.Do you mean you want to pass an argument (called frequency) that tells if you want a quarterly or a mionthly report, just like the variable report_type in my example?
    If so, replace report_type in my example with frequency.
    I think you want something like this:
    CREATE OR REPLACE PROCEDURE hcsc_recovery_report_h
    (      report_record         in out     cr_return_types.gen_cursor
    ,      frequency         IN           VARCHAR2
    IS
         -- Declare local variables:
         v_startdate     date;
         v_enddate      date;
    BEGIN
         -- Initialize v_startdate and v_enddate, depending on frequency
         IF  frequency = 'QUARTERLY'
         THEN
              v_startdate := TRUNC ( ADD_MONTHS (SYSDATE, -3)
                                           , 'Q'
              v_enddate := TRUNC (SYSDATE, 'Q');
         ELSIF  frequency = 'MONTHLY'
         THEN
              v_startdate := TRUNC ( ADD_MONTHS (SYSDATE, -1)
                             , 'MM'
              v_enddate := TRUNC (SYSDATE, 'MM');
         END IF;
         --   Subtract one second from v_enddate
              v_enddate := v_enddate - ( 1
                                            / (24 * 60 * 60)
         open report_record for
         select --distinct r.recovery_id
                r.event_id,
         and     r.recovery_date  BETWEEN  v_startdate     
                         AND       v_enddate
         ...When you post formatted text on this site (and code should always be formatted), type these 6 characters:
    (small letters only, inside curly brackets) before and after sections of formatted text, to preserve spacing.
    Edited by: Frank Kulash on Oct 20, 2009 2:37 PM
    Changed query to use BETWEEN                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • Help needed, M getting this message sandbox environment error no test user account, when downloading any application from iTunes, friend told me to sign out and sign in iTunes it might solve the problem but instead I cannot login I to my itune account.

    Help needed,
    I am getting this message sandbox environment error no test user account, when downloading any application from iTunes, friend told me to sign out and sign in iTunes it might solve the problem , and i triyed it but still  I cannot login I to my itune account. Same message keeping. Popping up,  this problem started supricly today.

    Take a look at the instructions here.
    http://www.technogal.net/2012/03/this-is-not-test-user-account-please.html

  • Help needed in getting file url

    Hi,
    I work in a project where i need to get the url of the specified file. The code for that is as,
    URL fileURL = Thread.currentThread().getContextClassLoader().getResource();
    The required resource is available in the concerned path. But the file url returns null
    Can you please help in solving the problem.
    Thanks and Regards,
    Mclaren

    Where (text area, label, button) do you want it to do it.
    What do you want it do (browse within the local text area, open the default browser...)
    Text area, use above, JButton (or alike) and open default browser, use ActionListener and JDIC.

  • Help need to get a fully functionin​g 3050A ALL-IN-ONE with a 110-303NA computer

    I have recently swapped over to a new computer, a HP110-303NA PENG2030T/8GB/1TB 2C14 and I am having problems connecting my HP 3050A ALL-IN-ONE J611 series printer. It says that - The Operating System of this computer is not supported. This software can only be installed on computers running the following Windows Operating Systems (1) Windows XP with Service Pack 2 or better (32 bit only) (2) Windows Vista (3) Windows 7. Upgrade the Operating System of this computer or install this software on another computer system.
    As I have a new computer running Windows 8, I thought there would be no problem. The printer works, but I am unable to use the scanner. Help.

    Hello there! Welcome to the forums @Majick 
    It seems as though you need the driver for Windows 8 to run the installation for your Deskjet 3050a. The installation disk most likely does not include the drivers for Windows 8, which could be why you are having a problem.
    Here is the direct link for the driver I have found for you. Download the driver and run the installation afterwards to have the printer installed: HP Deskjet Full Feature Software and Drivers
    I hope that helps you!
    Have a great Thursday
    R a i n b o w 7000I work on behalf of HP
    Click the “Kudos Thumbs Up" at the bottom of this post to say
    “Thanks” for helping!
    Click “Accept as Solution” if you feel my post solved your issue, it will help others find the solution!

  • Help Needed! Getting the files off the recovery disc and onto the computer. How?!?

    Okay, I shut down my computer a few hours ago like normal and I restarted it again when I wanted to go on it which was later this evening. A screen popped up that said press enter to continue and a bunch of code, so I did just pressed 'Enter' like it asked. Then another screen came up that said,  "Your computer could not start up, we are finding and fixing the problems, ect ect." And then there was a percentage at the bottom of how much was completed.
    So after it was finished, my computer started to totally restart, like I just bought the computer. It had me remake everything. And when it was all done EVERYTHING except for the programs that came with the computer where gone. I noticed a recovery disc and how it was almost full, and it said it has all my programs on it and to not delete it. Well okay if it has all my programs....
    How in the world do I get everything from the recovery disc back onto my computer? 
    Please comment on any information that can help!

    The recovery partition on the hard drive does not have your programs/files. It holds the files to reinstall Windows and all original software/drivers that came on the laptop. In other words, it does exactly what just occurred.
    ******Clicking the Thumbs-Up button is a way to say -Thanks!.******
    **Click Accept as Solution on a Reply that solves your issue to help others**

  • RE: HELP, Need to get SMS off phone

    The screen cracked on my palm pre (sprint) and nothing is readable. I can still connect it to my PC and in 'My Computer' can go into it and see all my pics, mms, etc. However, it doesn't show past text messages. There is a certain conversation via SMS that I NEED for court. This there any program where I can copy my phones entire hard drive to my PC? I don't care about the pics, mms, ringtones, etc......just need those SMS messages. Thanks for any help! I REALLY appreciate it.
    Thanks,
    JC 
    Post relates to: Pre p100eww (Sprint)

    m8,
    Just do a backup by pcsuite & then when your phone got fixed do the restore. If you plan to replaced that damage phone, get the latest pcsuite that support that phone & the one you plan to buy then do the restore on that phone. The latest version of Nokia pcsuite supports backup/restore to a different phone model.
    Message Edited by android on 15-Apr-2008 02:05 PM
    Knowledge not shared is knowledge wasted!
    If you find it helpfull, it's not hard to click the STAR..

  • Help need in getting thread join to actionperformed event.

    Hi,
    I am trying to building a small application which should give me the following functionality.
    My main function should span two windows. One window(1) will be receiving the input from the user and after the user enter a string and press the OK butten, the other window(2) should display this string and first window should set unvisible.
    To have this function working my window(2) should wait for the window(1) ActionPerform event complete and receive the message from it.
    Can any of you please help me getting some hints or sample codes for this action to be done.
    Thanks.

    Varad,
    Not sure what you are suggesting is what I am looking to do. I believe with your example here that I would need to create a new item table in my current DB in order to recall this data. This table would be populated with the items I selected (checkbox) from the original page. This is one solution, but the issue is that this is dynamic and these values would change as a new search is generated or different values are selected.
    Is there anyway in which to make (code) in ApEx so as that the values (i.e. P1_items 123 : 234 : 456) (note that these items are defaulted to colon delimitation by ApEx) are properly formatted so as SQL can read them as independent items. Note if I simply rewrite the original SQL script and replace the :P1_item with generic values (123 , 234 , 456) the SQL operates as intended.
    Thank you for your support and help,
    Randy

  • Help needed regarding getting jnlp

    Hi all,
    we need help regading java web start. We are downloadng some set of jar files to the client side using JNLP. With these jar files jnlp launches a swing base application in the client side and interacts with server application depoyed in WebSphere. In order to launch this application IBM Jre is needed in the client side. But IBM Jre can not install in non IBM meachines. So, we planing to make jar file of Jre and download it along with the rest of the jar files. After that we want to install in some directory in the client meachine and use that JRE to launch application. Now we are couple of problems with this approach.
    1) To extract the Jre from the jar file we need the path, where these jars are downloaded.Even though we know the path "C:\Documents and Settings\Administrator\Application Data\IBM\Java\Deployment\cache" we can't hard code this, because user may change this location. The extraction program of this jar file in the client side is in one of the jar file that is downloaded. But here in the it is not able to recongnize relative path. So what we need is, is there any api to get this location of this path.
    2)Second, In order to launch the application with downloaded Jre we need to set the classpath for jars that are downlaoded with Jnlp. But after downloading these jar files to the client side they are renamed(prefixed with RM and RT). Now, how to set the classpath to these jar files.
    Here instead of JNLP if we use applet our problem will be solved. But we can't use applet because of client requirements.
    Anybody, please try to suggest me some thing with this problem.
    thanks,

    You might want to try posting your question to the Grid Control Forum.
    Enterprise Manager

  • I need help need to get rid of  abckground in a psd in motion

    when I save my psd in photoshop...I keep all the layers....I then try to take it to motion 2 becuase I want to create a lower third.....for whatever reason I cannot get rid of the background in my psd file....I need some serious help here...is there something I need to do differently in photoshop....anyhelp woul dbe appreciated....i even go to the layers section in motion..and when I click on any of the layers that pertain to my psd file the whole image dissapears....mind you it's only a picture of several stacks of records..with a black glow on it...to seperate the records from the background video I am importing into motion...please help

    i fixed it.....the original image was saved wrong in the first place...... < </div>
    Ah, user error. Welcome to the "Doh! Club." We're all members but some of us won't ever admit it.
    Please mark this thread ANSWERED.
    bogiesan

  • Help needed with getting Audio signal through to Mac Book Pro (using Logic 9 & Behringer Xenyx 1204USB mixer)

    Ok so I am sure I have everything set up correctly,
    Logic has recognised and is using the mixer, I have sound coming through the headphones when I put in a drum sample onto audio track, no signal going in from audio using the first channel. Audio channel is set up with correct inputs & outputs. USB setting used on mixer......phantom tried on and off with the condenser mic I am using.....still no luck not even changing from mi to guitar. No signal when recording audio...... AAAHHH HELP! Racking my brains!
    Thank you in advance

    Kudos to figuring it out yourself.
    Yes, Logic is geared to the professional user, you will need to set up the program to your particular way of working, Logic was well developed for professional use long before Apple purchased it, it's not an Apple program per se. It's complex and offers a myriad number of choices so that it can be configured to many styles of working, there's often 3 or 4 ways to perform the same function.
    Logic insists the user educate themselves... which is a good thing.
    Here ya go! 
    http://documentation.apple.com/en/logicpro/
    "Exploring Logic Pro" is a good one to start with.
    Also in the main manual... "Setting Up Your System"

  • Help Needed with getting Started With Office 365 Development C# Rest API

    We have a O365 Tenant Setup with a Federated Active Directory Setip we want to be able to right code that will connect to our tenant and perform basic CRUD operations against it (ex. Creating mail boxes)
    The problem is we want this to be contained in a CLR trigger In SQL so say if a new user is added to our user table then we would create a new AD account for that user and also create a mailbox.
    But I cannot find and example on how to connect to Office 365 using the REST API (Not the SDK because you can not add the connected service to a class library) and before the required actions that we need to do. All the example I have found are with the
    SDK API and/or require window 8 and that is also not an option.
    Please help I do not know where to start, and I would love to see some examples done in c# and not using the SDK.
    Thanks,
    Andrew Day

    Hi,
    >> Instead of SharePoint URLs I would use the O365 API URL?
    Yes, in my sample code, I was accessing the File resource by using the O365 File API. In your case, you need to acquire the token to access the Mail resource and use O365 Mail API.
    By the way, I think the article
    Understand Office 365 app authentication concepts will help you to understand the authentication process in Office 365 Development.
    >> Why can I not use the SDK API with a class Library?
    Actually, you are able to reference the Office 365 .NET SDK in the class Library. But the class library project type was not supported by Visual Studio Office 365 Development Tool. As a workaround,
    you can reference the SDK manually in your project.
    Since your original question is about “getting started with Office 365 Development C# Rest API”, if you have more questions about the Office 365 SDK, I will suggest you posting a new thread
    to discuss the Office 365 SDK. It will involve more other community members to share their ideas and experience on a specific a question and for others who had a similar question could also find the valuable information quickly.
    Regards,
    Jeffrey
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Help - Need to Get Max(Date) from An Unrelated Table in PowerPivot

    I have two tables in my Power Pivot model:
    Table A (a many table)
    Asset    
    SerialNumber                   
    User
    CTUT111                             
    YC112233                                            
    Bob
    CTUT222                             
    ZZ221144                                            
    Susy
    CTUT222                             
    ZZ221144                                            
    Larry
    CTUT333                             
    AB332244                                           
    Bob
    Table B (a many table, a CSV import from another system)
    Asset                    
    SerialNumber                                   
    CheckIn_Date
    CTUT111                             
    YC112233                                            
    6/15/2014
    CTUT111                             
    YC112233                                            
    6/20/2014
    CTUT222                             
    ZZ221144                                            
    6/18/2014
    CTUT333                             
    AB332244                                           
    6/20/2014
    I know it appears odd that Table B would have two entries for the same Asset (CTUT111), but it does.
    I know I could write a SQL query that gave me the MAX(CheckIn_Date), but I’m not staging these datasets in a SQL server first. 
    I’m pulling directly from CSV tables.
    I don’t want to have bridge tables either, if possible. 
    So, I’m left with a many-to-many situation in Power Pivot.
    I want to add a Calculated Column to Table A, called ‘Latest CheckIn Date’ – which I get from Table B, matching on Serial Number.
    So, when I’m done, I would expect the value for Asset=CTUT111 to be 6/20/2014 (since it’s the MAX of a value of dates)
    I’m trying this pattern from Marco Russo in which you don’t need to relate two tables to exchange information, but it doesn’t appear to be working.
    =CALCULATE (
    MAX ( VALUES ( TableB[CheckIn_Date] ) ),
    FILTER (
    TableB,
    'TableA'[SerialNumber]
    = TableB[SerialNumber]
    I’ve also tried to use LOOKUPVALUE, but I can’t seem to figure it out.
    Would appreciate the help.
    Thanks in advance.
    -Eric

    Hi Eric,
    Please, try this one formula:
    =CALCULATE (
                MAXX ( VALUES( TableB[CheckIn_Date] ); TableB[CheckIn_Date] );
                FILTER (
                    TableB;
                    'TableA'[SerialNumber] = TableB[SerialNumber]
    P.S. In my locale I use ";". According to your locale you should use ",".
    Truly yours,
    Paul

  • Help needed to get started

    Hi I am very new to Solaris and had not even seen what a UNIX screen looks before. The sys admin person left so it is all upto me to take care of the systems. That is a good thing, I'll learn, but I need some help. I have a brand new Sun V880 box sitting in the box. I have to install Solaris 10 & then Oracle 10g on it.
    As I mentioned, I am very new to the world of Solaris. I don't even know how and where to get Solaris installable CD and whether I need license. Also I know that Solaris installation is not like XP that I just run setup.exe.
    Could someone please guide me as where and how do I get started. I don't want anyone to do my work, but I need guidance. I know about Oracle 10g CD's but could someone tell me how do I begin with Solaris 10.
    The CD
    license
    parmaeters
    kernal settings
    etc.
    Any help and guidance is appreciated. Thanks in advance.

    hello,
    you can download the solaris 10 install iso's directly from sun (look under products). as far as the licensing goes, read the aup. i strongly suggest getting a book on unix basics, unix security, and another on administration. unix can be very complicated to learn how to setup and secure properly. i dont want to discourage you, but you are going to need to spend a fair amount of time on this one (learning what everything is, device names, services, package system, etc).
    good luck

  • Help needed to get content from SOAPMessage response

    hi All
    i have a small problem with accessing the content of a SOAPMessage. the soap message would look like :
    <?xml version="1.0" encoding="UTF-8"?><soap:Envelope xmlns:soap="http://schemas.
    xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance
    " xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><GetAvailabilityRespon
    se xmlns="xxx"><Get
    AvailabilityResult>Y1</GetAvailabilityResult></GetAvailabilityResponse></soap:Bo
    dy></soap:Envelope>
    my problem is that i can only get a value from
    Source sourceContent = replySoap.getContent();
    which is the entire thing as above. how can i get the value from <GetAvailabilityResult> element? i tried to do the steps like, get the SOAP part, and then the SOAP Envelope and then the SOAP Body from SOAPMessage, but all turned out to be null. only the content has a value. thanks for ur help in advance.

    When I open scanner and camera wizard on my computer, it does try to communicate with the phone. Then a box shows that it is imagining device is busy, or may be in use by another application. I can choose to cancel or wait till the device will be available. When I open properties it does the same, it never opens the properties, Is that helpful? .

Maybe you are looking for

  • New Patch in XML Publisher

    Hello Tim, In your announcement for the new patch, i think you haven't specified the new patch number. Below is your post. Thank You. This is a patch for Template Builder 10.1.3.4 and 10.1.3.4.1 The patch address the following issues: +8463992 - INCO

  • FileSystemTree and TreeItemRenderer random selected Checkboxes

    When implementing Three State Checkbox Tree solution on a FileSystemTree, the checkboxes will randomly change states while scrolling. This happens when the checkbox leaves the viewable area. The state of the check box is being held within a ModelLoca

  • Mouse Move - Track X / Y

    Hi guys, I'm trying use the attachEventListener(MOUSE_MOVE,myListener) but I don't have success. When I use this code in Internet Explorer it's work fine but if I use this code in Firefox is isn't work. I need that code it work in Firefox. Anybody ca

  • Ipod classic 5th gen not working

    I get a big red "X" with it pointing to Apple's support web page for the ipod, as well as the appearance of the Apple logo.  I tried going to the web page and troubleshooting, but to no avail. Help!

  • Why do i get chrome and google toolbar?

    Hello, This morning flash asked me to update to the latest flashplayer. After clicking "download", explorer starts and on the site there is a button "update". After clicking on the button, not only flash gets updatet. Chrome and google toolbar is als