Convert SD reader to XD reader

It really bugs me how they've put a drive on the side which will only accept SD cards, when so many devices out there will do both SD and XD.
Has anyone come across any sort of hacks to achieve this?
My girlfriends camera is SD and mine is XD which makes it a bit of a pain in the *** as could just work so simply.
Thanks in advance

Hi Tom,
I was a looking at this a couple of weeks ago.
As far as I can see there is no way to use the SD slot for an XD card.
The nearest thing that I came up with as a solution was to use a micro SD card with Olympus's micro SD to XD card adaptor (MASD-1) in the camera, and the micro SD to SD card adaptor to read it in the MBP SD slot if you don't want to use a USB or FW card adaptor for the XD. Unfortunately even this approach will only work with reasonably recent Olympus cameras, as the adaptor itself won't work in the older ones (including one of mine )
Now that Olympus and Fuji have both announced that they are abandoning the XD card it is hard to see an ability to use it being incorporated in any subsequent models of MBP.
I'm not aware of any SD slot that can actually accept an XD card, though there are many multicard USB and even firewire readers out their of course.
Cheers
Rod

Similar Messages

  • How do I convert a read only word doc to a read only pdf file?

    How do I convert a read only word doc to a read only pdf file?
    Thanks, Linda

    Hi Linda,
    I just tried it, and was able to convert a Word .doc to to PDF, in spite of the fact that it was marked Read Only. Here are the instructions for uploading and converting to PDF with Acrobat.com:
    http://help.adobe.com/en_US/Acrobat.com/Acrobat/WS396AAA88-4AA4-4a40-87B8-004A5DC1E131.htm l
    Kind Regards,
    Michelle

  • Clone Production Database and Convert into Read Write Mode

    Hi,
    Please help me for below question...
    How to Create Test Database from Production Database without transporting backup of Production Database to Test Database and the Test Database should be in different directory structure and converting into read write mode?
    Please find me a solution as early as possible...
    Thanks & Regards
    Akhil

    if you don't need to move backup from prod to dev you need to create rman catalog and have access on it from dev server , after that you will be able to duplicate your prod to dev without moving backup and database will be in Read write by default .

  • Error converting a read string to type Double.

    I'm trying to read data stored in a text file, a mixture of strings and data.
    Using MyReader As New FileIO.TextFieldParser(source)
    Do
    intSampleCnt = intSampleCnt + 1
    strSample(intSampleCnt) = MyReader.ReadLine ' Reads a string like "filename.txt"
    dblOggLength(intSampleCnt) = CDbl(Val(MyReader.ReadLine)) ' <= Crash occurs here. Reads a number like 9.87654321
    ' additional code...
    Loop Until intSampleCnt = 10
    End Using
    Big problem: *I'm* not getting the error so I can't reproduce it. OTHER users are telling me they are getting the following error:
    System.InvalidCastException: Bringing the line "0.Au" to type "Double" is invalid. ---> System.FormatException: Input string had invalid
    format.
    No idea where "0.Au" is coming from. It's not in my file. Originally, I simply read the line and assigned it to the dblVariable (which worked for me). When users started reporting the error, I tried using:
    dblVar = CDbl(MyReader.ReadLine)
    When that failed, I tried:
    dblVar = CDbl(Val(MyReader.ReadLine))
    I must be on the wrong track. No idea why others are getting errors but not me. Any ideas? Thx.

    The first suggestion will set things up for you but you need to play with this
    Another suggestion is to place the culture code as the first line in the file i.e. to get the current culture code then change how data is written to the file
    System.Globalization.CultureInfo.CurrentCulture.Name
    Then read the file i.e
    Source text file
    fr-BE
    Somename 1 1000,56
    AnotherName 9,99
    Code
    Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
    Dim FileName As String = IO.Path.Combine(AppDomain.CurrentDomain.BaseDirectory, "France.txt")
    Dim style As NumberStyles = NumberStyles.Number Or NumberStyles.AllowDecimalPoint
    Dim culture As CultureInfo = CultureInfo.CreateSpecificCulture(IO.File.ReadAllLines(FileName)(0))
    Dim number As Decimal
    Using MyReader As New Microsoft.VisualBasic.FileIO.TextFieldParser(FileName)
    MyReader.TextFieldType = Microsoft.VisualBasic.FileIO.FieldType.Delimited
    MyReader.Delimiters = New String() {vbTab}
    Dim currentRow As String()
    While Not MyReader.EndOfData
    Try
    currentRow = MyReader.ReadFields()
    If Not currentRow.Length = 1 Then
    If Decimal.TryParse(currentRow(1), style, culture, number) Then
    Console.WriteLine("Converted '{0}' to {1}", currentRow(1), number)
    Else
    Console.WriteLine("Unable to convert '{0}'", currentRow(1))
    End If
    End If
    Catch ex As Microsoft.VisualBasic.FileIO.MalformedLineException
    ' You decide how to handle issues
    End Try
    End While
    End Using
    End Sub
    Results
    Converted '1000,56' to 1000.56
    Converted '9,99' to 9.99
    Detect Decimal separator
    System.Globalization.CultureInfo.CurrentCulture.NumberFormat.NumberDecimalSeparator
    Please remember to mark the replies as answers if they help and unmark them if they provide no help, this will help others who are looking for solutions to the same or similar problem.

  • Converting types/reading using java.io.file

    I have an existing method that reads a directory.
    File[] list = dir.listFiles();
    I populate a vector from this file list.
    vector.add(list);
    What I am currently trying to do is populate this vector from another source which happens to be another vector. I am basically replacing reading from a directory to reading from a vector that already has the file list. The problem I am having is that the value that I am populating the receiving vector with, the type needs to be "file".
    The vector that I am reading from contains string values of the filepath+filename
    Thanks.

    So, disregarding all that stuff about Vectors, your question is how to convert a String (of a certain form) to a File object? To answer that you could look in the API documentation for File and check out the available constructors. It appears that you have a pathname already, so the second constructor in the list, "new File(pathname)" is what you want.

  • How to convert data read in byte to decimal number?

    The following are a source code to read from a serial port, but i can't convert the data that i read to decimal number and write it on a text file.....can anyone kindly show me how to solve it? thanks
    import javax.comm.*;
    import java.io.*;
    import java.util.*;
    public class Read implements Runnable, SerialPortEventListener {
         // Attributes for Serial Communication
         static Enumeration portList;
         static CommPortIdentifier portId;
         SerialPort serialPort;
         static OutputStream outputStream;
         InputStream inputStream;
         Thread readThread;
         public static void main(String s[])
         portList=CommPortIdentifier.getPortIdentifiers();
         while(portList.hasMoreElements())
              portId=(CommPortIdentifier)portList.nextElement();
              if(portId.getPortType()==CommPortIdentifier.PORT_SERIAL)
                   if(portId.getName().equals("COM1"))
                        System.out.println( portId.getName());
                        Read ss=new Read();
              }     // end of while
    }          // end of main
    public Read()     {
    try{
              serialPort=(SerialPort)portId.open("Read", 2000);
    catch(PortInUseException e)     {}
         try{
              inputStream=serialPort.getInputStream();
              System.out.println(inputStream);
    catch(IOException e)     {}
         try{
              serialPort.addEventListener(this);
    catch(Exception e)     {}
              serialPort.notifyOnDataAvailable(true);
         try{
              serialPort.setSerialPortParams(9600,
              SerialPort.DATABITS_8,
              SerialPort.STOPBITS_1,
              SerialPort.PARITY_NONE);
              }catch(UnsupportedCommOperationException e)     {}
              readThread=new Thread(this);
              readThread.start();
         }//end of constructor
         public void run()
              try     {
                   Thread.sleep(200);
              }catch(InterruptedException e)     {}
         public void serialEvent(SerialPortEvent event)
              switch(event.getEventType())
                   case SerialPortEvent.BI:
                   case SerialPortEvent.OE:
                   case SerialPortEvent.FE:
                   case SerialPortEvent.PE:
                   case SerialPortEvent.CD:
                   case SerialPortEvent.CTS:
                   case SerialPortEvent.DSR:
                   case SerialPortEvent.RI:
                   case SerialPortEvent.OUTPUT_BUFFER_EMPTY:
                   break;
                   case SerialPortEvent.DATA_AVAILABLE:
                   byte[]readBuffer=new byte[8];
                   try{
                        while(inputStream.available()>0)
                             int numBytes=inputStream.read(readBuffer);
                             //System.out.println("hello");
                        System.out.print(new String(readBuffer));
                        }catch(IOException e)     {}
                   break;
                   }     // end of switch
                   try     {
                        inputStream.close();
                        }catch(Exception e5)     {}
         }          // end of serialEvent

    Is it a float or a double?
    For a float, the decimal should be 4 bytes (small numbers like 1.1 start with the byte 0x40). Convert these 4 bytes to an int, using byte-shifting would probably be easiest.
    int value = ((b3 << 24) + (b2 << 16) + (b1 << 8) + b0);//b# are bytesNow to convert it to a float, use
    Float.intBitsToFloat(value);Now if you want double percision, You will have 8 bytes instead of 4, and need to be converted to a long instead of an int through byte-shifting. Then use Double.longBitsToDouble(long bits) to get the double

  • Converting adobe reader pdf to excel

    I have opened up a pdf in acrobat reader. I have purchased the basic account but cannot convert to excel. how do i do this?

    What means "basic account"; what exactly did you purchase?  ExportPDF?
    And what means "cannot"?

  • How can I convert adobe reader and all its contents in my files to acrobat

    I have been wanting to convert all my adobe reader on file. I want them all in acrobat.com.

    Hi Shirley,
    You can get a free account to Acrobat.com and then upload the files from your computer to your cloud account. For more information, or to sign up, go to https://cloud.acrobat.com.
    Please let us know if you have additional questions.
    Best,
    Sara

  • Converting a Reader to an InputStream

    Is there a way to convert a standard Reader to an InputStream just like you can convert an InputStream to a reader VIA the InputStreamReader class.

    Hi,
    No, there's no easy way, and it's probably due to the fact that the reader can perform conversions.
    You can however read the data from the reader, create a String, get the bytes from the string and use a ByteArrayInputStream.. but it sounds bad. Why do you want to convert from a reader to a stream?
    Kaj

  • GoLive converts please read...

    Well, I've finally taken the plunge and purchased my first
    copy of Dreamweaver via the CS3 Web Standard Suite. My first
    impression is that it seems way too complex and is not as intuitive
    as GoLive. I'm sure much of this is due to the fact that I'm
    familiar with GoLive and I'm not with Dreamweaver.
    For those of you who have recently converted from GoLive to
    Dreamweaver, how was the transition? Are you glad you did it? What
    did you find was the best way to learn Dreamweaver?

    Was that you? I never left until the day after nobody knew
    what time it was.
    "Walt F. Schaefer" <[email protected]> wrote in
    message
    news:[email protected]...
    > Bravo!
    >
    > I think you'll like this story.
    >
    > Labor Day 1969 several friends and I attended the 4th
    day of a rock
    concert
    > at Int'l Motor Speedway in Lewisville TX (20+ miles N of
    Dallas on I35E).
    > Most of the bands had played at Woodstock. We got there
    mid-afternoon.
    Heard
    > several groups like Sam & Dave, Canned Heat and more
    (it was smoky there).
    > The night before they had played well into the early
    morning hours and
    > gotten complaints from the locals. So, just as it
    started getting dark
    they
    > announced the concert was over. Since we had gotten
    there midday we were
    > parked a long, long ways away. We had a cooler full of
    beer and MJ had
    > dropped by so we decided to just hang out until the
    crowd & traffic
    thinned
    > out.
    >
    > Maybe 45 minutes passed. Probably half the crowd (well
    over 100K) had
    left.
    > It was dark but we could see people moving about on the
    stage. Suddenly we
    > heard ever louder music...
    >
    > It was the Chicago Transit Authority (a.k.a. Chicago)...
    >
    > They were playing...
    >
    > "Does anyone really know what time it is?"
    >
    > --
    >
    > Walt
    >
    >
    > "Murray *ACE*" <[email protected]>
    wrote in message
    > news:[email protected]...
    > > Yeah - I think it was the 4th of July....
    > >
    > > --
    > > Murray --- ICQ 71997575
    > > Adobe Community Expert
    > > (If you *MUST* email me, don't LAUGH when you do
    so!)
    > > ==================
    > >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    > >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > > ==================
    > >
    > >
    > > "Walt F. Schaefer" <[email protected]>
    wrote in message
    > > news:[email protected]...
    > >>>>It'll be a walk in the park
    > >>
    > >> Saturday... In the park?
    > >> --
    > >>
    > >> Walt
    > >>
    > >>
    > >> "Murray *ACE*"
    <[email protected]> wrote in message
    > >> news:[email protected]...
    > >>> I'm not a GL convert, but I've watched them
    and many many others
    > >>> struggle up the slope since DW2, and I can
    tell you that the easiest
    and
    > >>> most productive way to make the change is
    to put both programs down,
    and
    > >>> spend some intensive time learning HTML and
    CSS. It'll be a walk in
    the
    > >>> park after that.
    > >>>
    > >>> --
    > >>> Murray --- ICQ 71997575
    > >>> Adobe Community Expert
    > >>> (If you *MUST* email me, don't LAUGH when
    you do so!)
    > >>> ==================
    > >>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    > >>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    > >>> ==================
    > >>>
    > >>>
    > >>> "kcrossley"
    <[email protected]> wrote in message
    > >>> news:[email protected]...
    > >>>> Well, I've finally taken the plunge and
    purchased my first copy of
    > >>>> Dreamweaver
    > >>>> via the CS3 Web Standard Suite. My
    first impression is that it seems
    > >>>> way too
    > >>>> complex and is not as intuitive as
    GoLive. I'm sure much of this is
    due
    > >>>> to the
    > >>>> fact that I'm familiar with GoLive and
    I'm not with Dreamweaver.
    > >>>>
    > >>>> For those of you who have recently
    converted from GoLive to
    > >>>> Dreamweaver, how
    > >>>> was the transition? Are you glad you
    did it? What did you find was
    the
    > >>>> best way
    > >>>> to learn Dreamweaver?
    > >>>>
    > >>>
    > >>
    > >>
    > >
    >
    >

  • Having problems extracting/convert Adobe Reader Pdf files to Adobe Digital Reader files.

    I am currently having problems trying to convert my Adobe Acrobat PDF file to and Adobe Digital Reader File.
    o

    What kind of problems?

  • Help converting or reading SOAP XML-attachment instead of payload

    Hi,
    I have to setup a webservice that excepts an xml-file as an attachment and read that xml-file as if it where the main payload of the message.
    The messages we receive holds all the data I need in the attachment instead of the data being in the SOAP-body itself. This isnt something I can change since this is a solution provided by amadeus e-travel and I have no chance of changing how they send data to us.
    I have searched and searched the forums but havent been able to find a solution(that I understand) to how I can access the xml-file either in a mapping-routine or by simply swapping the payload with the attachment all together.
    As of now I have a webservice that is functional and receives the call from the source(amadeus e-travel) without a problem. I can also see the attachment in SXMB_MONI where it looks like a perfect xml-structure. But I have no idea on how to access the attachment so that I can use the data inside it in an abap-proxy in our ECC-system.
    As far as I have read on the forums I cannot use the payloadswapbean in the SOAP senderadapter so that option is out. I have seen mention of a java-class for reading attachements in mapping-routines but sadly I'm not much of a Java-programmer and dont have access to one either at the moment. I would need a detailed explanation in order for a java-program to be a viable solution for me.
    Is there some trick I have missed here or blog that shows how to read xml-attachments in a soap-message?
    Is there any standard Java-code I can use to read the whole xml-structure from the attachment in a mapping-routine?
    Any help would be very much appreciated!
    Thanks in advance ,
    Halvor

    Option-1:
    This might be a crude way, but you can acheive by a 2 step process...
    Step1 (Scenario-1) - Receive XML-Msg + Attachment using SOAP Sender adapter. As we have payloadwaapbean module limitation in sender adapter. Let it be a passthru to receiver SOAP adapter. (Don't do any processing in integration engine, like msg mapping or thything). In Rx SOAP adapter,use payloadswapbean to swap XML msg with Payload and resent it to 2nd integration scenario...
    Step2(Scenario-2) - As you have the Attachment as main-payload, you can continue ur normal msg processing on it.
    Option2:
    SOAP messages can also be processed using AXIS-SOAP Adapter.. you can add XI module in it Check it if it might help you...
    http://help.sap.com/saphelp_nw04/helpdata/EN/45/a4a36de28552f7e10000000a1553f7/content.htm
    Regards,
    Siva Maranani

  • Attachment converting to Read Only

    Hello,
      I've created a form in livecycle that has signature fields.  The actual pdf has a microsoft word document (.doc) attached to it so people can add links to the form.  When I open the form and fill it out, then open the attachment and add links everything works fine.  However, when I sign the pdf form using the signature field, someone else who opens the pdf form and then the word document attachment can only see the attachment in Read Only mode.  Is there a way to stop the addition of a signature from making the attachment Read Only?

    Pl post details of OS, database and EBS versions.
    Menus cannot be made READ_ONLY - this attribute applies only to functions. You will have to build a custom menu with custom functions that are READ_ONLY, then assign the custom menu to a custom responsibility.
    R12: How To create read only responsibility (Doc ID 1290228.1)
    HTH
    Srini

  • Messages doesn't convert to read with away status

    Whenever my status is set to "away" (usually it's automatically), any messages I receive in that time don't get recognized as read, even if the messages window is open. Additionally, when replying and receiving more messages, the unread count goes completely out of whack, with no apparent rhyme or reason to the number. Furthermore, even when switching my status back to "available", the count remains messed up.
    The only solution I've found is to quit and restart the program, which works fine.
    Just wondering if anyone else is experiencing the problem.

    Does anybody have any idea?

  • Can't convert FileReader to java.io.Reader

    Hi
    I have a code segment that generates error during compilation of the source file: "Incompatible type for constructor. Can't convert FileReader to java.io.Reader.
         buffVideo = new BufferedReader (file)
         ^
    The code segment is:
    FileReader file;
    BufferedReader buffVideo;
    StreamTokenizer tokenVideo;
    String s;
    try {
         file = new FileReader (fileVideo);
         buffVideo = new BufferedReader (file);
         tokenVideo = new StreamTokenizer (buffVideo);
    import java.io.* is at the top of the .java file. It is a part of a definition of a new class. fileVideo is a String variable containing file name of a text file.
    Exactly the same .java source file compiles on a Windows 98 based machine, but not on a Windows 2000 Professional. I use version 1.1.6 as it is required by my current course.
    Can anybody suggest any resoultion for this problem, please?
    Thanks in advance

    Branko,
    Wow, my ID still works. Amazing, I haven't visited for years.
    Ged Byrne writes:
    Branko,
    This is a realy puzzler. My only guess is that you have a namespace
    conflict. The error message states:
    Can't convert File Reader to java.io.Reader
    It seems that there is another class called FileReader that is clashing
    with the on in java.io.
    Have you inadvertantly named something FileReader yourself?
    Perhaps your classpath is including something that contains a FileReader.
    Try declaring file as java.io.FileReader rather than just FileReader.
    I'm clutching at straws.
    Ged.

Maybe you are looking for

  • S076 SOP table for SD report (Sales Forecast Report ).

    Hi We are using S076 SOP table for SD report (Sales Forecast Report ).  This has only material number as key at present , where as we want to know if flexible planning will give material/shipto as key for forecast. Thanks In advance .

  • Secure link to iTunes unsuccessfull on only one user account ?

    I keep recieving the message in  the iTunes store diagnostics that  " secure link to iTunes unsuccessfull " , but only on one user account. Other connections are O.K. Help ?

  • Oracle ADF 12c SDO :- Failure in SDOSerializer.deserialize

    Hi, I am working on ADF 12c  and I have created a SDO service. while testing the SDO service from SOAP UI, I am getting below error         <env:Fault>            <faultcode>env:Server</faultcode>            <faultstring>Failure in SDOSerializer.dese

  • DBCA (10gR2) in solaris 10 doesn't create DB, has 0 errors

    Hi, I have oracle 10.2.0.1 installed on a Solaris 10 SPARC box, and am trying to create a database. When I installed Oracle, I originally opted to create a new database, but when it got to the DBCA section, the installer seems to pause with the resul

  • MacBook Air 11 inch frustration

    Hello, I just bought an 11inch mac air and tried to install flash 11, it seems that the computer thinks its installed yet it doesnt work when i try to use it on a site or do the adobe blank box test. I checked the specs and it seems that my air is on