[SOLVED] WARNING: bad format of line 333654 of /etc/fstab

Hi everyone,
I know that there are couple of topics concerning my problem but non of them  was helpful, because my computer doesn't even boot.
Here's how it started:
I was trying to mount a game for the first time and something went wrong. I got message in terminal saying: the file couldn't be found in /etc/fstab so I pasted the iso image in /etc/fstab. I quit trying to mount and changed the appearance of my desktop (changed the theme, wallpaper the size of the folders etc.) and restarted the computer. When the booting started everything was normal until the message  WARNING: bad format of line 333654 of /etc/fstab showed up it started to go on and on and on - the same message with different numbers and it doesn't stop.
What should I do?
I've tried to use my apple laptop to go to my linux Arch pc but I get the message "Host is down"
I also have a Kubuntu 9.10 i386 cd.
I really don't want to re-install. I thought maybe there is a way to somehow get to /etc/fstab and delete the file I pasted.
p.s
I am new in Linux and Arch linux, I am still trying things and often do something silly that I have to find a way to fix
Last edited by Encho (2011-02-27 15:01:42)

/etc/fstab exists to be a file system table. It does not and indeed should not contain the contents of an image file such as an ISO. Disk images contain filesystems themselves, so the most you would need to put in /etc/fstab to mount them at boot is a line describing where the image sits and at what place in the filesystem it should be mounted.
That message about not being able to find it in /etc/fstab appeared because you either didn't specify a mount point for the image or the specified mount point did not exist. But, first, you will need a live CD of some sort to fix your boot issue. You could use the Arch installation live CD to do it—I recommend it. Whatever you choose, you need to mount your root partition and edit <mountpoint>/etc/fstab. If you need to figure out what your root partition's name is in /dev/, type blkid. For example, on my system I would do something like this from the live cd to mount my root partition:
# blkid
/dev/sdb1: UUID="06f29dbd-8ce8-4d98-82ee-9e84b7d44758" TYPE="ext2"
/dev/sdb2: UUID="3747c62b-2be0-415e-bdba-58ca44a67f6d" TYPE="swap"
/dev/sdb3: LABEL="roothome" UUID="50f8625e-3eeb-4578-9229-e7030bd2a082" TYPE="ext4"
/dev/sda1: UUID="7CAC3BEAAC3B9D98" TYPE="ntfs" LABEL="System Reserved"
/dev/sda2: LABEL="halite_windows" UUID="92863FB7863F9AA5" TYPE="ntfs"
/dev/sdc1: LABEL="citrine" UUID="35987e49-a4e7-4c5f-81cb-1a4e87373ecc" TYPE="ext4"
# mkdir /mnt/roothome
# mount -t ext4 /dev/sdb3 /mnt/roothome
# vim /mnt/roothome/etc/fstab # to edit the fstab
Once chrooted, edit the /etc/fstab file with your favorite console editor, e.g. vim, nano, emacs, and remove all the stuff you pasted in. It might be helpful to copy the first 20-30 lines of the file – that should be about all your fstab should need – truncate it, and then add the mounts that you copied. (Indeed, it should be possible to use sed or another utility to truncate the file after the last line of the fstab, before the data image begins.)
In the future, if you see a message about not being able to find the file in /etc/fstab, create a mountpoint for it:
# mkdir /mnt/iso
# mount -t iso9660 image.iso /mnt/iso/
Last edited by Snowknight (2011-02-27 15:51:20)

