Problem replacing characters

Hi,
I'm trying to replace a # with a � in a unix environment using a String.replace, but unix won't recognise the �. It just prints out a ? if I print to screen or a \243 if I print to a file. If I move this file back to windows, it contains ��. I'm very confused. Please help.
Thanks.
Oh, here's a copy of the test code of where I'm upto at the moment after alot of messing about. Feel free to disregard this code if I'm barking completely up the wrong tree.
    public static void main(String[] args) throws Exception {
        StringBuffer stb = new StringBuffer("#1234");
        int indx = -1;
        while ((indx = stb.toString().indexOf("#")) != -1) {
            ByteArrayOutputStream baos = new ByteArrayOutputStream();
            baos = new ByteArrayOutputStream();
            baos.write((new String("�").getBytes("UTF-8")));
            String st = baos.toString("UTF-8");
            System.out.println("st = " + st);
            stb.replace(indx, indx+"#".length(), st);
        System.out.println("buffer: " + stb.toString());
        //this is just here to see what happens if I write
        //the � to a file
        FileOutputStream fos = new FileOutputStream("file.txt");
        fos.write((new String("�").getBytes("UTF-8")));
        fos.flush();
        fos.close();
    }

For character replacement, it's more efficient to use:
str = str.replace('#', '�'); // where str is a string
You don't need UTF-8 encoding if the Unicode characters are in the ANSI range: U+0000 - U+00FF. Just use the default encoding. When you view the file, make sure select a font that has the glyph for that charater. On Windows, Tahoma, Courier New, or Times New Roman would suffice.
For those beyond ANSI, then UTF-8 comes into play. Use OutputStreamWriter(fos, "UTF8") when write to file. Check http://java.sun.com/docs/books/tutorial/i18n/text/stream.html for usage. Win9x/Me Notepad can't read UTF-8 encoded files, but WinNT/2K/XP can.

Similar Messages

  • Problem in replacing characters of a string ?

    Hello everybody,
    I want to replace a few characters with their corresponding unicode codepoint values.
    I have a userdefined method that gets the unicode codepoint value for a character.
    1. I want to know how to replace the characters and have the replaced string after the comparision is over in the for loop in my main.
    Currently , i am able to replace , but i am not able to have the replacements done in a single variable.
    The output of the code is
    e\u3006ame
    ena\u3005e
    But i want the output i require is,
    e\u3006a\u3005e
    Please offer some help in this regard
    import java.io.*;
    class Read1
         public static void main(String s[])
             String rp,snd;
             String tmp="ename";
             for(int i=0;i<tmp.length();i++)
                 snd=getCodepoint(tmp.charAt(i));
                 if(snd!=null)
                    rp=replace(tmp,String.valueOf(tmp.charAt(i)),"\\u"+snd);
                    System.out.println(rp);
    public static String replace(String source, String pattern, String replace)
         if (source!=null)
             final int len = pattern.length();
             StringBuffer sb = new StringBuffer();
             int found = -1;
             int start = 0;
             while( (found = source.indexOf(pattern, start) ) != -1)
                 sb.append(source.substring(start, found));
                 sb.append(replace);
                 start = found + len;
             sb.append(source.substring(start));
             return sb.toString();
         else return "";
    ...,Any help in this regard would be useful
    Thanks
    khurram

    This manual replacement thingy reminds me of quite an old technique, when
    64KB of memory was considered enough for 20 users (at the same time that is!)
    Suppose you have a buffer of, say, n characters. Starting at location i, a region
    of chars have to be swapped with bytes starting at location j >= i+l_i; the lengths
    of the two regions are l_i and l_j respectively.
    Suppose the following method is available:public void reverse(char[] buffer, int f, int l_f) {
       for (int t= f+l_f; --t > f; f++) {
          char tmp=buffer[f]; buffer[f]= buffer[t]; buffer[t]= tmp;
    }i.e. the above method reverses a region of characters, starting at position f
    with length l_f. Given this simple method, the original problem can be solved
    using the following simple sequence:reverse(buffer, i, j+l_j);
    reverse(buffer, i, l_j);
    reverse(buffer, i+l_j, j-i-l_i);
    reverse(buffer, j+l_j-l_i, l_i);Of course, when replacing characters we don't need the last reversal.
    kind regards,
    Jos (dinosaurus)

  • Address book: Find and replace characters?

    Hi all,
    I just imported VCF file from Outlook to Address book. I am in Iceland and the Icelandic characters came wrong. Is there any way to batch find and replace characters in Address book? That is in individual cards.
    Thanks,
    Hilmar

    I believe the only way would be to write an AppleScript.

  • Problem replacing  chart axis title  with &string. syntax

    Apex 4.1.1
    Hi,
    I am having a problem replacing a chart axis title with substitution syntax &P5_MYFIELD., where P5_MYFIELD is an item with Source Type PL/SQL Function Body:
    begin
    return web_message.show('LASTNAME', 'dk');
    end;
    The Item is defined on the same Page as the chart in a different region. I can see that function is working ok, because the return value is displayed in P5_MYFIELD.
    There is a second item in an other region on the same page where the source value is defined with substitution syntax &P5_MYFIELD. It also displays the expected value. But when I use the string &P5_MYFIELD. as axis title it is not displayed.
    I also defined a field P0_MYFIELD on Page Zero with the same function, when I reference that with &P0_MYFIELD. as axis title on Page 5 the value is displayed correctly. I tried the same with a field on Page 1, &P1_MYFIELD. and it is displayed correctly.
    I think, the chart axis title must be substituted before the item P5_MYFIELD is executing the PL/SQL function body to get its value. Can anyone tell me why?
    We want to use string substitution syntax to translate all our labels in different languages. I would like to create hidden items with source type PL/SQL function body for all labels on a page and reference these values as label definitions. I would like to place them on the same page as the labels.
    Thanks
    Anne

    I started the application again and now also the Items are not displayed, only the message 'Label not defined', so I probably did something wrong with the computation. Why the correct values were shown during the first run, I do not know, maybe i did not logout in between.
    Here is the debugging information, but I cannot see any error message:
    0.02844 0.00038 Computation point: Before Header 4
    0.02881 0.00032 ...Perform computation of item: P5_CYCLE, type=FUNCTION_BODY 4
    0.02913 0.00060 ...Performing function body computation 4
    0.02973 0.00464 ...Execute Statement: declare function x return varchar2 is begin begin return web_message.show('CYCLE','de'); end; return null; end; begin wwv_flow.g_computation_result_vc := x; end; 4
    0.03437 0.00042 ......Result = Wurf 4
    0.03479 0.00046 ...Session State: Save "P5_CYCLE" - saving same value: "Wurf" 4
    0.03526 0.00027 Processes - point: BEFORE_HEADER 4
    0.03553 0.00027 ...close http header 4
    0.03580
    Edited by: Anne-Marie Rosa on Jun 8, 2012 10:09 AM
    Now the correct value is displayed again in the P5_MYFIELD, because I had to set the item source back to PL/SQL Function body, but I am still getting the chart error and the chart is not displayed.
    Edited by: Anne-Marie Rosa on Jun 8, 2012 10:17 AM

  • ThinkPad L440, 20AS I have having problems replacing the VPD

    ThinkPad L440, 20AS I have having problems replacing the VPD (serial number / model number) I am using the latest maintenance disk 1.86 but it will not allow an 18 digit string 1S20ASS09xxxxxxxxx anyone else having this problem and found a fix?
    Moderator Note; s/n edited to prevent possible abuse
    Solved!
    Go to Solution.

    Hi Niveknz, welcome to the forums,
    you probably need to contact your service partner support administrator about this; they'll be in the best position to assist you.
    Andy  ______________________________________
    Please remember to come back and mark the post that you feel solved your question as the solution, it earns the member + points
    Did you find a post helpfull? You can thank the member by clicking on the star to the left awarding them Kudos Please add your type, model number and OS to your signature, it helps to help you. Forum Search Option T430 2347-G7U W8 x64, Yoga 10 HD+, Tablet 1838-2BG, T61p 6460-67G W7 x64, T43p 2668-G2G XP, T23 2647-9LG XP, plus a few more. FYI Unsolicited Personal Messages will be ignored.
      Deutsche Community     Comunidad en Español    English Community Русскоязычное Сообщество
    PepperonI blog 

  • How do i "when the ACPI mode is enabled (by default) under Windows 2000. To fix the problem, replace the gpibpci.sy​s file on your machine" Where do i go to do this?

    I keep getting an error message on the blue screen of death. Beginning dump of physical memory. To fix it a messgae board said "when the ACPI mode is enabled (by default) under Windows 2000. To fix the problem, replace the gpibpci.sys file on your machine with the one that is attached below and then reboot the machine." Where do i go to add this file?

    I will get this error randomly, once when I was opening a file on another computer on my network, once when I was logging onto to my bank website on the internet, and another when I was searching through my d drive. Nothing to difficult, I do not even have other programs running when it happens sometimes. Thanks for any help!

  • VBA Word Find and Replace characters but excluding certain characters

    I am trying to write VBA code in Word that I will eventually run from a VBA Excel module. The aim of the project is to find specific strings in the open Word document that have length of either one or two characters and are of a certain format, and replace
    them with other strings in the same format. This is to do with transposing (i.e. changing the musical key) of chord symbols in a songsheet in Word. The Find and Replace strings are contained in ranges in an Excel workbook, which is why I want to eventually
    run the code from Excel. I'm much more experienced in writing VBA code in Excel than in Word, and I'm fairly confident with transferring the 'Word VBA' code into an Excel module.
    At the moment I'm trying out code entirely in Word, and I've come across a stumbling block. For example, I want it to Find "A" and replace with "B",
    BUT only if the "A" is NOT followed by "#" (sharp) or "b" (flat).
    Here is the code I've got in Word VBA, which I obtained by editing code produced by the recorder:
    Sub F_R()
    'Find text must have specific font
    With Selection.Find.Font
    .Bold = True
    .Underline = wdUnderlineWords
    .Superscript = False
    .Subscript = False
    End With
    'Replacement text must have specific font
    With Selection.Find.Replacement.Font
    .Bold = True
    .Underline = wdUnderlineWords
    .Superscript = False
    .Subscript = False
    End With
    'Find & Replace strings
    With Selection.Find
    .Text = "A" 'hard-coded here for testing, but this will
    'eventually be referenced to a cell in Excel
    .Replacement.Text = "B" 'hard-coded here for testing, but this will
    'eventually be referenced to a cell in Excel
    .Forward = True
    .Wrap = wdFindContinue
    .Format = True
    .MatchCase = True
    .MatchWholeWord = False
    End With
    Selection.Find.Execute Replace:=wdReplaceAll
    End Sub
    For the Find & Replace section I want to do something like:
    With Selection.Find
    .Text = "A"
    .Text <> "A#"
    .Text <> "Ab"
    .Replacement.Text = "B"
    End With
    - but this produces a syntax error, presumably because you can have only one .Text line (or it won't accept <>?)
    I tried adopting the way of excluding chars when using the Like operator, and while it compiles, it will not replace
    any "A":
    With Selection.Find
    .Text = "A[!b#]"
    .Replacement.Text = "B"
    End With
    I suspect that I'm going to have to change tack completely in the way I'm doing this. Do you have any suggestions, please?
    The chord names/symbols are preceded/succeeded by either spaces or paragraph returns and can look like these, for example (all Font Bold and Underlined words only):
    C<sup>7</sup>
    Dm<sup>7</sup>
    Eb<sup>-5</sup>
    Bb<sup>+11</sup>
    F#m<sup>7</sup>
    i.e. [ABCDEFG][b # | optional][m |optional][- + | superscript, optional][2 3
    5 6 7 9 11 13 | superscript, optional]
    The crux of my problem is that the note A should be treated as entirely distinct from Ab or A# (and similar for other flattened/sharpened notes).
    Sorry for long post.

    Hi Ian,
    It is not easy to find Microsoft forums. However this forum is for the Visual Studio Net version. 
    Try this forum for VBA.
    https://social.msdn.microsoft.com/Forums/en-US/home?forum=isvvba
    Success
    Cor

  • Find and replace characters in file names

    I need to transfer much of my user folder (home) to a non-mac computer. My problem is that I have become too used to the generous file name allowances on the Mac. Many of my files have characters such as "*" "!" "?" and "|". I know these are problems because they are often wild cards (except the pipe). Is there a way that I can do a find and replace for these characters?
    For example, search for all files with an "*" and replace the "*" in the file name with an "@" or a letter? I don't mind having to use the terminal for this (I suspect it will be easier).
    Is this possible? Does anyone have any suggestions?
    Thank you in advance for any help you may be able to provide.
      Mac OS X (10.4.8)  

    Yep.
    "A Better Finder Rename" is great for batch file renaming.
    http://www.versiontracker.com/dyn/moreinfo/macosx/11366
    Renamer4mac may be all you need.
    Best check out VersionTracker. In fact everybody should have this site bookmarked and visited daily.
    http://www.versiontracker.com/macosx/

  • Font problem - special characters sometimes displayed incorrectly

    I have a problem with the fonts installed on my computer: With some of them special characters (mainly german umlauts) get replaced by other fairly random symbols. My first guess was broken fonts, but the behaviour is completely inconsistent: In some apps they are displayed correctly, in some not, sometimes it even changes within one app:
    Screenshot, wrong symbols marked red, correct symbols marked green.
    Note that Exaile consistently displays them wrongly, while Pidgin does alright in the buddy list but screws up in the conversation window [edit: See below] and Audacious behaves differently even within one window! Adding to this the behaviour changes depending on the font. Most fonts are alright (so far all default fonts are, but not all installed later (manually or via pacman) are faulty), within the faulty ones it depends on the font which apps work and which don't, e.g. Bauhaus will work perfectly except that the Pidgin conversations can't display '€', Santana works for Audacious, but fails completely in Pidgin and Exaile, while Petita (the one from the screenshot) is all over the place. In some cases one font package contains different weights of the same font and those will behave completely differently.
    All kinds of text editors work fine with all kinds of fonts, so do all file managers I tested.
    Any idea as to what might be the source of this problem? How can one app interpret one ttf-file differently depending on where it uses it?
    [edit: I was mistaken: Pidgin screws up consistently in all it's windows. It's just inconsistent with other apps: In the screenshot for example 'ü' in Pidgin works, 'ä' and 'ö' don't, in Exaile all three don't. This is insane!]
    Last edited by lastchancetosee (2011-01-15 12:21:21)

    I downloaded the Petita font by Manfred Klein and checked the mapping with Fontforge.  Fontforge is reporting many, many errors with the mapping to Unicode, such as,
    The glyph named breve is mapped to U+0005.
    But its name indicates it should be mapped to U+02D8.
    Most likely, the fonts with the errors were designed for a different operating system.
    Last edited by thisoldman (2011-01-15 16:06:49)

  • Replace characters in chat text

    I was written a small applescript to replace some characters in chat message. Here is my code.
    property searchList : {"live"}
    property replaceList : {"love"}
    to switchText of t from s to r
       set text item delimiters to s
       set t to t's text items
       set text item delimiters to r
       tell t to set t to beginning & ({""} & rest)
       t
    end switchText
    to convertText(t)
       set d to text item delimiters
       considering case
           repeat with n from 1 to count searchList
               set t to switchText of t from my searchList's item n to my replaceList's item n
           end repeat
       end considering
       set text item delimiters to d
       t
    end convertText
    using terms from application "Messages"
       on message sent theMessage for theChat
           try
               return convertText(theMessage)
           end try
       end message sent
       on message received theMessage from theBuddy for theChat
           return convertText(theMessage)
       end message received
       on chat room message received theMessage from theBuddy for theChat
           return convertText(theMessage)
       end chat room message received
    end using terms from
    This code worked fine for Yahoo account, but it dont work when i received messages from iMessage and Jabber account. I tried to look into Alerts event and i found "Message received in active chat" ,maybe iMessage and Jabber account use this event to alert received message, but the problem is this object not defined in applescript. How can i define it, or make this code work with  iMessage and Jabber account.

    after long long times for google and test myseft, i found yahoo account have problem too, because active chat why is apple dont define this object ""Message received in active chat"'

  • Problem latin characters

    Hi!
    We are actually working with Flex and we have some problems
    to deal with latin characters like áéíóú
    and ñ. Static texts are correctly shown, but dynamic texts
    not. These dynamic texts come from the database and are mapped to
    actionscript objects from java objects. The problem is that latin
    characters are replaced with white squares.
    We have checked the content of the java objects, printing
    their content and the texts keep the original charset, so, we think
    the problem is in the mapping to the actionscript objects.
    We are using RemoteObject and the message protocol amf. We
    have looked for configuration directives to change the charset but
    we didn´t success :(
    I know it's a very specific problem, but it you could give me
    any clue to solve this I would be very pleased.
    Thanks in advance! (Sorry for my english, I hope you could
    understand everything I wrote).

    I think after all it is a problem with the either:
    a. OS installer, which should really try to delete fonts which are duplicated by new system fonts
    b. OS which should give precedence to new system fonts over old system fonts where there are two the same, especially when the system fonts are in /System/Library/Fonts and the old ones are in /Library/Fonts
    The major annoyance is that this problem appeared with Leopard and took me hours of searching to figure out its origin - when you don't know if it is a character entry problem (which I thought) or a character display problem (which it turned out to be). In the end the fix was simple - delete the superceded fonts.

  • Problems whit characters (spanish)

    Hi all!
    I?m havin some problems using WLS 6.1 SP3 over Sun OS 5.8. The jsp?s are in Spanish (Mexico). When i write the JSP code, i type, for example: "Informaci?n", but, when i open the jsp file in my browser, it show me "Informaci?n". The "?" char replaces every char that contains an accent, and the "?" char too, and the "?" too (eg: N?). The Spanish uses a lot of accents, like Informaci?n, B?sico, C?digo, Transacci?n, Tr?fico, etc.
    Can anyone help me with this???
    Thanks to all!
    Rapeteiro

    UTF8
    "Raghuram Bharadwaj C" <[email protected]> wrote:
    >
    Nohmenn BABAI,
    I have a similiar problem where I need to support both spanish and greek
    special
    character set. What character set should I use in the WebLogic Startup
    script
    that supports both Greek and Spanish special characters.
    I am setting the character set in the WebLogic startup script using the
    command
    as below:
    -Dfile.encoding=ISO8859_1
    Currently it supports only spanish special characters. Is there a way
    to support
    both greek and spanish special characters?
    Waiting for your suggestions/response.
    Many Thanks in Advance,
    C R Baradwaj
    "Nohmenn BABAI" <[email protected]> wrote:
    Rafael,
    Please consult :
    http://edocs.beasys.co.jp/e-docs/wls61/jconfig/wls61jconfig.html
    Using the right encoding to display the spanish accentuation, you should
    be
    able to resolve the problem (I guess for Mexican this should be something
    like es.ES.ISO-8859-1)
    Best regards
    Nohmenn BABAI
    BEA EMEA Support Engineer
    "Rafael Bustamante" <[email protected]> a écrit dans
    le
    message de news: 3dc6cc4b$[email protected]..
    Hi all!
    I?m havin some problems using WLS 6.1 SP3 over Sun OS 5.8. The jsp?sare
    in Spanish (Mexico). When i write the JSP code, i type, for example:
    "Informaci?n", but, when i open the jsp file in my browser, it showme
    "Informaci?n". The "?" char replaces every char that contains an accent,
    and
    the "?" char too, and the "?" too (eg: N?). The Spanish uses a lot of
    accents, like Informaci?n, B?sico, C?digo, Transacci?n, Tr?fico, etc.
    Can anyone help me with this???
    Thanks to all!
    Rapeteiro

  • Problem with characters in text field

    hi all
    i am missing a few characters, once i load text into a dynamic text field. chars are not missing per say; they are being replaced with empty squares.
    characters like the euro sign and accentuated german a letter.
    whats is weird is that other accentuated german letters do appear. so only a few selected are missing.
    How ive set up the fla:
    1) i've added 4 text fields to the stage in the font im using, Arial, one for each font style: normal, italic, bold and bold italic, and in all 4 fields ive embedded all latin characters (to include the german accentuaded characters and im guessing it's in the punctuation group that holds the euro sign, so that one is also embedded), besides lowercase, uppercase, numerical, and all the default groupd to include basic text.
    2) i've got a dynamic text field, created with createTextField, and setup the following ActionScript (2):
    this.createTextField("T_text",1,0,10,Stage.width-60,50);
    var myFmt = new TextFormat();
    myFmt.size = 12;
    myFmt.leading = 3;
    myFmt.font = "Arial";
    T_text.html = true;
    T_text.autoSize = "left";
    T_text.multiline = true;
    T_text.wordWrap = true;
    T_text.selectable = false;
    T_text.embedFonts = false;
    T_text.textColor = "0x666666";
    T_text.htmlText = _global.gallery_1_image_text_1; // this holds the text im displayed, called in from a database.
    T_text.setNewTextFormat(myFmt);
    now, im calling text from a database.
    when calling the text from the browser  url bar, there's no chars missing.
    its just when i make this call from flash and load the text into the dynamic text field, that characters go missing.
    below is a link to a print screen of the faulty text that is displayed in flash's dynamic text field.
    http://img210.imageshack.us/img210/340/utf8.png
    any ideas? i mean, it seems that the arial font is missing a few accentuated characters! because the code i have setup loads other accentuated characters.
    anyone has seen this issue before and know how to solve it?
    regards

    no.
    you assigned your embedFonts property to be false.
    look, you can test if you've embedded fonts correctly by using:
    T_text._rotation=3;
    if you see no text, you're not embedding fonts correctly.
    so, use:
    T_text.embedFonts=true;
    and then test.  if you see no text, use:
    click on the upper right of your library panel > new Font > select Arial and tick the symbols you need to embed > tick export for actionscript and assign a linkage id (eg, ArialID). click ok.  then use:
    this.createTextField("T_text",1,0,10,Stage.width-60,50);
    var myFmt = new TextFormat();
    myFmt.size = 12;
    myFmt.leading = 3;
    myFmt.font = "ArialID";
    T_text.html = true;
    T_text.autoSize = "left";
    T_text.multiline = true;
    T_text.wordWrap = true;
    T_text.selectable = false;
    T_text.embedFonts = true;
    T_text.textColor = 0x666666;  // no quotes here.  this is a number
    T_text.htmlText = _global.gallery_1_image_text_1; // this holds the text im displayed, called in from a database.
    T_text.setTextFormat(myFmt);  // to format the above text, use setTextFormat().  if you want to format text added after this line, use setNewTextFormat()

  • Problem with characters Converting OTF Spool to PDF

    Hello All,
    Im working on ECC6.0 system. I have a Z report where it will take spool number and mail ID as input.
    It will check wheter the spool is of type OTF of ABAP List, according to that it will use the FMs ONVERT_OTFSPOOLJOB_2_PDF & CONVERT_ABAPSPOOLJOB_2_PDF.
    Now it will download the PDF internal table data into a file using OPEN DATA SET statement as shown below.
      OPEN DATASET gv_dsn FOR OUTPUT IN BINARY MODE.
    *Download the file to application server
      LOOP AT gt_pdf_output.
        TRANSFER gt_pdf_output TO gv_dsn.
      ENDLOOP.
      CLOSE DATASET gv_dsn.
    and it will ZIP the PDF as shown below.
    * open the file from application server for zipping.
      OPEN DATASET gv_dsn FOR INPUT IN BINARY MODE.
      READ DATASET gv_dsn INTO lv_content.
      CLOSE DATASET gv_dsn.
      CREATE OBJECT go_zip.
      go_zip->add( name = gv_file content = lv_content ).
      gv_zip_content    = go_zip->save( ).
    * Convert the xstring content to binary
      CALL FUNCTION 'SCMS_XSTRING_TO_BINARY'
        EXPORTING
          buffer        = gv_zip_content
        IMPORTING
          output_length = gv_file_length
        TABLES
          binary_tab    = gt_data.
    After that the ZIP file conataining the PDF will be sent as an attachement to the mail ID given as input.
    Now the problem is some characters of Czech are not coming properly when the attachement is opend once the mail is received. Can any one tell where the problem is and solution.
    Im getting the message "Can not extract the embedded front 'CourierNewL2'. Some characters may not display or print correctly." while opening the PDF in the ZIP attachment.
    Thank you.
    Best Regards,
    Sasidhar Reddy Matli.

    hi
    u also check the following link
    Re: how call FM otf to pdf in a report
    Re: otf to pdf
    Re: Error while converting OTF into PDF in CONVERT_OTF FM
    Re: Convert OTF to PDF problem
    Edited by: krupa jani on Jul 15, 2009 12:58 PM

  • Problem replacing a Mac Pro disk drive

    Yesterday, I received a pair of 500GB SATA drives for my Mac Pro and one 1.5GB SATA drive. I installed the two 500GB drives in slots 3 and 4 in my Mac Pro yesterday to install a fresh copy of Snow Leopard and than clone it to the second 500GB drive. No problem there at all. I am booted onto one of those disk drives now.
    Unfortunately, I am having a hard time installing the 1.5GB drive. I want to install it in slot 2, but for the life of me, I cannot get the sled's slider lock to unlock. It is on the orange color and it will not slide at all. Just for the heck of it, I tried sliding the locks on slots 3 and 4 where I put the other two drives yesterday and they are also stuck.
    Why were the sliders working fine yesterday, but today they are stuck? How can I replace the drive in slot 2 now? I am stumped as to why this was fine yesterday, but not now. I didn't even touch slot 2 yesterday.
    I want to install that 1.5GB drive to use it for Time Machine backups. I was going to try a pair of plyers, but I am concerned that I might do some damage.
    Any advise on how to fix this perplexing problem will be appreciated.

    The door latch is what 'unlocks' the sleds.
    Drive bay #1 can be difficult.
    Sounds like it wasn't closed properly yesterday or you didn't pull the latch all the way out and up.

Maybe you are looking for

  • Smart 2-to-a-page printing, without huge borders. Possible?

    I just poseted this in the feedback box, but maybe I should ask here too... does anyone know of a way to do smart two-up printing in OS X? By smart I mean that I want to print just the text, with the borders trimmed off, so that the text doesn't beco

  • How to delete another user?

    Could anyone please tell me how I can delete a user of my shared library? If I locate the itunes folder on my pc, and just delete their folder, music in my itunes ends up with a broken/missing file? Regards.

  • Rename RKF and CKF in query using ABAP

    Hi guys, I am supposed to rename RKF and CKF in query using ABAP.  (RKF: restricted key figures, CKF: calculated key figures) Right now, I am using FM RSZ_X_COMPONENT_GET to load query definition. I can find and rename all used RKF and CKF technical

  • Shuffling within playlist

    Can someone please tell me if it is even possible to shuffle within a playlist or does is do it by itself someone please help

  • Another Media Export Woe

    Do these time results make sense? I have the latest CS4 Production bundle updates Running with Vista Business 64bit with a lot of stuff turned off (I like the classic mode) ASUS P6T Deluxe Mainboard 12GB DDR3 1333MHz Memory i7 965 3.2GHz Extreme CPU