CODE - Adding Worksheets to a Workbook in EXCEL .. please help!!

Hi
Does anyone have any code that lets you add multiple worksheets to a workbook in Excel???
I have tried everything!
Help please
Thanks

Since you have tried everything I suppose there is no point in referring you to the Apache POI project:
http://jakarta.apache.org/poi/
You've already tried it, right?

Similar Messages

  • Everytime i eject my ipod and reconnect it all my music is gone. and sometimes while i try adding music to it. itunes completely freezes. please help. and sometimes when i plug it back into my PC i have to rename my ipod and such

    Everytime i eject my ipod and reconnect it all my music is gone. and sometimes while i try adding music to it. itunes completely freezes. please help. and sometimes when i plug it back into my PC i have to rename my ipod and such

    Antivirus has a tendency to freeze iTunes sync Operation with iPod Classic, causing a timeout, which corrupt your iPod filesystem, so when iTunes can't read the iPod, it is pointing to this problem. Other causes is when your iPod hardisk is dying, or your battery is dying causing hardisk crashes.
    My suggestion.
    Connect your iPod to the PC and run chkdsk, to fix any iPod diskerror, then disconnect it, after chkdsk complete.
    Disconnect your PC from Internet. (just to make sure no nasties creep into your system while you syncing.
    Stop the Antivirus program
    Connect your Ipod to the PC
    When iTunes Open up, Restore your iPod please, this is for iTunes to map correctly, to fix the corrupted filesystem.
    When Restore complete, eject the iPod and reconnect again.
    Sync your ipod, preferably manually Manage in small batches and disconnect after every batch, to check that all is well, since you got such a huge library.
    When all sync is complete, and iPod disconnected, start back your Antivirus and connect back the Internet.
    If this doesn't resolve your problem, then let me know.
    Good Luck!

  • My iPod touch is permanently disabled and it says to connect my iPod to my iTunes yet when I do that, it tells me to type in pass code even though it's still disabled. PLEASE HELP ME

    My iPod touch is permanently disabled and it says to connect my iPod to my iTunes yet when I do that, it tells me to type in pass code even though it's still disabled. PLEASE HELP ME

    I have the same problem with mine... but im trying to find a way to fix it without restoring it...
    but one fix is to shut it down completely ... then press and hold BOTH the power button and the home button .. hold both of those 4 ten seconds .. then release the power button but still hold down the home button .. and then it'll show something that says "connect to itunes" once u get it connected to itunes , click the restore button ... BEWARE THIS WILL WIPE OUT EVERYTHING ON YOUR IPOD!!! IT WILL RESTORE IT BACK TO FACTORY SETTINGS , AS IF U JUST BOUGHT IT !!!!! then it should work fine again .. but u will lose all data on there besides the things you have synced with itunes already..
    Thats y im iffy with doing this , im trying to find a fix where i wont have 2 restore it but i dont think there is 1 :'(
    good luck tho
    ~sam

  • I have like a paper gift card i got with a purchase and it has "gift card number" and "pin" and i want to redeem it but when i go to redeem a gift card on itunes it says "code" i i don't have that! please help i want to redeem this

    i have like a paper gift card i got with a purchase and it has "gift card number" and "pin" and i want to redeem it but when i go to redeem a gift card on itunes it says "code" i i don't have that! please help i want to redeem this

    coIt is a code. See:
    iTunes Store: How to redeem a code
    Apple - iTunes - Inside iTunes - How to Redeem Free Download Codes and Gift Cards In the App Store and iTunes

  • I have a few wedding projects(1-2 hours)I am trying to export at full hd quality,than burn in idvd.After rendering for 8hrs I receive error code that states "file is too big". Please help? compressing tips without losing quality?

    I have a few wedding projects(1-2 hours)I am trying to export at full hd quality,than burn in idvd. After rendering for 8hrs I receive error code that states "file is too big". Please help? compressing tips without losing quality? or any other exporting alternatives?

    Hey Z,
    Thank you for the tip on exporting by media browser (large) from imovie. But of course, if it's not one thing it's another. Now that I figured how to export a large file from imovie, I have an idvd issue. I followed the instructions for burning from idvd and changing the encoding to professional quality and the burn speed to x4, but I am receiving an error that states the following,
    Your project exceeds the maximum content duration. To burn your DVD, change the encoder setting in the Project Info window.
    Project:
    - total project duration: 79:04 minutes
    - total project capacity: 4.327 GB (max. available: 4.172 GB)
    Menus:
    - number of menus in project: 1 menus
    - total menu duration: 0:39 minutes
    - total menu capacity: 37.370 MB
    Movies:
    - total movies duration: 78:25 minutes
    - total movies capacity: 4.291 GB
    I have searched in the idvd forum for similar issues and I am stumped at this point. I have tried deleting the encoding assets and re launching idvd with the changed preferences, and still the same error. I know you mentioned something about free hard drive space available, and I have very little left. 4GB to be exact due to massive hours of non-edited footage. I am not sure if this is why, but I do not recall ever needing free space to burn memory onto a separate dvd. I would be more than happy if I am wrong, and it would be a quick fix. Otherwise, the technical nightmare continues. It's all a learning process and your expertise is greatly appreciated! Thanks in advance.

  • Populate Result of query in Different worksheets of One Workbook in Excel.

    I want to get output of different queries to be populated in Different Sheets of a workbook of Excel in Unix/Linux Environment.

    Here is an example perl script using the Spreadsheet::WriteExcel CPAN module that might help:
    ===#!/usr/bin/perl
    use strict;
    use DBI;
    use Spreadsheet::WriteExcel;
    my ($toc,$data_sheet,$f,%data,$workbook) = ();
    my ($workbook_filename) = "mytest.xls";
    $workbook = Spreadsheet::WriteExcel->new($workbook_filename);
    sub build_excel_workbook {
      $workbook->compatibility_mode();
      $f = \%{$data{excel_format}};
      $$f{bold} = $workbook->add_format();
      $$f{bold}->set_bold();
      $$f{right_align} = $workbook->add_format();
      $$f{right_align}->set_align("right");
      $toc = \%{$data{excel_table_of_contents}};
      $$toc{tab} = $workbook->add_worksheet("Table of Contents");
      $$toc{tab}->freeze_panes(1,0);
      $$toc{tab}->set_column(0,1,20);
      $$toc{tab}->write(0,0,"WorkSheet Name",$$f{bold});
      $$toc{tab}->write(0,1,"Comments",$$f{bold});
      $data_sheet = \%{$data{excel_data_sheet}};
      $$data_sheet{tab} = $workbook->add_worksheet("EMP table");
      $$data_sheet{current_row} = 0;
      $$toc{tab}->write(1,0,"EMP table");
      $$toc{tab}->write(1,1,"Example WorkSheet containing EMP sample data");
    build_excel_workbook();
    my $db = DBI->connect( "dbi:Oracle:Local", "scott", "tiger" )
        || die( $DBI::errstr . "\n" );
    $db->{AutoCommit}    = 0;
    $db->{RaiseError}    = 1;
    $db->{ora_check_sql} = 0;
    $db->{RowCacheSize}  = 16;
    my $SEL = "SELECT * FROM EMP";
    my $sth = $db->prepare($SEL);
    $sth->execute();
    while ( my @row = $sth->fetchrow_array() ) {
        for (my $i = 0; $i <= $#row; $i++) {
            $$data_sheet{tab}->write($$data_sheet{current_row},$i,$row[$i]);
        $$data_sheet{current_row}++;
    END { $db->disconnect if defined($db); }
    #end_script===
    Best Regards,
    Bryan Wood
    Edited by: BryanWood on Jan 26, 2012 4:07 PM
    Edited by: BryanWood on Jan 26, 2012 4:10 PM

  • TS3694 1656 is my error code i cant restore my iphone or update please help

    1656 is my error code i cant restore or update my iphone please help

    Follow the steps mentioned in this thread.
    https://discussions.apple.com/thread/2778443?threadID=2778443&tstart=0

  • Activation Codes not showing up on XBR65X950B or FMPX10 please help sony support unhelpful

    I've been diverted over 6 different support teams and no one has been able to even be able to address this problem.  I am trying to register my TV and media player in order to purchase movies on the Sony Entertainment Network.  Please help as Sony's lack of customer service call centers have not been able to even address the question.

    Hi  amsjmuskal,
    Welcome to Sony Community!
    Please try perform the steps below to locate the registration code on the Internet video device:
    Using the supplied remote control, press HOME.
    Use the up arrow or down arrow button to select Applications.
    Select Sony Entertainment Network icon and press OK.
    Select Activate Enhanced Feature and press OK.
    Select Open.
    The registration code appears on screen.
    NOTE: The Registration code will not appear once the service has been registered.
    Thanks!
    Jerome
    If my post answers your question, please mark it as "Accept as Solution"

  • Adding a contact to an address book, please help!

    hi,
    I'm trying to write new infomation to my file but i cant seem to get it to work.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.io.*;
    import java.lang.*;
    import java.text.*;
    public class AddressBook extends JFrame implements ActionListener
         FlowLayout leftLayout;
         JFrame winNew;
    JTextField txtName, txtPhone, txtMobile, txtAddress;
    JButton btnImport, btnAdd, btnNext, btnPrevious, btnSave;
    JLabel lblTitle, lblName, lblPhone, lblMobile, lblAddress;
    JPanel pTitle, pName, pPhone, pMobile, pAddress, pButtons;
         ArrayList<String> Name = new ArrayList<String>();
         ArrayList<String> Phone = new ArrayList<String>();
         ArrayList<String> Mobile = new ArrayList<String>();
         ArrayList<String> Address = new ArrayList<String>();
         ArrayList<String> temp = new ArrayList<String>();
         int index = 0;
              public static void main(String[] args)
              new AddressBook();
         public AddressBook()
              final int WIDTH = 450;
              final int HEIGHT = 400;
              JFrame win = new JFrame("Address Book");
              win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              leftLayout = new FlowLayout(FlowLayout.LEFT);
              pTitle = new JPanel();
              pTitle.setLayout(new FlowLayout(FlowLayout.CENTER));
              lblTitle = new JLabel("Address Book");
              pTitle.add(lblTitle);
              win.add(pTitle);
              win.setLayout(new GridLayout(6,1));
              win.setSize(WIDTH, HEIGHT);
              win.setBackground(Color.BLUE);
              win.setResizable(false);
              win.setLocationRelativeTo(null);
              pName = new JPanel();
              pName.setLayout(leftLayout);
              lblName = new JLabel("Name: ");
              txtName = new JTextField(20);
              win.add(pName);
              pName.add(lblName);
              pName.add(txtName);
              pPhone = new JPanel();
              pPhone.setLayout(leftLayout);
              lblPhone = new JLabel("Phone: ");
              txtPhone = new JTextField(13);
              win.add(pPhone);
              pPhone.add(lblPhone);
              pPhone.add(txtPhone);
              pMobile = new JPanel();
              pMobile.setLayout(leftLayout);
              lblMobile = new JLabel("Mobile: ");
              txtMobile = new JTextField(14);
              win.add(pMobile);
              pMobile.add(lblMobile);
              pMobile.add(txtMobile);
              pAddress = new JPanel();
              pAddress.setLayout(leftLayout);
              lblAddress = new JLabel("Address: ");
              txtAddress = new JTextField(30);
              win.add(pAddress);
              pAddress.add(lblAddress);
              pAddress.add(txtAddress);
              pButtons = new JPanel();
              btnImport = new JButton("Import");
              pButtons.add(btnImport);
              btnImport.addActionListener(this);
              btnAdd = new JButton("Add");
              pButtons.add(btnAdd);
              btnAdd.addActionListener(this);
              btnPrevious = new JButton("Previous");
              pButtons.add(btnPrevious);
              //btnPrevious.addActionListener(this);
              btnNext = new JButton("Next");
              pButtons.add(btnNext);
              //btnNext.addActionListener(this);
              btnSave = new JButton("Save");
              pButtons.add(btnSave);
              btnSave.addActionListener(this);
              win.add(pButtons);
              win.setVisible(true);
         public void actionPerformed(ActionEvent e)
              if (e.getSource() == btnImport)
                   importContacts();
              if (e.getSource() == btnAdd)
                   clearScreen();
              if (e.getSource() == btnPrevious)
                   Previous();
              if (e.getSource() == btnSave)
         writetoFile();
              else if (e.getSource() == btnNext)
                   Next();
              public void importContacts()
              try
                   BufferedReader infoReader = new BufferedReader(new FileReader("../files/example.buab"));
                   int i = 0;
                   String loadContacts;
                   while ((loadContacts = infoReader.readLine()) !=null)
                        temp.add(loadContacts);
                        i++;
                   int a = 0;
                   int b = 0;
                   for (a = 0, b = 0; a < temp.size(); a++, b++)
                   if (b == 4)
                        b = 0;
                   if (b == 0)
                        Name.add(temp.get(a));
                   if (b == 1)
                        Phone.add(temp.get(a));
                   if (b == 2)
                        Mobile.add(temp.get(a));
                   if (b == 3)
                        Address.add(temp.get(a));
              catch (IOException ioe)
              ioe.printStackTrace();
              txtName.setText(Name.get(0));
              txtPhone.setText(Phone.get(0));
              txtMobile.setText(Mobile.get(0));
              txtAddress.setText(Address.get(0));
              public void Previous()
                   if (index > 0)
                        index--;
                   importContacts();
              public void Next()
                   if(index < temp.size() - 1)
                   index++;
                   importContacts();
              public void clearScreen()
                   txtName.setText("");
                   txtPhone.setText("");
                   txtMobile.setText("");
                   txtAddress.setText("");
              public void writetoFile()
    PrintStream out = new PrintStream("../files/example.buab");
    for
    (int index = 0; index < Name.size(); index++)
    (int index = 0; index < Phone.size(); index++)
    (int index = 0; index < Mobile.size(); index++)
    (int index = 0; index < Address.size(); index++)
    out.println("");
    out.println("");
    out.println(Name.get(index));
    out.println(Phone.get(index));
    out.println(Mobile.get(index));
    out.println(Address.get(index));
    i get an ioexception, must catch or throw, i tried to add catch but it says i must have try, so i added try and it says i cant have catch without try! what am I doing wrong??
    am i doing it right also? should this be in my options? i.e if i press save button?
    also why isn't my next and previous buttons working??
    and one more thing, is there an easier way to show the contents of my file to the jtextfields? (import contacts class)
    thanks

    sorry i did try to do this but didnt see the code bit.
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.util.*;
    import java.io.*;
    import java.lang.*;
    import java.text.*;
    public class AddressBook extends JFrame implements ActionListener
         FlowLayout leftLayout;
         JFrame winNew;
            JTextField txtName, txtPhone, txtMobile, txtAddress;
            JButton btnImport, btnAdd, btnNext, btnPrevious, btnSave;
            JLabel lblTitle, lblName, lblPhone, lblMobile, lblAddress;
            JPanel pTitle, pName, pPhone, pMobile, pAddress, pButtons;
             ArrayList<String> Name = new ArrayList<String>();
             ArrayList<String> Phone = new ArrayList<String>();
             ArrayList<String> Mobile = new ArrayList<String>();
             ArrayList<String> Address = new ArrayList<String>();
             ArrayList<String> temp = new ArrayList<String>();
             int index = 0;
                  public static void main(String[] args)
                      new AddressBook();
                public AddressBook()
              final int WIDTH = 450;
              final int HEIGHT = 400;
              JFrame win = new JFrame("Address Book");
              win.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              leftLayout = new FlowLayout(FlowLayout.LEFT);
              pTitle = new JPanel();
              pTitle.setLayout(new FlowLayout(FlowLayout.CENTER));
              lblTitle = new JLabel("Address Book");
              pTitle.add(lblTitle);
              win.add(pTitle);
              win.setLayout(new GridLayout(6,1));
              win.setSize(WIDTH, HEIGHT);
              win.setBackground(Color.BLUE);
              win.setResizable(false);
              win.setLocationRelativeTo(null);
              pName = new JPanel();
              pName.setLayout(leftLayout);
              lblName = new JLabel("Name: ");
              txtName = new JTextField(20);
              win.add(pName);
              pName.add(lblName);
              pName.add(txtName);
              pPhone = new JPanel();
              pPhone.setLayout(leftLayout);
              lblPhone = new JLabel("Phone: ");
              txtPhone = new JTextField(13);
              win.add(pPhone);
              pPhone.add(lblPhone);
              pPhone.add(txtPhone);
              pMobile = new JPanel();
              pMobile.setLayout(leftLayout);
              lblMobile = new JLabel("Mobile: ");
              txtMobile = new JTextField(14);
              win.add(pMobile);
              pMobile.add(lblMobile);
              pMobile.add(txtMobile);
              pAddress = new JPanel();
              pAddress.setLayout(leftLayout);
              lblAddress = new JLabel("Address: ");
              txtAddress = new JTextField(30);
              win.add(pAddress);
              pAddress.add(lblAddress);
              pAddress.add(txtAddress);
              pButtons = new JPanel();
              btnImport = new JButton("Import");
              pButtons.add(btnImport);
              btnImport.addActionListener(this);
              btnAdd = new JButton("Add");
              pButtons.add(btnAdd);
              btnAdd.addActionListener(this);
              btnPrevious = new JButton("Previous");
              pButtons.add(btnPrevious);
              //btnPrevious.addActionListener(this);
              btnNext = new JButton("Next");
              pButtons.add(btnNext);
              //btnNext.addActionListener(this);
              btnSave = new JButton("Save");
              pButtons.add(btnSave);
              btnSave.addActionListener(this);
              win.add(pButtons);
              win.setVisible(true);
             public void actionPerformed(ActionEvent e)
                      if (e.getSource() == btnImport)
                           importContacts();
                      if (e.getSource() == btnAdd)
                           clearScreen();
                          if (e.getSource() == btnPrevious)
                           Previous();   
                          if (e.getSource() == btnSave)
                         writetoFile();
                         else if (e.getSource() == btnNext)
                           Next();
                  public void importContacts()
                      try
                               BufferedReader infoReader = new BufferedReader(new FileReader("../files/example.buab"));
                               int i = 0;
                               String loadContacts;
                               while ((loadContacts = infoReader.readLine()) !=null)
                                        temp.add(loadContacts);
                                        i++;
                               int a = 0;
                               int b = 0;
                               for (a = 0, b = 0; a < temp.size(); a++, b++)
                                   if (b == 4)
                                            b = 0;
                                   if (b == 0)
                                            Name.add(temp.get(a));   
                                   if (b == 1)
                                            Phone.add(temp.get(a));   
                                   if (b == 2)
                                            Mobile.add(temp.get(a));   
                                   if (b == 3)
                                            Address.add(temp.get(a));   
                          catch (IOException ioe)
                              ioe.printStackTrace();
                      txtName.setText(Name.get(0));
                      txtPhone.setText(Phone.get(0));
                      txtMobile.setText(Mobile.get(0));
                      txtAddress.setText(Address.get(0));
              public void Previous()
                   if (index > 0)
                        index--;
                   importContacts();
              public void Next()
                   if(index < temp.size() - 1)
                   index++;
                   importContacts();
              public void clearScreen()
                   txtName.setText("");
                   txtPhone.setText("");
                   txtMobile.setText("");
                   txtAddress.setText("");
              public void writetoFile()
                           PrintStream out = new PrintStream("../files/example.buab");
                            for
                            (int index = 0; index < Name.size(); index++)
                            (int index = 0; index < Phone.size(); index++)
                            (int index = 0; index < Mobile.size(); index++)
                            (int index = 0; index < Address.size(); index++)
                                   out.println("");
                                   out.println("");
                                   out.println(Name.get(index));
                                   out.println(Phone.get(index));
                                   out.println(Mobile.get(index));
                                   out.println(Address.get(index));
                            out.close();
    }

  • Adding pages to an Adobe form? PLEASE HELP!!

    Hey All,
    Right now I'm working on a project for an engineering company. The gentleman in charge had two requirements.
    1). "I want to have a form like the government has". Meaning
    that he wants to be able to fill them out and then store
    them. With the help of Adobe Designer 7 I was able to do
    that.
    2.) "I want the pages to move down like Word Perfect does."
    Meaning that when the box fills up, the program that you
    are doing data entry on simply moves down to another
    page and allows you to fill it in.
    I know this may sound kind of stupid but there is a reason for this madness. This is a quote form that this gentleman is using. If
    he ever needs to print this form out. He needs to be able to see all of
    the data that he has entered. From my experience, it seems that you can
    enter all the data that you want and then when you fill up the text field. A scroll bar appears on the right hand side that allows you to move up and down in the text field to see what you have entered. But when you go to print, you only get what is seen in the text field.
    Which of course is no good for my employer. Who, when he prints out this filled in form. Needs to be able to see ALL of the data that he has entered. To be honest, I am quite green with Adobe Designer and I could use the help.
    Are you able to add new pages to an existing Adobe document?
    If you are, how do you do it?
    I have discovered one other option while messing around with Adobe Designer 7. In the "Insert" menu there is an option that says simply "button" when learning more about this interactive object. I learned that several are included in the "Insert" field. My question is, can I write a script that would allow me to use this button to add new pages when needed? Would this script be written in Java I take it?
    Any help from Adobe guru's, newbys, etc would be wonderful. I would like to make this work. Thank you very much in advance.

    I'm fairly new to Designer too, but I know the answer to your first question at least.
    "1). 'I want to have a form like the government has.' Meaning that he wants to be able to fill them out and then store them. With the help of Adobe Designer 7 I was able to do that."
    My guess is that he's referring to forms such as the 1040 form which allows people with just Acrobat Reader to complete AND save a form. The only way to do this is to have Adobe's Livecycle Reader Extensions. This is an "Enterprise" level (in other words: really expensive server-based) program. I talked to an Adobe rep and she said this program is generally based on the number of forms you want to enable, starting at $10,000 per document. Unfortunately Adobe's documentation on this is incredibly lacking. And the product info on Acrobat 7.0 Pro is (or was) very misleading when it says that with Designer you can enable documents to be completed and saved with Acrobat Reader, cause its not the case at all. End-users will need either Acrobat Elements, Acrobat Standard, or Acrobat Pro in order to be able to save a completed document.
    As for a dynamic form that expands (and adds pages) as necessary depending on user input, that is something that you can do with Designer. Designer can create two types of forms, static and dynamic. The default type is static. If you have a form right now that is not expanding, then you need to save as and in the save as filetype dropdown select "Dynamic PDF Form File." Its important to note that a dynamic file cannot be created in any other program (such as Word, Excel or InDesign). The form has to be created from scratch in designer.

  • Data Export From InDesign CS6 to Excel Please Help

    Hi!
    I need to export text from a 416 page catalog into an excel document. The text is formatted with paragraph and character style sheets, but the text frames do not link together. Or is there a way to export the text from InDesign with the page number into a text file, then the text file into an Excel document. Thank you so much for your help!

    That is not possible. You're going from a "smart" layout application to a dumb one.
    I don't think you could even place it as a PDF file of the text into Word and have it work.

  • Error code 2330 wen installing itunes to windows vista. please help

    ok so i have tried everything from repairing to uninstalling manually and still itunes refuses to uninstall or install itself. can anyone help me?

    Interesting.
    Okay, let's try some general principles troubleshooting with this one, then.
    (1) Do you currently have a copy of the Microsoft Visual C++ 2005 Redistributable Package installed on that PC? If so, try downloading the following security update:
    [Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package ATL Security Update|http://www.microsoft.com/downloads/details.aspx?familyid=766a6af7-ec73-4 0ff-b072-9112bab119c2&displaylang=en#filelist]
    Does iTunes install for you after applying that update?
    (2) If no joy there, head into your Windows Update and click on the Update History. Have a lot of Updates also been failing for you recently? If so, doubleclick on the entries for the failed updates to bring up more information on each. What error codes appear for you for the failed updates? (Precise spelling, please.)

  • What is code needed to check user fill in? Please help!

    Hi all,
    I need to check the data that users fill in (in multi record block) so that it is increasing number. For example:
    100000
    100001
    100003
    100010
    100011
    I want to put this code at Post-Item trigger so that an alert will flash the moment users finished entering an item and it is less number than previous_item. How do I achieve this in Form 6i?
    Thanks in advance for any tip.

    have a form level parameter.
    Put the value of the first field into this parameter in its post item.
    in the next item post item just check if its value is larger then the parameter. if it is set the parameter to its new value.

  • CSS code breaks in IE7/Win....Please help!!!!

    Hi,
    I am currently re-designing my company website and everything
    was going well
    until I noticed that one of my new pages
    (www.logitech.uk.com/css/doc_request.asp) does not work in
    IE7 on Windows. I
    have tested it on IE6 and Firefox and it works on both of
    them.
    I'm not a seasoned CSS coder so apologies if there is markup
    not needed
    etc....
    Can someone please tell me how to fix it?

    Sorry Murray, didn't see it.
    "Murray *ACE*" <[email protected]> wrote
    in message
    news:[email protected]...
    > Did you follow Al's link?
    >
    > --
    > Murray --- ICQ 71997575
    > Adobe Community Expert
    > (If you *MUST* email me, don't LAUGH when you do so!)
    > ==================
    >
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    > ==================
    >
    >
    > "Dazza" <[email protected]> wrote in message
    > news:[email protected]...
    >> Guess that'll be a 'no' then..........
    >>
    >> "Dazza" <[email protected]> wrote in message
    >> news:[email protected]...
    >>> Would you mind tell me the errors you saw that
    you think would affect
    >>> rendering in different browsers?
    >>>
    >>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>> news:[email protected]...
    >>>> My experience is that on a page with 94
    errors, anything can happen. I
    >>>> didn't take the time to go through the list
    in detail, but I did see
    >>>> some listed there that I would expect to
    affect rendering in different
    >>>> browsers, yes.
    >>>>
    >>>> --
    >>>> Murray --- ICQ 71997575
    >>>> Adobe Community Expert
    >>>> (If you *MUST* email me, don't LAUGH when
    you do so!)
    >>>> ==================
    >>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>> ==================
    >>>>
    >>>>
    >>>> "Dazza" <[email protected]> wrote in message
    >>>> news:[email protected]...
    >>>>> So, in other words, you don't know?
    >>>>>
    >>>>>
    >>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>
    news:[email protected]...
    >>>>>> Probably with one of the 94 errors I
    find here -
    >>>>>>
    >>>>>>
    http://validator.w3.org/check?verbose=1&uri=http://www.logitech.uk.com/css/doc_request.asp
    >>>>>>
    >>>>>> --
    >>>>>> Murray --- ICQ 71997575
    >>>>>> Adobe Community Expert
    >>>>>> (If you *MUST* email me, don't LAUGH
    when you do so!)
    >>>>>> ==================
    >>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    >>>>>> ==================
    >>>>>>
    >>>>>>
    >>>>>> "Dazza" <[email protected]> wrote in
    message
    >>>>>>
    news:[email protected]...
    >>>>>>> Ok.....but it would still be
    nice to know where it's going pear
    >>>>>>> shaped.
    >>>>>>>
    >>>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>>
    news:[email protected]...
    >>>>>>>> IE7 is only at beta 3. It
    has not been released in a final
    >>>>>>>> version.
    >>>>>>>>
    >>>>>>>> --
    >>>>>>>> Murray --- ICQ 71997575
    >>>>>>>> Adobe Community Expert
    >>>>>>>> (If you *MUST* email me,
    don't LAUGH when you do so!)
    >>>>>>>> ==================
    >>>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>>> Technotes
    >>>>>>>> ==================
    >>>>>>>>
    >>>>>>>>
    >>>>>>>> "Dazza" <[email protected]>
    wrote in message
    >>>>>>>>
    news:[email protected]...
    >>>>>>>>> Why?
    >>>>>>>>>
    >>>>>>>>> I only have one page out
    of my entire site that won't work
    >>>>>>>>> properly. After
    developing it for so long it would be nice to say
    >>>>>>>>> that it works on all the
    latest browsers.
    >>>>>>>>>
    >>>>>>>>> "Murray *ACE*"
    <[email protected]> wrote in message
    >>>>>>>>>
    news:[email protected]...
    >>>>>>>>>>I would not worry
    about IE7 yet....
    >>>>>>>>>>
    >>>>>>>>>> --
    >>>>>>>>>> Murray --- ICQ
    71997575
    >>>>>>>>>> Adobe Community
    Expert
    >>>>>>>>>> (If you *MUST* email
    me, don't LAUGH when you do so!)
    >>>>>>>>>> ==================
    >>>>>>>>>>
    http://www.dreamweavermx-templates.com
    - Template Triage!
    >>>>>>>>>>
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    >>>>>>>>>>
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    >>>>>>>>>>
    http://www.macromedia.com/support/search/
    - Macromedia (MM)
    >>>>>>>>>> Technotes
    >>>>>>>>>> ==================
    >>>>>>>>>>
    >>>>>>>>>>
    >>>>>>>>>> "Test"
    <[email protected]> wrote in message
    >>>>>>>>>>
    news:[email protected]...
    >>>>>>>>>>> Hi,
    >>>>>>>>>>>
    >>>>>>>>>>> I am currently
    re-designing my company website and everything
    >>>>>>>>>>> was going well
    until I noticed that one of my new pages
    >>>>>>>>>>>
    (www.logitech.uk.com/css/doc_request.asp) does not work in IE7
    >>>>>>>>>>> on Windows. I
    have tested it on IE6 and Firefox and it works on
    >>>>>>>>>>> both of them.
    >>>>>>>>>>>
    >>>>>>>>>>> I'm not a
    seasoned CSS coder so apologies if there is markup not
    >>>>>>>>>>> needed etc....
    >>>>>>>>>>>
    >>>>>>>>>>> Can someone
    please tell me how to fix it?
    >>>>>>>>>>>
    >>>>>>>>>>
    >>>>>>>>>>
    >>>>>>>>>
    >>>>>>>>>
    >>>>>>>>
    >>>>>>>>
    >>>>>>>
    >>>>>>>
    >>>>>>
    >>>>>>
    >>>>>
    >>>>>
    >>>>
    >>>>
    >>>
    >>>
    >>
    >>
    >
    >

  • TS1702 why when i try to play my texas holdem app do iget a error code - 2   i cant get on to play please help

    Why  does error code -2 come up everytime i try and play texas holdem on my ipad air and iphone 4?

    Hello Oddsbodkin,
    It looks like the creator of Netflix Desktop has a site for the project here:
    https://answers.launchpad.net/netflix-desktop/
    I would try posting your question there and see if anyone else has encountered this error and has a solution.
    Cheers, Patrick

Maybe you are looking for

  • Oracle 10G RAC - Public & Heartbeat on 1 NIC

    Hello all, actually I am installing Oracle 10G RAC on rhel 4 (4 node cluster). But the Cluster Verification Utility aborts with errors. I checked the configToolAllCommands and tried to run the failed commands manually: #/opt/oracle/crs/bin/oifcfg set

  • Draw in a Panel and Scroll around it with the Mouse

    Ok, so I've been bored and needed something to program so I opted with making a single player RPG creator, for this I decided to use a Panel for the screen and then Paint in what I want for maps (importing images using paint) but I want the maps to b

  • Font difference between MS WORD and Adobe Acrobat Pro

    I am facing an issue with Font difference between the PDF's which are created through MS word "Save as PDF" utility and Adobe PDF maker add-on. Let me explain what my analysis detail. 1. Both MS word and Adobe acrobat using the font from the windows\

  • Why doesn't the Android Adobe reader app respond to fillable fields in a secure document?

    The document's forms are fillable on any other computer. The document does not allow printing or editing but has been allowed fillable forms. The Adobe reader app for Android does not recognize the forms. How can this be fixed?

  • Signature & document integrity

    Hello, I was just playing around with LiveCycle Document Security a little bit, and didn't have any problems with tasks like finding signature fields and collecting info about them. On the server side there wasn't any problem either to sign one of th