Edit Appraisals:  Notes only shows one row at a time

Under the Employee Review tab of MSS-->Edit Appraisals, when I click to create an appraisal, the appraisal form in our system has areas to add notes.  However, in the portal, the area to add notes is only 1 row.  It is scrollable, but you can only see one row of text at a time.  How can I expand the notes area/editor to show multiple lines of text?

Turns out the configuration is on the R/3 side when setting up the Appraisal.  There is an option for number of lines for notes.

Similar Messages

  • My Viewing area only shows one photo at a time now :(

    Yesterday I noticed that my viewing area only shows one photo at a time. It used to display thumbnails of all the photos in the selected event - or library. Now, I'm forced to scroll down and view them one at a time or go into edit mode to see some thumbnails across the top of the screen.
    Did I accidently do this? Was it part of an OS update? (I've been away for a month and just don't think I did anything to cause a change...) Can anyone tell me how to view all the thumbnails in the viewing area again?
    I'm using iphoto 08 version 7.1.5 (378)
    I would very much appreciate some help with this.

    Thank you so much!! I love simple answers. I actually spent a few hours on this - seemed to play and test all the settings - and I just didn't understand this application of that slider.
    Thank you again.
    I'm very happy.

  • Repeater for XML datasource only showing one row

    Hello.
    I'm having a problem displaying multiple rows of data from an XML document in
    a
    jsp net-ui:repeater section. The database call seems to be working fine, the
    XML seems to be
    put together fine, and the XML document's getting to the jsp via the request.
    But, only one
    row of data (the first row) shows up.
    My .xsd defines TblCompany. TblCompanyDocument was created by Workshop in the
    XMLBeans generation.
    Advice/guidance/assistance would be much appreciated.
    Thanks.
    -eric-
    Following is in my dataControlImpl.jcs file. It returns seven rows.
    * @common:operation
    public TblCompanyDocument listCompany() throws SQLException
    RowSet company = db.listCompany();
    TblCompanyDocument xmlDoc = TblCompanyDocument.Factory.newInstance();
    TblCompany xml;
    while (company.next())
    xml = xmlDoc.addNewTblCompany();
    xml.setCompanyId(company.getInt("company_id"));
    xml.setCompanyName(company.getString("company_name"));
    xml.setWebAddress(company.getString("web_address"));
    xml.setUpdateBy(company.getString("update_by"));
    xml.setUpdateDt(new XmlCalendar(company.getDate("update_dt")));
    company.close();
    return xmlDoc;
    Following is in my companyController.jpf. It is used to get the results from
    my
    dataControlImpl in the form of an XML document, place them into a request attribute,
    and
    pass them on to the index.jsp page as a list of companies to choose from. I've
    verified that,
    at this point, var has seven rows of data in it.
    * Action encapsulating the control method :listCompany
    * @jpf:action
    * @jpf:forward name="success" path="index.jsp"
    * @jpf:catch method="exceptionHandler" type="Exception"
    public Forward listCompany()
    throws Exception
    TblCompanyDocument var = myControl.listCompany();
    getRequest().setAttribute( "results", var );
    return new Forward( "success" );
    Following is in my index.jsp. I've verified that, at this point, the request
    has an attribute called
    results, and it has the XML document with seven 'rows' of tblCompany in it.
    <netui-data:repeater dataSource="{request.results.tblCompany}">
    <netui-data:repeaterHeader>
    <table cellpadding="2" border="1" class="tablebody" >
    <tr>
    <td>ID</td>
    <td>Name</td>
    <td>Web Address</td>
    <td>Update By</td>
    <td>Update Date</td>
    </tr>
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td><netui:label value="{container.item.companyId}"></netui:label></td>
    <td><netui:label value="{container.item.companyName}"></netui:label></td>
    <td><netui:label value="{container.item.webAddress}"></netui:label></td>
    <td><netui:label value="{container.item.updateBy}"></netui:label></td>
    <td><netui:label value="{container.item.updateDt}"></netui:label></td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></table></netui-data:repeaterFooter>
    </netui-data:repeater>

    Well, I get to answer my own question (thanks to a friend). Perhaps this will
    help someone
    else.
    The problem seemed to be in the repeater datasource. When Workshop created the
    {pageFlow.allRows} property for me, instead of referring to the subordinate XML
    structure as
    the name I gave it, it tacked on an ...Array suffix, like:
    * allRows
    * tblCompanyRowSet
    f() tblCompanyArray
    I did modify my XML structure during my debugging, and am now afraid to undo it.
    Nonetheless, here's how it looks now:
    <xs:element name="tblCompany">
    <xs:complexType>
    <xs:sequence>
    <xs:element name="company_id" type="xs:int"/>
    <xs:element name="company_name" type="xs:string"/>
    <xs:element name="web_address" type="xs:string"/>
    <xs:element name="update_by" type="xs:string"/>
    <xs:element name="update_dt" type="xs:date"/>
    </xs:sequence>
    </xs:complexType>
    </xs:element>
    <xs:element name="tblCompanyRowSet">
    <xs:complexType>
    <xs:choice maxOccurs="unbounded">
    <xs:element ref="tblCompany"/>
    </xs:choice>
    </xs:complexType>
    </xs:element>
    And, here's how my repeater code now looks. It works fine. The other scenario
    that probably
    would've worked with my first newsgroup post would to not have created a tblCompanyRowSet
    XML structure, and just made the dataSource={pageFlow.allRows.tblCompanyArray}.
    <netui-data:repeater
    dataSource="{pageFlow.allRows.tblCompanyRowSet.tblCompanyArray}">
    <netui-data:repeaterHeader>
    <table cellpadding="2" border="1" class="tablebody" >
    <tr>
    <td>companyId</td>
    <td>companyName</td>
    <td>webAddress</td>
    <td>updateBy</td>
    <td>updateDt</td>
    </tr>
    </netui-data:repeaterHeader>
    <netui-data:repeaterItem>
    <tr>
    <td><netui:label value="{container.item.companyId}"></netui:label></td>
    <td><netui:label value="{container.item.companyName}"></netui:label></td>
    <td><netui:label value="{container.item.webAddress}"></netui:label></td>
    <td><netui:label value="{container.item.updateBy}"></netui:label></td>
    <td><netui:label value="{container.item.updateDt}">
    <netui:formatDate pattern="MM/dd/yy: HH:mm z"></netui:formatDate>
    </netui:label></td>
    </tr>
    </netui-data:repeaterItem>
    <netui-data:repeaterFooter></table></netui-data:repeaterFooter>
    </netui-data:repeater>

  • My table lists only up one row at a time. dynamic don't work

    Hi!
    I have a table that consists of: ID, NAME, LINK and
    CONTENTID.
    It's 5 records in it at the moment.
    I create a recordset.
    I choose all (ID, NAME, LINK and CONTENTID).
    It only shows up ONE row. I mark the table and choose
    repeating behavior. I still only get up one row.
    I follow this tutorial:
    http://www.adobe.com/support/dreamweaver/building/users_delete_rcrds_php/users_delete_rcrd s_php03.html
    I use Dreamweaver CS3.
    Any good advice, cause I haven't got a clue.
    I've tried everything: the embassy, the German government,
    the consulate. I even talked to the U.N. ambassador. It's no use, I
    just can't bring my wife to orgasm.
    Marw

    Can't get it to work. But I start off with this:
    1.
    http://img521.imageshack.us/my.php?image=01tablexk1.png
    After I follow your instructions, and mark
    name I get this:
    http://img514.imageshack.us/my.php?image=02trselectedzg6.png
    But still I only get one post and have to use a Recordset
    navigation bar instead.
    Marw

  • Screen/Desktop Only showing one program at a time...

    My mom called me in to look at her iMac earlier today. She said she was moving her illustrator window off to the side when all of the sudden it was "sucked" away to the left side of the screen. Now when she tries to bring up more than one window for different programs, it will only show windows from one program at a time. I have no clue what she has done and can't seem to find a way to fix this... Does anyone know what she has turned on and how can I turn it off?
    Thanks!

    sounds strange. I would try resetting dock and spaces preferences. delete the file homedirectory/library/preferences/com.apple.dock.plist and log out/in. your dock, spaces and exposé will be reset to the defaults.

  • Finder only shows one application at a time...

    Hi all,
    Hopefully someone can shed light on my dilemma.
    After a system crash today I'm having problems in the Finder.
    I can only have one application visible on screen at a time.
    When I click the Desktop the Finder and any windows there come forward and the previous application is hidden.
    If I'm in Safari and click the iCal icon in the Dock iCal comes forward and Safari is hidden.
    Icons on the desktop are visible at all times and can be clicked / opened etc.
    The only way to have other app windows on screen is to go to the Application Menu and choose "Show All". Clicking a window in another application hides everything again.
    Hide "App Name" / Hide Others are both greyed out and I can't use Cmd-H to hide an app either.
    I've deleted prefs for everything I can think of (Desktop, Dock, Finder) and opened most com.apple. prefs up to find a flag that's been tripped somewhere but to no avail.
    It's acting like the old Mac OS where you could have this as an option in the General Settings Control Panel (from memory...)
    Safe Boot didn't help whilst logging into my other users show none of the symptoms. Obviously It's something in my log in that is causing the problem but I don't know where else to look!
    Any help is greatly appreciated.
    Regards,
    Michael
    PowerBook 15" 1.5Ghz/1Gb/80Gb   Mac OS X (10.3.9)  

    Finder preferences <delete
    • Navigate to ~/Library/Preferences and delete.....
    com.apple.finder.plist
    com.apple.sidebarlists.plist
    Navigate to ~/Library/Preferences/ByHost and delete...
    • com.apple.windowserver.xxxxxxxxxx.plist
    where xxxxxx = a hexadecimal numeric string.
    Navigate to /Library/Preferences and delete...
    • com.apple.windowserver.plist
    george

  • Changing background color in JTable, only changes one row at a time...

    I'm trying to change the color of rows when the 5th column meets certain criteria. I think I'm very close, but I've hit a wall.
    What's happening is the row will change color as intended when the text in the 5th column is "KEY WORD", but when I type "KEY WORD" in a different column it will set the first row back to the regular colors. I can easily see why it's doing this, everytime something is changed it rerenders every cell, and the listener only checks the cell that was just changed if it met the "KEY WORD" condition, so it sets every cell (including the previous row that still meets the condition) to the normal colors. I can't come up with a good approach to changing the color for ALL rows that meet the condition. Any help would be appreciated.
    In this part of the CellRenderer:
            if (isSelected)
                color = Color.red;
            else
                color = Color.blue;
            if (hasFocus)
                color = Color.yellow;
            //row that meets special conditions
            if(row == specRow && col == specCol)
                color = color.white; I was thinking an approach would be to set them to their current color except for the one that meets special conditions, but the two problems with that are I can't figure out how to getColor() from the table, and I'm not sure how I would initially set the colors.
    Here's the rest of the relevant code:
        public void tableChanged(TableModelEvent e)
            int firstRow = e.getFirstRow();
            int lastRow  = e.getLastRow();
            int colIndex = e.getColumn();
            if(colIndex == 4)
                String value = (String)centerTable.getValueAt(firstRow, colIndex);
                // check for our special selection criteria
                if(value.equals("KEY WORD"))
                    for(int j = 0; j < centerTable.getColumnCount(); j++)
                        CellRenderer renderer =
                            (CellRenderer)centerTable.getCellRenderer(firstRow, j);
                        renderer.setSpecialSelection(firstRow, j);
    import javax.swing.table.*;
    import javax.swing.*;
    import java.awt.Component;
    import java.awt.Color;
    public class CellRenderer extends DefaultTableCellRenderer
        int specRow, specCol;
        public CellRenderer()
            specRow = -1;
            specCol = -1;
        public Component getTableCellRendererComponent(JTable table,
                                                       Object value,
                                                       boolean isSelected,
                                                       boolean hasFocus,
                                                       int row, int col)
            setHorizontalAlignment(JLabel.CENTER);
            Color color = Color.green;
            if (isSelected)
                color = Color.red;
            else
                color = Color.blue;
            if (hasFocus)
                color = Color.yellow;
            if(row == specRow && col == specCol)
                color = color.white;
            //setForeground(color);
            setBackground(color);
            setText((String)value);
            return this;
        public void setSpecialSelection(int row, int col)
            specRow = row;
            specCol = col;
    }If I'm still stuck and more of my code is needed, I'll put together a smaller program that will isolate the problem tomorrow.

    That worked perfectly for what I was trying to do, but I've run into another problem. I'd like to change the row height when the conditions are met. What I discovered is that this creates an infinite loop since the resizing triggers the renderer, which resizes the row again, etc,. What would be the proper way to do this?
    Here's the modified code from the program given in the link. All I did was declare the table for the class, and modify the if so I could add the "table.setRowHeight(row, 30);" line.
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.table.*;
    import javax.swing.border.*;
    public class TableRowRenderingTip extends JPanel
        JTable table;
        public TableRowRenderingTip()
            Object[] columnNames = {"Type", "Company", "Shares", "Price", "Boolean"};
            Object[][] data =
                {"Buy", "IBM", new Integer(1000), new Double(80.5), Boolean.TRUE},
                {"Sell", "Dell", new Integer(2000), new Double(6.25), Boolean.FALSE},
                {"Short Sell", "Apple", new Integer(3000), new Double(7.35), Boolean.TRUE},
                {"Buy", "MicroSoft", new Integer(4000), new Double(27.50), Boolean.FALSE},
                {"Short Sell", "Cisco", new Integer(5000), new Double(20), Boolean.TRUE}
            DefaultTableModel model = new DefaultTableModel(data, columnNames)
                public Class getColumnClass(int column)
                    return getValueAt(0, column).getClass();
            JTabbedPane tabbedPane = new JTabbedPane();
            tabbedPane.addTab("Alternating", createAlternating(model));
            tabbedPane.addTab("Border", createBorder(model));
            tabbedPane.addTab("Data", createData(model));
            add( tabbedPane );
        private JComponent createAlternating(DefaultTableModel model)
            JTable table = new JTable( model )
                public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                    Component c = super.prepareRenderer(renderer, row, column);
                    //  Alternate row color
                    if (!isRowSelected(row))
                        c.setBackground(row % 2 == 0 ? getBackground() : Color.LIGHT_GRAY);
                    return c;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            table.changeSelection(0, 0, false, false);
            return new JScrollPane( table );
        private JComponent createBorder(DefaultTableModel model)
            JTable table = new JTable( model )
                private Border outside = new MatteBorder(1, 0, 1, 0, Color.RED);
                private Border inside = new EmptyBorder(0, 1, 0, 1);
                private Border highlight = new CompoundBorder(outside, inside);
                public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                    Component c = super.prepareRenderer(renderer, row, column);
                    JComponent jc = (JComponent)c;
                    // Add a border to the selected row
                    if (isRowSelected(row))
                        jc.setBorder( highlight );
                    return c;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            table.changeSelection(0, 0, false, false);
            return new JScrollPane( table );
        public JComponent createData(DefaultTableModel model)
            table = new JTable( model )
                public Component prepareRenderer(TableCellRenderer renderer, int row, int column)
                    Component c = super.prepareRenderer(renderer, row, column);
                    //  Color row based on a cell value
                    if (!isRowSelected(row))
                        c.setBackground(getBackground());
                        String type = (String)getModel().getValueAt(row, 0);
                        if ("Buy".equals(type)) {
                            table.setRowHeight(row, 30);
                            c.setBackground(Color.GREEN);
                        if ("Sell".equals(type)) c.setBackground(Color.YELLOW);
                    return c;
            table.setPreferredScrollableViewportSize(table.getPreferredSize());
            table.changeSelection(0, 0, false, false);
            return new JScrollPane( table );
        public static void main(String[] args)
            SwingUtilities.invokeLater(new Runnable() {
                public void run() {
                    createAndShowGUI();
        public static void createAndShowGUI()
            JFrame.setDefaultLookAndFeelDecorated(true);
            JFrame frame = new JFrame("Table Row Rendering");
            frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            frame.add( new TableRowRenderingTip() );
            frame.pack();
            frame.setLocationRelativeTo(null);
            frame.setVisible(true);
    }Edited by: scavok on Apr 26, 2010 6:43 PM

  • My iphoto library is only showing one picture at a time

    While working in iphoto today my library browser went from multiple pictures to only one.  The library shows 5K plus pictures, but can't budge off the one picture.  What's up?
    jim

    It was the slider, right?

  • Only showing one program at a time?

    I used to be able to have firefox open behind the word program I was working on, then click to the firefox to do a quick search (would go on top of word document, but word doc could still be seen) then I could click right back to the word document & vice versa. All of a sudden when I click word only the word will open & hides firefox. When I open firefox it makes the word document disappear! How to fix this!?!?!

    Hi k,
    You can stretch one window horizontally and one vertically so it's a little bigger than the other one, then click on the window behind the window to make it active. You can also just click on the icon of the desired app in the dock.

  • Show one color at a time

    right now i am just brainstorming my next art project so i don't really have anything specific (which might make this harder to answer but bear with me)
    ok, i am hoping to create a pretty complex peice. lots of shapes and detail, no gradients though.
    is there a way to only show one color at a time.... that makes no sense, let me grab an example...
    ok, i'll try again, if i was going to do this in illustrator, i would have that gold on top all on one layer. then on top of that i would have the red eyes on one layer. is there a way i can see all the gold but only the gold that will actually show up when i print it? basically like when they do prints, they print one color at a time and it's not like they overlap a bunch of layers. can i do that like on screen?
    i guess if i had to i could do it in photohop, make a brush out of the red layer and erase those parts of the gold... but i dont want to do it that way, can i do it in illustrator?
    thanks guys, i know that makes no sense...
    if i have a bunch of objects overlapping each other

    ALWAYS state what version you're using.
    It sounds like you simply want to preview color separations on screen. If so, and if you have Acrobat Pro, you can:
    1. Save the file as a press-ready PDF.
    2. Open in Acrobat.
    3. Preview the separations in the Advanced>PrintProduction>OutputPeview dialog.
    Understand: "Color separations" means color as it will be sent to the individual printing plates, not individual "colors" you've used in the design (unless the design is entirely spot color). If that's what you want, you can:
    1. Select an object of a particular color.
    2. Use one of the Select Same commands in the Select menu.
    3. Store the selection. (Select>SaveSelection)
    4. Object>Hide>Selection (leaving other-colored objects visible)
    5. Similarly store selections for each different color. Use the Hide Selection command on which every ones you don't want to see.
    JET

  • Embed pdf in website, show one page at a time, with forward and back controls?

    Hi,
    Not sure if this is possible (or if this is the right place to ask), but I need to take a multiple page pdf, embed it in a website so its on the left half of the screen, have it only show one page at a time, and have the forward and back page controls.
    Is this possible, and if so, could someone point me in the right direction?

    Typically you would save it to a JPeg and post those on the web site. Expecting a PDF to show up depends on the client computer configuration and browser. This is too risky, unless you don't mind getting nasty little notes that it does not work. If you do it with JPegs, then all the browsers I know of can handle it. Then simply put the PDF separately for those who prefer to download the PDF and look at it separately.

  • HT1711 How do I get a album that I purchased already to show the whole album. After the lastest upgrade it only shows one song from the album. I tried repurchasing it but it says that is already purchase but will not re download. Please help.

    How do I get an album from Itunes that I have already downloaded to show the complete album again. After the last update it only shows one song. I tried to re purchase the whole album but it will not let me cause I already purchased it. Pease help

    The large text size makes your post almost impossible to read.
    Excessive use of bold or capitals (also) makes posts difficult to read.
    You can drag most of the column headings left or right, or right-click on the header to turn columns on or off.
    Once you've used File > Display Duplicates or Shift > File > Display Exact Duplicates you can use File > Display All or the Display All button at the bottom of the list to restore the display.
    For general advice on organising your library see this article on Grouping tracks into albums.
    tt2

  • ITunes tells me "Could not be used because the original file could not be found. Would you like to locate it?"  I can locate it and all my other music, but can only open one song at a time.  How do I set it to open all my music whenever I want it?

    iTunes tells me my song selection: "Could not be used because the original file could not be found. Would you like to locate it?"  I can locate it and all my other music, but can only open one song at a time.  How do I set it to open all my music whenever I want?
    Message was edited by: Woildbill

    I just spent several hours dealing with this when switching to a new PC. It was extremely frustrating as I knew my files were on my external HD but no matter how many times I copied my old iTunes folder over the files were still missing...because dummy me had forgotten to "unhide folders" on my new PC and my old files were actually stored in a hidden folder created long long ago.
    This is how I did it on Windows 7 with iTunes 10
    1. Look in iTunes Advanced Preferences to see where iTunes is saving files. (Edit, Preferences, Advanced)
         Example: C:/Users/Woildbill/My Music/iTunes/Music
    2. Ensure you are able to see hidden files - Control Panel, Folder Option, View, Show Hidden Files
    3. Use Your Computer's Search Function to Locate the Missing File (Start, Search, type name of song - I started my search in "My Music" folder but be sure to expand to entire Computer if not found right away)
    4. In Search Results, right-click found folder and select properties. This will tell you where the file is actually stored.
    5. Use Windows Explorer (right-click start) to navigate to the location of the file. It is likley your other missing files are in the same location.
    6. In Windows Explorer, copy the newly located files to the iTumes location from Step 1 and everything should work again.
    Hope this helps!

  • Reports region only shows 15 rows

    I have a strange problem with a reports region. The region runs a simple SQL select against a table. My table has 18 rows but the report region only displays 15 rows.
    I ran the SQL directly against the database and all 18 rows are returned, so it's not a problem with the query.
    Under the Report Atrributes tab for the region, I checked the Layout and Pagination section. Number of rows was set to 15, which I thought explained my problem.
    I deleted the value in number of rows. But the region still only shows 15 rows.
    If I change the value in number of rows to 20, all 18 rows are shown. But again, if I delete the 20, only 15 are shown.
    Is there some other setting somewhere which is defaulting the report to 15 rows?

    That item is cleared as well. Very strange. Still can't see anything on the page that's causing it to only show 15 rows.
    Edit -
    Setting it to 999999 seems to cure the problem until I find a solution. Very strange, maybe it's a bug?
    Message was edited by:
    Antilles

  • Apex report only show 2000 rows

    Hi Experts,
    I am going to show about 4800 rows in a report and want to show them within a page. In Layout an Pagination, I set 6000 to both 'number of rows' and 'maximum row count' and set 'pagination scheme' to 'not pagination selected'. However, it still only show 2000 row in the page. Is there anything I missed?
    Thanks,
    Daniel

    Daniel Wu wrote:
    In Layout an Pagination, I set 6000 to both 'number of rows' and 'maximum row count' and set 'pagination scheme' to 'not pagination selected'. However, it still only show 2000 row in the page. Is there anything I missed?If 2000 was the previous setting then this is likely to be the common problem of pagination settings being cached for a session. Either log out, restart the brower, and log in again, or manually re-request the page from the browser address bar, adding 'RP' in the ClearCache position in the URL.
    I am going to show about 4800 rows in a report and want to show them within a page. Are you really sure about this? That's a lot of data to throw at someone in one go, and will have adverse effects on performance, usability and accessibility.

Maybe you are looking for

  • Can I edit text in a vector image?

    My apologies if this is a stupid question! I downloaded a vector image from Shutterstock that said "Your Text Here" implying you can edit the text. I cannot for the life of me figure out how to edit the text. When I open the image in illustrator I ca

  • Document windows open full screen

    Hi, Trying to avoid using the application frame as I don't like the way it stays open and visible when all Dreamweaver documents are closed (even if DW is in the background.)  So I have Application Frame (under Window menu) deselected...but everytime

  • My downloaded files say .m4a - what happened to .mp3?

    I have a Dell PC running on Windows Vista. On this laptop, I have iTunes application for downloading music. I also have a Wondowsphone 8. I'm trying to copy my downloaded music from my PC to my phone, but am having trouble. I copied and pasted my mus

  • Slow slider performance

    Computer specs: Intel i7 2600K overclocked @ 4.5Ghz GTX 570 GPU overclocked to 815 16GB DDR3 RAM @ 1866 1000W CM Silent Pro Gold PSU Installed on SSD Drive Windows 7 64-Bit I have used LR3 for a while now with great performance all around. I download

  • Upgrading OS 10.4.11 to 10.6, drives failed

    Hi, I need to upgrade my Intel Mac pro (desperately at this point). I have the Snow Leopard CD but both my drives, which are usually fussy, have given up the ghost. If I get the disk to mount once, when I restart it won't mount again. So - is there a