Similar Messages

  • [SOLVED] 'Sources' badly formatted on AUR - should I bug report it?

    Hello,
    Just stumbled upon this page today. As you can see, the 'sources' info is so badly formatted (fetched wrong contents from the PKGBUILD), I never saw this before. Is this fault of the PKGBUILD, or should it be reported as a bug of the AUR description parser?
    Last edited by thiagowfx (2014-05-01 00:56:41)

    Ehhh. This comes up from time to time, the AUR's bash parser isn't perfect, and what is perfectly valid in bash, often looks like a bomb site on the AUR web interface.
    Hopefully the upcoming upgrade of the AUR will help address this by increasing support for metadata files.

  • HTMLDocument ending with SUB TAG=bad formatting

    Hi, I have a problem when tring to format text in JTextPane in HTMLDocument. When the text ends with </SUB> and I call document..setCharacterAttributes(0, doc.getLength(), attrs, false) text formatting goes wrong!!
    Why? Is it not possible to end text in document with "text<SUB>sub text</SUB>"?
    I prepared some sample code below, which should clarify what I want. Click one of 4 buttons to setText, then click repeatedly Format button to change its format.
    I want to know what am I doing wrong and how to do it right. Problem lies in calling method setCharacterAttributes. When changing its parameters I get different formattings, and not the one I expect :-( .
    When the formatting goes wrong all characters are put inside SUB tag. HTML code then looks like this:
    <html>
      <head>
        <font color="#000000" size="4" face="Arial"><sub>//<--This SUB tag is is added too
    </sub></font>  </head>
      <body>
        <font color="#000000" size="4" face="Arial"><sub>text that had many sub tags and now has none and is inside this sub tag, when this tag shouldnt exist</sub></font>
      </body>
    </html>Please HELP!!!
    Sample code below
    import javax.swing.text.*;
    import java.awt.*;
    import javax.swing.text.html.*;
    import javax.swing.text.html.HTML.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class Example extends JFrame {
      JScrollPane sp;
      JTextPane textPane = new JTextPane();
      HTMLEditorKit htmlKit;
      JButton text1Button = new JButton("short SUB text");
      JButton text2Button = new JButton("long SUB text");
      JButton text3Button = new JButton("long SUB text ending with text");
      JButton text4Button = new JButton("long normal text");
      JButton formatButton = new JButton("Format");
      StringBuffer text1,text2,text3,text4;
      Font font = new Font("Arial",Font.ITALIC,14);
      public Example() {
        this.setTitle("SUB TAG bad formatting Example");
        this.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        this.setSize(700, 400);
        htmlKit = new HTMLEditorKit();
        HTMLDocument doc = (HTMLDocument)htmlKit.createDefaultDocument();
        textPane.setContentType("text/html");
        textPane.setEditorKit(htmlKit);
        textPane.setDocument(doc);
        sp = new JScrollPane(textPane,
                             JScrollPane.VERTICAL_SCROLLBAR_AS_NEEDED,
                             JScrollPane.HORIZONTAL_SCROLLBAR_AS_NEEDED);
        JPanel menuPanel = new JPanel();
        menuPanel.add(text1Button);
        menuPanel.add(text2Button);
        menuPanel.add(text3Button);
        menuPanel.add(text4Button);
        menuPanel.add(formatButton);
        text1Button.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            textPane.setText(text1.toString());
        text2Button.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            textPane.setText(text2.toString());
        text3Button.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            textPane.setText(text3.toString());
        text4Button.addActionListener(new ActionListener() {
         public void actionPerformed(ActionEvent e) {
           textPane.setText(text4.toString());
        formatButton.addActionListener(new ActionListener() {
          public void actionPerformed(ActionEvent e) {
            setJTextPaneFont(textPane,font,new Color((float)Math.random(),(float)Math.random(),(float)Math.random()));
        text1 = new StringBuffer();
        for (int i=1;i<10;i++) {
          text1.append("a<SUB>"+i+"</SUB> ");
        //text1.append("<BR>");//<--Add this line to get it working, however moving cursor behind any number and pressing Format, results same format error
        text2 = new StringBuffer();
        for (int i=1;i<1000;i++) {
          text2.append("a<SUB>"+i+"</SUB> ");
        //text2.append("<BR>");//<--Add this line to get it working, however moving cursor behind any number and pressing Format, results same format error
        text3 = new StringBuffer();
        text3.append(text2+"END");//moving cursor behind any number in sub tag and pressing Format, results same format error
        text4 = new StringBuffer();
        for (int i=1;i<2000;i++) {
          text4.append("a_"+i+" ");
        JPanel mainPanel = new JPanel();
        mainPanel.setLayout(new BorderLayout());
        mainPanel.add(menuPanel,BorderLayout.NORTH);
        mainPanel.add(sp,BorderLayout.CENTER);
        this.getContentPane().setLayout(new BorderLayout());
        this.getContentPane().add(mainPanel,BorderLayout.CENTER);
      public static void setJTextPaneFont(JTextPane jtp, Font font, Color c) {
        MutableAttributeSet attrs = jtp.getInputAttributes();
        StyleConstants.setFontFamily(attrs, font.getFamily());
        StyleConstants.setFontSize(attrs, font.getSize());
        StyleConstants.setItalic(attrs, (font.getStyle() & Font.ITALIC) != 0);
        StyleConstants.setBold(attrs, (font.getStyle() & Font.BOLD) != 0);
        StyleConstants.setForeground(attrs, c);
        StyledDocument doc = jtp.getStyledDocument();
        doc.setCharacterAttributes(0, doc.getLength(), attrs, false);
      public static void main(String[] args) {
        Example frame = new Example();
        //Center the window
        Dimension frameSize = frame.getSize();
        Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
        if (frameSize.height > screenSize.height) {
          frameSize.height = screenSize.height;
        if (frameSize.width > screenSize.width) {
          frameSize.width = screenSize.width;
        frame.setLocation((screenSize.width - frameSize.width) / 2, (screenSize.height - frameSize.height) / 2);
        frame.setVisible(true);
    }

    Thanks for the dukes.
    Actually I have very little knowledge about html handling in java. On you particular problem, I just went and browsed through the source code in search for the sub tag (which I didn't know before by the way) to see what effect it had on the StyledDocument.
    As far as your performance problem in loading html pages, my best advice would be to conduct experiments and try to see where the bottleneck is. I know that there is a way to make setPage synchronous. It has to do with setting some variable in the Document (I guess searching the forum might help on this). This can make it easier to actually measure how long it takes. Moreover, you might want to try and load a small page first and then your heavy one : that way you'll know if it has to do with loading the classes of the HTMLEditorKit. Another advice would be to make sure you feed your JEditorPane with pure HMTL 3.2. I have no idea about this but maybe parsing unknown tags slows down the loading (pure guess). One last advice would be to make multiple versions of your file with slight modifications in each case (like remove the tables, for instance). That might help determine if it has anything to do with the actual content you're trying to load.

  • UTL_MAIL: ORA-29279..... 501 badly formatted MAIL FROM user - no " "

    Hi guys,
    I’m trying to redesign a current process that requires a large amount of manual intervention. As such I’d like to utilise UTL_MAIL to send notifications of system events but have been unable to get it to execute on my dev database (installed on my local PC).
    O/S ver:
    Windows XP SP3
    Oracle ver:
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    I’ve configured the smtp_out_server parameter:
    SQL> sho parameter smtp_out_server;
    NAME                                 TYPE        VALUE
    smtp_out_server                  string        XXX.XXX.XXX.80:25
    And installed the required Oracle built in packages:
    SQL> @C:\oracle_builtins\utlmail.sql
    Package created.
    Synonym created.
    SQL> @C:\oracle_builtins\prvtmail.plb
    Package body created.
    No errors.
    I’ve compiled a simple test version of the code:
    CREATE OR REPLACE PROCEDURE test_email IS
    BEGIN
    UTL_MAIL.send(sender     => '[email protected]',
    recipients => '[email protected]',
    subject    => 'UTL_MAIL test subject',
    message    => 'UTL_MAIL test body');
    END;
    +/+
    SQL> @C:\procs\email_proc.sql
    Procedure created.
    However when I execute it I get the attached error(s):
    SQL> execute test_email ;
    BEGIN test_email ; END;
    *+
    ERROR at line 1:
    ORA-29279: SMTP permanent error: 501 badly formatted MAIL FROM user - no <
    ORA-06512: at "SYS.UTL_SMTP", line 21
    ORA-06512: at "SYS.UTL_SMTP", line 99
    ORA-06512: at "SYS.UTL_SMTP", line 222
    ORA-06512: at "SYS.UTL_MAIL", line 397
    ORA-06512: at "SYS.UTL_MAIL", line 608
    ORA-06512: at "SYS.TEST_EMAIL", line 3
    ORA-06512: at line 1
    I’ve also confirmed with our mail team that the sender is included in our firewall config and should not be being blocked……
    Any ideas? Does the package produce any log files / alerts that I could check or is it possible to execute in a verbose mode so I can debug?
    Thanks,
    Chris

    Welcome to the forum.
    That error comes from your SMTP server, and it indicates there's something wrong with the email address.
    You could try the following and see if that works:
    CREATE OR REPLACE PROCEDURE test_email
    IS
    BEGIN
      UTL_MAIL.send(sender => 'test <[email protected]>',
                    recipients => '[email protected]',
                    subject => 'UTL_MAIL test subject',
                    message => 'UTL_MAIL test body'
    END;
    /Some more inputs can be read here: Reg.SMTP Error while using UTL_MAIL in Oracle 10g
    Also, when you want post formatted examples, just use the {noformat}{noformat} tag before and after your examples.
    So, when you type:
    {noformat}select *
    from dual;{noformat}
    it will appear as:select *
    from dual;when you post it.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • After installing lion I get"Attachment Id has bad format" when trying to send an attachment in Hotmail.  Any ideas

    After installing the new lion, I can no longer send attachments in my hotmail account, I get "attachment Id has bad format". Any ideas?

    THANK YOU !!! THANK YOU !!!
    I took the time to actually set up and sign in to be able to say thankyou for the info - my Apple techs up hear in the North had NO clue on how to solve my problem - sending attatchments is my business and I was out of it since Oct. 14th
    THANK YOU AGAIN - IT WORKED PERFECTLY JUST HOW YOU SAID

  • Acrobat pdf file format is having difficulties. Object label badly formatted.

    I'm using Adobe Illustrator CS5 on a PC (Windows XP)
    When I try to open one particular file, I get the following message:
    "Acrobat pdf file format is having difficulties. Object label badly formatted."
    I've seen some discussions about this error msg previously, but only when using CS4, and everyone was referring to some type of "suitcase fusion", which I am not using.
    Any help that you can provide would be greatly appreciated

    I created the file in Illustrator CS5 and saved it as an .ai file.
    It does not open in Acrobat or Reader... not sure what other programs you think I should try?
    It's basically a bunch of lines and some text... the text is a Font that we use here at the MTO (FHWA)
    This is the first time I've ever had this problem.
    The weird thing is if I try to open the file in Illustrator by clicking "File", then "Open..." and then highlight the file in the "Open Dialog Window", I can see a preview of the file.  But then when I finally click "open" in the dialog window, I get that error message?

  • Warning: Unknown formatting object ^html

    Hi,
    I am trying to convert an .fo file into PDF format using a servlet. The code compiled, but when I try to run the servlet it gives me the following warning:
    Unknown formatting object ^html
    Exception in transformation: null
    and does not create the pdf file.
    The line: 'driver.buildFOTree(parser, in);' seems to be the problem.
    Here is the code ('in' is the .fo file):
    XMLReader parser = XMLReaderFactory.createXMLReader();
    Driver driver = new Driver();
    driver.setRenderer("org.apache.fop.render.pdf.PDFRenderer",
                   Version.getVersion());
    driver.addElementMapping               ("org.apache.fop.fo.StandardElementMapping");
    driver.addElementMapping("org.apache.fop.svg.SVGElementMapping");
    driver.addPropertyList               ("org.apache.fop.fo.StandardPropertyListMapping");
    driver.addPropertyList               ("org.apache.fop.svg.SVGPropertyListMapping");
    driver.buildFOTree(parser, in);
    driver.format();
    driver.setWriter(new PrintWriter(new FileWriter("new_file.pdf")));
    driver.render();
    out.flush();
    Does anyone know what might be the problem here?
    Thanks in advance!
    Elena.

    I see - the other part of the code that is converting an xml file into an .fo file converted it into an .html file instead.
    public void doGet( HttpServletRequest request, HttpServletResponse response ) throws ServletException, IOException {
    System.setProperty("javax.xml.transform.TransformerFactory",
    "org.apache.xalan.processor.TransformerFactoryImpl");
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    "org.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    System.setProperty("javax.xml.parsers.SaxParserFactory",
    "xorg.apache.xerces.jaxp.SaxParserFactoryImpl");
    System.setProperty("javax.xml.parsers.SAXParserFactory","org.apache.xerces.jaxp.SAXParserFactoryImpl");
    response.setContentType("application/pdf");
    PrintWriter out = response.getWriter();
    String xslPath = "top.xsl";
    String xmlPath = "top.xml";
    String foPath = "top.fo";
              try{
                   TransformerFactory tfactory = TransformerFactory.newInstance();
                   String filepath = foPath;
                   Transformer transformer = tfactory.newTransformer(new StreamSource(getServletContext().getResource(xslPath).toString()));
                   transformer.transform(new StreamSource(getServletContext().getResource(xmlPath).toString()),new StreamResult(new FileOutputStream(filepath )));
                   InputSource fopfile = new InputSource(filepath);
                   buildPDFFromFO(fopfile,out);
                   out.flush();
              catch(Exception ex){
                   System.out.println          }
    The fo file that resulted from this looks like this:
    <?xml version="1.0" encoding="UTF-8"?>
    <html>
    <body>
    <table bgcolor="yellow" border="2">
    <tr>
    <th>Artist</th>
    <th>Song</th>
    </tr>
    <tr>
    <td>Pinky</td>
    <td>Bye-bye</td>
    </tr>
    <tr>
    <td>LOLO3</td>
    <td>Austin</td>
    </tr>
    <tr>
    <td>Hello</td>
    <td>Kuku</td>
    </tr>
    </table>
    </body>
    </html>
    Does anybody know why it didn't convert it correctly.
    I am really new to all this stuff.
    Thanks in advance for your help!!!
    Elena.

  • How to show warning message in two Lines.

    Hi,
    Can some one please let me know how to show a warning message in two lines. I have created a Message in EBS in two lines but it still displays on the page in a single line.

    use bundled exception.
    ArryList peerExceptions = new ArrayList();
    peerExceptions.add(new OAException(....));
    peerExceptions.add(new OAException(....));
    OAException.raiseBundledOAException(exceptions);
    --Prasanna                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • Hotmail help says to optimize Firefox to correct Attachment ID has bad format problem when there is not attachment - how do I optimized Firefox 3.6.12?

    Several day ago my Hotmail acct seemed to be hacked as the following email
    ''I think this is a nice website,I like it very much.If you have time please browse it.Maybe you can find some products that are suitable for you.Their priciple is :100% original and brand new,100% satisfied! Their address http://dpzc.net/#512.com/img/26_qtr.jpg/
    Email:[email protected]
    Msn: [email protected]''
    was sent to my entire address book, and now when I try to sent a hotmail I get an error message saying Attachment Id Has Bad Format, even though there is no attachment. (This problem does not happen in IE8)
    I did Hotmail help and their response was ''''I advise you to optimize your browser. If you have a browser that’s not Internet Explorer, you can visit its Help section.''''
    How do I optimize Firefox 3.6.12?
    or what other suggestions do you have

    Delete any traces of Silverlight from your HD, you will be able to send attachments normally thereafter.

  • Attachment id has bad format

    I get error message 'attachment has bad format id' when I'm try to sent a attachment in hotmail.com started when I upgraded to mac os x version 10.7

    Try removing spaces from the filename - that worked fine for me. Seems like one of the penalties of using Hotmail...

  • Illustrator File Will Not Open -  Error message "Object label badly formatted"

    I have been working on a large image file for one of my classes; it has many layers and custom swatches, no text. I work on Creative Cloud at home, CS6 at school, and I think I had my .ai file saved under legacy file format CS4 trying to be safe (because I was not sure of my school's version and I have had a lot of problems accessing my files at school because of the version differences). I have been working on it back and forth between computers for quite a while, and today--while I had the image on my computer recently--it says "Acrobat PDF File Format is having difficulties: Object label badly formatted" if I try to open it.
    I have tried: updating Adobe Illustrator; creating a new AI document and "placing" the file into it; opening the file in Acrobat (the file opened, which was a step...but it only showed a tiny portion of the artwork and left the rest blank. Under the tools, however, it still showed the image had 15 layers (under the layer menu)--and it had them marked them as "visible"--but there wasn't anything I could do to actually view them; I tried copy/pasting into illustrator from Acrobat; opening in Acrobat and "saving as" a PDF (it said "The document could not be saved. There was a problem reading the document (111)"; and I just did a system restore hoping that could exorcise the demons--but no such luck so far.
    Do you have any ideas? I would greatly appreciate any words of wisdom and support you might have...and chocolate.
    Thanks for reading this.

    We now understand the problem, and are testing a solution. Here's my current understanding of all the elements of this issue.
    CAUSE: The problem occurs in an interaction between Illustrator CS4, Suitcase Fusion 2 v13.2, and having an Illustrator document with one or more text boxes, containing text, which is *completely* off the artboard—not even the bounding box is touching the artboard. *Additionally*, there must also be at least one text box, with text in it, which is *on* the artboard (even so much as having the bounding box partly on the artboard is sufficient, again). When these conditions are met, saving the document *may* (but does not always) cause the problem.
    PROBLEM: Attempting to open an affected document in Illustrator CS4 fails, with an "object label badly formatted" error. The problem can occur with older illustrator documents opened in CS4, as well as native CS4 documents.
    UNAFFECTED: Despite any speculation in this thread, this problem does not affect Photoshop, nor has it occurred with any version of Extensis Suitcase older than Suitcase Fusion 2 v13.2, which shipped about eight days ago.
    SOLUTION: The problem should be resolved by a 13.2.1 dot release. Although things could be delayed if we find something unexpected in testing, we currently expect to have the fix available this week, probably tomorrow (Thursday).
    DOCUMENT RECOVERY: Extensis can fix any Illustrator CS4 document which exhibits this problem. For now, contact Extensis tech support if you need help with recovering any such Illustrator document. Be prepared to send tech support the affected Illustrator file(s). You can use the online contact form at http://www.extensis.com/en/support/contact_prod_support.jsp, or call tech support at 1-503-274-7030.
    Special thanks to the users whose suffering and detailed reports helped us figure this out!
    Regards,
    T
    Thomas Phinney
    Sr Product Manager, Font Solutions
    Extensis, a division of Celartem, Inc.

  • VA05 report exectution  Excel format few line items gets automatically skip

    Dear,
    SAP support Team & Other team Members On SDN.
    As we are generating report from VA05 screen for retail sales order list, the report shows full required data but when the report is executed in Excel format few line items gets automatically skipped & further tried generated in TXT format the whole report get properly dragged.
    This problem is only in PRD Server, when i am teting the same in DEV Server it is properly Generated in EXCEL with Proper LINE ITEMS.
    Please kindly provide me with some Solution regarding the same.
    Warm Regards,
    Mohammed Hassan Naveed
    Deputy SAP Basis Consultant

    Hi,
    Have you tried using VA05N?

  • Unable to bold a cell verticle line in Cross-tab Format Grid Lines

    Hi
    I am unable to bold a random Cell vertical line inside the cross-tab. My cross-tab is having access database which pulls every data correctly,
    To elaborate , here is the images to make it clear.
    First one is the current output of cross-tab & 2nd one is the desired output :
    To make it more clear ,
    I am giving the screenshot of Format grid lines option,  when I have selected Cell vertical lines , I can change Line options (Like style,width,color) from it. When I change it, it changes all three lines simultaneously. But, in that, I just want to bold only the last line of this grid.
    The screenshot as follows (To denote the lines, I have put numbering under the vertical lines, where I want to bold only the third one) :
    Please let me know, if  any solution to this. I m using CRVS_13.
    Thanks in Advance.

    Hi,
    try to do this way..
    Right click on crosstab - > crosstab expert -> customize style -> select your particular column then goto Format Grid Lines -> select your particular one based view -> ok..
    I hope this not yet possible because select 1 automatically 2,3 vertical lines are selected..
    See how it works......Please update ASAP
    tHANKS,
    dj

  • Hotmail "Attachment ID has bad format"?

    I cannot send attachments or forward them on Hotmail due to error message "Attachment ID has bad format"? Any suggestions?

    Douglas188 wrote:
    I cannot send attachments or forward them on Hotmail due to error message "Attachment ID has bad format"? Any suggestions?
    Hotmail are having a few hiccups at the moment. It may pay to go to their site and check their troubleshooting tips.
    Pete

  • Recovered files "object label badly formatted" .ai files

    I just had a mishap where all of my graphic files were deleted due to operator error.  I bought a file recovery software which said it supported .ai files, and they show up like a normal .ai file but when I try to open them in illustrator I get the following error:
    Acrobat PDF File Format is having difficulties. Object label badly formatted.
    If anyone has a possible idea on how to access these files again, please let me know, I lost a ton of illustrator work that can not easily be re-drawn.
    Thanks

    I keep finding posts about CS4 and .pdf files having this issue, but none that seems to parallel my issue.  I am working in CS3 (primitive I know, I just haven't had the funds to upgrade).  Thanks for posting, but I am not on a MAC but will have access to one tomorrow at work.  I will try your suggestion on my lunch hour and hope that works. 

Maybe you are looking for

  • How can I move photos from my phone to my Icloud

    Can anyone tell me how to move photos from my phone to my Icloud acount?

  • A/P Invoice No on Outgoing PLD

    Dear Expert, I am creating a PLD in outgoing payment. how i can print the purchase invoice number(Row Level) on outgoing payment PLD. Thanks & Regards, Pankaj Sharma.

  • ITunes 12.0.1.26 update will not connect to internet, despite no connection problem on my PC?

    After upgrading to 12.0.1.26, podcasts won't update and cannot access iTunes Store. Get a message that I cannot access as not connected to internet. There is no problem with my connection. I've rebooted, delete & reloaded etc., still not working. Not

  • Adobe Acrobat 9 Pro too large for a bundle?

    The vApp comes out to about 1.1gb and I was able to upload it to our Zenworks servers, but it fails to download to devices. Could this just be too large of a bundle? I just see a bunch of this in the logs: [ERROR] [10/07/2010 09:53:54.136] [1592] [Ze

  • Query with date variable selection

    Greetings, I am having problems with a SQL Query and wondering if someone could help me out.  I have the following query and want to specify a WHERE clause and have the user select the date range they want to work with.  If I specify a date the query