Frames and scroll bar

Hi, im making a page with frames, but when a frame content is
too big,a scroll bar appears but JUST in that frame, is ther a way
to make frames work like tables? i mean if a column is too big,
then the scroll bar appears but in the whole page, not just in that
column.
Is this is not possible, then is there another way to open a
new page but just in a certain place of the web without using
frames?.
Thanks you very much

> Hi, im making a page with frames, but when a frame
content is too big,a
> scroll
> bar appears but JUST in that frame
This is but one of the many reasons why frames are not a good
choice for
your layout method.
> is ther a way to make frames work like
> tables? i mean if a column is too big, then the scroll
bar appears but in
> the
> whole page, not just in that column.
Not if you are stuck on using frames, no.
> Is this is not possible, then is there another way to
open a new page but
> just
> in a certain place of the web without using frames?.
Other than using IFrames (which are just frames by another
name) or AJAX
(which is likely not the right solution either), no.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"Ludgan" <[email protected]> wrote in
message
news:gf586b$cf1$[email protected]..
> Hi, im making a page with frames, but when a frame
content is too big,a
> scroll
> bar appears but JUST in that frame, is ther a way to
make frames work like
> tables? i mean if a column is too big, then the scroll
bar appears but in
> the
> whole page, not just in that column.
>
> Is this is not possible, then is there another way to
open a new page but
> just
> in a certain place of the web without using frames?.
>
> Thanks you very much
>

Similar Messages

  • JTable can't display column names and scroll bar in JDialog !!

    Dear All ,
    My flow of program is JFrame call JDialog.
    dialogCopy = new dialogCopyBay(frame, "Bay Name Define", true, Integer.parseInt(txtSourceBay.getText()) ,proVsl ,300 ,300);
    dialogCopy.setBounds(0, 0, 300, 300);
    dialogCopy.setVisible(true);        Then,I set the datasource of JTable is from a TableModel.
    It's wild that JTable can diplay the data without column names and scroll bar.
    I have no idea what's going wrong.Cause I follow the Sun Tutorial to code.
    Here with the code of my JDialog.
    Thanks & Best Regards
    package com.whl.panel;
    import com.whl.vslEditor.vslDefine;
    import java.awt.Container;
    import java.awt.Dimension;
    import java.awt.Frame;
    import javax.swing.JDialog;
    import javax.swing.JScrollPane;
    import javax.swing.JTable;
    import javax.swing.table.AbstractTableModel;
    public class dialogCopyBay extends JDialog {
        vslDefine glbVslDefine;
        int lvCnt = -1;
        JTable tableCopyBay;
        int bgnX = 0;
        int bgnY = 30;
        int tableWidth = 100;
        int tableHeight = 100;
        public dialogCopyBay(Frame frame, String title, boolean modal, int sourceBay,
                vslDefine pVslDefine, int ttlWidth, int ttlHeight) {
            super(frame, title, true);
            Container contentPane = getContentPane();
            System.out.println("dialogCopyBay Constructor");
            glbVslDefine = null;
            glbVslDefine = pVslDefine;
            copyBayModel copyBay = new copyBayModel((glbVslDefine.getVslBayStructure().length - 1),sourceBay);
            tableCopyBay = new JTable(copyBay);
            tableCopyBay.setPreferredScrollableViewportSize(new Dimension(tableWidth, tableHeight));
            JScrollPane scrollPane = new JScrollPane(tableCopyBay);
            scrollPane.setViewportView(tableCopyBay) ;
            tableCopyBay.setFillsViewportHeight(true);
            tableCopyBay.setBounds(bgnX, bgnY, tableWidth, tableHeight);
            tableCopyBay.setBounds(10, 10, 100, 200) ;
            contentPane.setLayout(null);
            contentPane.add(scrollPane);
            contentPane.add(tableCopyBay);
        class copyBayModel extends AbstractTableModel {
            String[] columnNames;
            Object[][] dataTarget;
            public copyBayModel(int rowNum ,int pSourceBay) {
                columnNames = new String[]{"Choose", "Bay Name"};
                dataTarget = new Object[rowNum][2];
                for (int i = 0; i <= glbVslDefine.getVslBayStructure().length - 1; i++) {
                    if (pSourceBay != glbVslDefine.getVslBayStructure().getBayName() &&
    glbVslDefine.getVslBayStructure()[i].getIsSuperStructure() == 'N') {
    lvCnt = lvCnt + 1;
    dataTarget[lvCnt][0] = false;
    dataTarget[lvCnt][1] = glbVslDefine.getVslBayStructure()[i].getBayName();
    System.out.println("lvCnt=" + lvCnt + ",BayName=" + glbVslDefine.getVslBayStructure()[i].getBayName());
    public int getRowCount() {
    return dataTarget.length;
    public int getColumnCount() {
    return columnNames.length;
    public String getColumnName(int col) {
    return columnNames[col];
    public Object getValueAt(int rowIndex, int columnIndex) {
    return dataTarget[rowIndex][columnIndex];
    public Class getColumnClass(int c) {
    return getValueAt(0, c).getClass();
    public boolean isCellEditable(int row, int col) {
    if (col == 1) {
    // Bay Name Not Allow To modify
    return false;
    } else {
    return true;
    public void setValueAt(Object value, int row, int col) {
    dataTarget[row][col] = value;
    fireTableCellUpdated(row, col);

    Dear DB ,
    I am not sure what you mean.
    Currently,I don't undestand which code is error.
    And I also saw some example is add JTable and JScrollPane in JDialog.
    Like Below examle in Sun tutorial
    public class ListDialog extends JDialog implements MouseListener, MouseMotionListener{
        private static ListDialog dialog;
        private static String value = "";
        private JList list;
        public static void initialize(Component comp,
                String[] possibleValues,
                String title,
                String labelText) {
            Frame frame = JOptionPane.getFrameForComponent(comp);
            dialog = new ListDialog(frame, possibleValues,
                    title, labelText);
         * Show the initialized dialog. The first argument should
         * be null if you want the dialog to come up in the center
         * of the screen. Otherwise, the argument should be the
         * component on top of which the dialog should appear.
        public static String showDialog(Component comp, String initialValue) {
            if (dialog != null) {
                dialog.setValue(initialValue);
                dialog.setLocationRelativeTo(comp);
                dialog.setVisible(true);
            } else {
                System.err.println("ListDialog requires you to call initialize " + "before calling showDialog.");
            return value;
        private void setValue(String newValue) {
            value = newValue;
            list.setSelectedValue(value, true);
        private ListDialog(Frame frame, Object[] data, String title,
                String labelText) {
            super(frame, title, true);
    //buttons
            JButton cancelButton = new JButton("Cancel");
            final JButton setButton = new JButton("Set");
            cancelButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    ListDialog.dialog.setVisible(false);
            setButton.addActionListener(new ActionListener() {
                public void actionPerformed(ActionEvent e) {
                    ListDialog.value = (String) (list.getSelectedValue());
                    ListDialog.dialog.setVisible(false);
            getRootPane().setDefaultButton(setButton);
    //main part of the dialog
            list = new JList(data);
            list.setSelectionMode(ListSelectionModel.SINGLE_INTERVAL_SELECTION);
            list.addMouseListener(new MouseAdapter() {
                public void mouseClicked(MouseEvent e) {
                    if (e.getClickCount() == 2) {
                        setButton.doClick();
            JScrollPane listScroller = new JScrollPane(list);
            listScroller.setPreferredSize(new Dimension(250, 80));
    //XXX: Must do the following, too, or else the scroller thinks
    //XXX: it's taller than it is:
            listScroller.setMinimumSize(new Dimension(250, 80));
            listScroller.setAlignmentX(LEFT_ALIGNMENT);
    //Create a container so that we can add a title around
    //the scroll pane. Can't add a title directly to the
    //scroll pane because its background would be white.
    //Lay out the label and scroll pane from top to button.
            JPanel listPane = new JPanel();
            listPane.setLayout(new BoxLayout(listPane, BoxLayout.Y_AXIS));
            JLabel label = new JLabel(labelText);
            label.setLabelFor(list);
            listPane.add(label);
            listPane.add(Box.createRigidArea(new Dimension(0, 5)));
            listPane.add(listScroller);
            listPane.setBorder(BorderFactory.createEmptyBorder(10, 10, 10, 10));
    //Lay out the buttons from left to right.
            JPanel buttonPane = new JPanel();
            buttonPane.setLayout(new BoxLayout(buttonPane, BoxLayout.X_AXIS));
            buttonPane.setBorder(BorderFactory.createEmptyBorder(0, 10, 10, 10));
            buttonPane.add(Box.createHorizontalGlue());
            buttonPane.add(cancelButton);
            buttonPane.add(Box.createRigidArea(new Dimension(10, 0)));
            buttonPane.add(setButton);
    //Put everything together, using the content pane's BorderLayout.
            Container contentPane = getContentPane();
            contentPane.add(listPane, BorderLayout.CENTER);
            contentPane.add(buttonPane, BorderLayout.SOUTH);
            pack();
        public void mouseClicked(MouseEvent e) {
            System.out.println("Mouse Click");
        public void mousePressed(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseReleased(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseEntered(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseExited(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseDragged(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
        public void mouseMoved(MouseEvent e) {
            throw new UnsupportedOperationException("Not supported yet.");
         * This is here so that you can view ListDialog even if you
         * haven't written the code to include it in a program.
    }

  • Change Height of Web Resource to Get Rid Of Blank and Scroll Bar

    Hi, I am a junior CRM developer. I'm using CRM online.
    I wrote a HTML web resources. In Web Resource Properties, I set the Number of Rows as 20.
    But the problem is: If the form window are maximized, there will be blank under web resource; if the form windows become smaller, there will be a scroll bar on the side.
    I want get rid of blank and scroll bar, automatically change height according to the size of the window.
    I tried checkbox "Automatically expand to use available space", but it didn't work.
    I don't think add CSS to my HTML will work, because CSS in HTML will change the html height, not the container in CRM.
    Thank you in advance.

    You most likely have a malware infection. Run and update the following scanners. (Not all programs detect the same infection.)
    1. [http://www.safer-networking.org/]
    2. [http://www.malwarebytes.org/]
    3. [http://www.spywareterminator.com/]
    4. [http://www.microsoft.com/security/malwareremove/default.aspx]
    If those programs do not do the trick, try to post in the following forum:
    1. [http://www.bleepingcomputer.com[
    Other spyware removal forums can be found in a search.
    Does the issue occur in [[Safe Mode]]?

  • Firefox actualized the new version, but it looks only a black screen and no watch buttons and scroll bars, nothing

    The new version of Firefox dosen't work is only a black screen without buttons and scroll bars. I try re install and uninstall and erase files, but dosen't work.

    Sorry, please disable hardware acceleration as a temporary workaround. This is an incompatibility between Firefox 33 and some older graphics card/chipset drivers. More info: https://support.mozilla.org/questions/1025438

  • Frames missing scroll bar in browser

    I have created a webpage index.html that will be my main page
    on the web with three frames on it. The top frame will hold the
    name etc… and the bottom one will hold about 100 small size
    jpeg pictures that will be linked to display the larger size in the
    middle frame. So only the middle frame will have its content change
    based on the clicks on the small jpeg in the bottom frame.
    The problem is when I browse my index.html in the browser (
    IE or firefox) it only shows 7 or 8 small jpegs on the bottom and I
    can’t see the rest of my small jpeg in the browser since
    I’m missing the scroll bar to get to the rest of the small
    jpegs. In dreamweaver it works fine but not in the broser.
    Appreciate all the help I can get… thanks

    We would have to see the pages. Can you post a link?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "jakroo99" <[email protected]> wrote in
    message
    news:fnrpkr$2kl$[email protected]..
    >I have created a webpage index.html that will be my main
    page on the web
    >with
    > three frames on it. The top frame will hold the name
    etc? and the bottom
    > one
    > will hold about 100 small size jpeg pictures that will
    be linked to
    > display the
    > larger size in the middle frame. So only the middle
    frame will have its
    > content
    > change based on the clicks on the small jpeg in the
    bottom frame.
    >
    > The problem is when I browse my index.html in the
    browser ( IE or firefox)
    > it
    > only shows 7 or 8 small jpegs on the bottom and I can?t
    see the rest of my
    > small jpeg in the browser since I?m missing the scroll
    bar to get to the
    > rest
    > of the small jpegs. In dreamweaver it works fine but not
    in the broser.
    >
    > Appreciate all the help I can get? thanks
    >
    >
    >

  • CS3 Opens Files As Frames, Loses Scroll Bar

    Hi
    I have a Windows 7 system on a new computer bought in December. Since I re-installed my copy of Dreamweaver 3 on this new PC, I've been getting two strange errors.
    The first problem is that when I first start up Dreamweaver and open a file it opens it in a small window like this:
    I normally have my layout set to Split view. DW doesn't mind giving me the split view but for some reason it minimises the window like that. It also gives me a tiny arrow under it that converts the page into a frame if I click on it.
    Occasionally DW will go further and open the file as a frame, calling it UntitledFrameset2 or 4 or some random number. And I've also caught it inserting a frame into the html at the bottom of the page, and then this code disappears if I click around a bit.
    If the page has opened as itself e.g. index.html but it's in the small box, as above, I can get it into a normal situation by just clicking on the "Design" or "Code" buttons. That acts like a slap in the face and DW snaps out of it.
    I have messed around with various view settings, cascades etc to no avail. I have uninstalled and re-installed twice, also deleting the configuration file but it seems determined to keep doing this. Upon re-installing it, Dreamweaver remembers my Site files which suggests that there's a cache somewhere I haven't removed. Suggestions?
    It's like there's a setting somewhere telling DW to open files in Frames but I can't find it.
    My second issue is that the scroll bar on my design window loves to disappear for no reason. It might be there when I open the file but if I open another file and click back to the original one, the scroll bar disappears. I have to click the arrow on the right hand side, fill the whole window, click the arrow again and I'll get the scroll bar back, but only temporarily.
    I had DW happily installed on Windows 7 on my last computer and didn't experience either of these issues. I've done a lot of searching of the forums and on Google but haven't been able to find a solution. Would love some help as this is really annoying.
    Thanks
    Karen

    .plist files are found on Mac OSX, not Windows 7.
    Config folder locations for various operating systems are described here
    http://forums.adobe.com/thread/494812
    but I doubt this issue is related to a corrupt config file.

  • Safari crashes and scroll bar disappears after viewing PDF

    Can someone help me with my Safari/PDF problem? When I click to download a PDF file the file opens in a new Safari window. After viewing it, when I close that window and return to the original window, the scroll bar is missing. I then close Safari and get the following crash report:
    Date/Time: 2009-03-06 12:00:07.243 -0800
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: Safari
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Parent: WindowServer [66]
    Version: 3.2.1 (4525.27.1)
    Build Version: 1
    Project Name: WebBrowser
    Source Version: 45252701
    PID: 253
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x0c280293
    Thread 0 Crashed:
    0 com.adobe.acrobat.pdfviewer 0x07efcfec dyldstub_pthread_keycreate + 132997704
    1 com.adobe.acrobat.pdfviewer 0x07ef7710 dyldstub_pthread_keycreate + 132974956
    2 com.adobe.acrobat.pdfviewer 0x07f01e60 dyldstub_pthread_keycreate + 133017788
    3 com.adobe.acrobat.pdfviewer 0x07f0218c NP_Shutdown + 20
    4 com.apple.WebKit 0x0043a520 -[WebNetscapePluginPackage(Internal) _unloadWithShutdown:] + 96
    5 com.apple.WebKit 0x0043a4a8 -[WebNetscapePluginPackage wasRemovedFromPluginDatabase:] + 104
    6 com.apple.WebKit 0x0043a2a0 -[WebPluginDatabase(Internal) _removePlugin:] + 256
    7 com.apple.WebKit 0x0043a160 -[WebPluginDatabase close] + 80
    8 com.apple.Safari 0x0003ad80 0x1000 + 236928
    9 com.apple.Safari 0x0003a824 0x1000 + 235556
    10 com.apple.Safari 0x0003a6c0 0x1000 + 235200
    11 com.apple.Safari 0x0003a5dc 0x1000 + 234972
    12 com.apple.Safari 0x000cb148 0x1000 + 827720
    13 com.apple.Foundation 0x90b04e1c nsnotecallback + 180
    14 com.apple.CoreFoundation 0x9f4eeec0 __CFXNotificationPost + 368
    15 com.apple.CoreFoundation 0x9f4e6f20 _CFXNotificationPostNotification + 684
    16 com.apple.Foundation 0x90aef224 -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    17 com.apple.AppKit 0x925b10e4 -[NSWindow _close] + 100
    18 com.apple.AppKit 0x925b1048 -[NSWindow close] + 36
    19 com.apple.Safari 0x00039f0c 0x1000 + 233228
    20 com.apple.Safari 0x00039e78 0x1000 + 233080
    21 com.apple.Foundation 0x90b0c92c -[NSArray makeObjectsPerformSelector:withObject:] + 264
    22 com.apple.AppKit 0x925b4054 -[NSApplication _deallocHardCore:] + 204
    23 com.apple.AppKit 0x925b2c1c -[NSApplication terminate:] + 520
    24 com.apple.AppKit 0x925b08b4 -[NSApplication sendAction:to:from:] + 108
    25 com.apple.Safari 0x0002c1e4 0x1000 + 176612
    26 com.apple.AppKit 0x9260b094 -[NSMenu performActionForItemAtIndex:] + 392
    27 com.apple.AppKit 0x9260ae18 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 104
    28 com.apple.AppKit 0x92512150 _NSHandleCarbonMenuEvent + 372
    29 com.apple.AppKit 0x9250fab4 _DPSNextEvent + 1280
    30 com.apple.AppKit 0x9250f3f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    31 com.apple.Safari 0x00007f20 0x1000 + 28448
    32 com.apple.AppKit 0x9250b93c -[NSApplication run] + 472
    33 com.apple.AppKit 0x925fc458 NSApplicationMain + 452
    34 com.apple.Safari 0x000b779c 0x1000 + 747420
    35 com.apple.Safari 0x000b74a0 0x1000 + 746656
    Thread 1:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030aac pthreadcondwait + 480
    2 com.apple.WebCore 0x0104dee0 WebCore::IconDatabase::syncThreadMainLoop() + 320
    3 com.apple.WebCore 0x0100a6a8 WebCore::IconDatabase::iconDatabaseSyncThread() + 424
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9f4c79ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9f4c72b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b2db7c +[NSURLCache _diskCacheSyncLoop:] + 152
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9f4c79ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9f4c72b0 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x90b2ca3c +[NSURLConnection(NSURLConnectionInternal) _resourceLoadLoop:] + 264
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9001f48c select + 12
    1 com.apple.CoreFoundation 0x9f4da240 __CFSocketManager + 472
    2 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 ...ple.CoreServices.CarbonCore 0x90419d74 SwitchContexts + 96
    3 ...ple.CoreServices.CarbonCore 0x9040f9dc YieldToThread + 372
    4 ...ple.CoreServices.CarbonCore 0x90419cbc SetThreadState + 192
    5 ...ple.CoreServices.CarbonCore 0x90419bd8 SetThreadStateEndCritical + 144
    6 com.adobe.AcrobatPlugin.eBook 0x2bac4aec main + 5780
    7 com.adobe.AcrobatPlugin.eBook 0x2bac4a2c main + 5588
    8 com.adobe.AcrobatPlugin.eBook 0x2bac4994 main + 5436
    9 com.adobe.AcrobatPlugin.eBook 0x2bac4928 main + 5328
    10 com.adobe.AcrobatPlugin.eBook 0x2bac48ac main + 5204
    11 ...ple.CoreServices.CarbonCore 0x90419e18 InvokeThreadEntryUPP + 24
    12 ...ple.CoreServices.CarbonCore 0x90419a38 CooperativeThread + 220
    13 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9002bfc8 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90001810 pthreadmutexlock + 472
    2 com.apple.Foundation 0x90aeadcc -[NSLock lock] + 28
    3 com.adobe.acrobat.pdfviewer 0x07ef94b0 dyldstub_pthread_keycreate + 132982540
    4 com.adobe.acrobat.pdfviewer 0x07efacf0 dyldstub_pthread_keycreate + 132988748
    5 com.apple.Foundation 0x90b054d8 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x9f4c79ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x9f4c72b0 CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x91458524 HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914582c4 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000007efcfec srr1: 0x000000000200f030 vrsave: 0x00000000fff00000
    cr: 0x44044242 xer: 0x0000000020000007 lr: 0x0000000007ef7710 ctr: 0x000000009000af40
    r0: 0x0000000007ef7710 r1: 0x00000000bfffd410 r2: 0x0000000007f276c8 r3: 0x0000000001bdd6e0
    r4: 0x0000000000000003 r5: 0x0000000000000030 r6: 0x000000000000002c r7: 0x0000000000000e03
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000090072e18 r11: 0x00000000a0006a28
    r12: 0x000000009000af40 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000005776000 r19: 0x0000000001bbf0c0
    r20: 0x00000000a250d304 r21: 0x00000000004da1a0 r22: 0x00000000004da1a0 r23: 0x00000000004ca1a0
    r24: 0x00000000004da1a0 r25: 0x00000000004da1a0 r26: 0x00000000004da1a0 r27: 0x0000000001b11b10
    r28: 0x0000000001bdd6e0 r29: 0x000000000c28024b r30: 0x0000000000000001 r31: 0x0000000000000000
    Binary Images Description:
    0x1000 - 0x1dffff com.apple.Safari 3.2.1 (4525.27.1) /Applications/Safari.app/Contents/MacOS/Safari
    0x405000 - 0x4c3fff com.apple.WebKit 4525.27 (4525.27.1) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x551000 - 0x63afff com.apple.JavaScriptCore 4525.26 (4525.26.2) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x690000 - 0x77efff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x1008000 - 0x16dbfff com.apple.WebCore 4525.26 (4525.26.6) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x1f20000 - 0x1f21fff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x1f9f000 - 0x1fadfff AdobePersonalization /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobePersonalization.framework/AdobePerson alization
    0x5da8000 - 0x5daafff com.apple.textencoding.unicode 2.0 /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x64a2000 - 0x68c5fff com.macromedia.Flash Player.plugin 9.0.151 (1.0.4f60) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
    0x7a0c000 - 0x7a45fff com.apple.audio.SoundManager.Components 3.9.1 /System/Library/Components/SoundManagerComponents.component/Contents/MacOS/Soun dManagerComponents
    0x7ef0000 - 0x7f1bfff com.adobe.acrobat.pdfviewer 7.0.9 /Library/Internet Plug-Ins/AdobePDFViewer.plugin/Contents/MacOS/AdobePDFViewer
    0xa37c000 - 0xa396fff com.adobe.asneu.framework asn version 1.6.0f09 (1.0) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/asn.framework/asn
    0xa3f1000 - 0xa42afff com.adobe.selfhealer AdobeSelfHealing version 2.0.5 (2.0.5) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeSelfHealing.framework/AdobeSelfHealin g
    0xa452000 - 0xa4dafff Onix /Applications/Safari.app/Contents/Frameworks/Onix.Framework/Onix
    0x13557000 - 0x1356efff com.adobe.AcrobatPlugin.DVA 7.0 (7.0.0) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/DVA.acroplugin/DVA
    0x18017000 - 0x1803bfff com.adobe.AcrobatPlugin.ImageViewer 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/ImageViewer.acroplugin/ImageViewer
    0x1807e000 - 0x18114fff com.adobe.AcrobatPlugin.JDFProdDef 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/JDFProdDef.acroplugin/JDFProdDef
    0x181dc000 - 0x1822ffff com.adobe.Preflight Preflight version 7.0.7 (109) (7.0.7 (109)) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Preflight.acroplugin/Preflight
    0x182cb000 - 0x1835efff AdobeJP2K /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x183ce000 - 0x1847afff AdobePDFPort_HFT /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobePDFPortHFT.framework/Versions/A/AdobePDFPortHFT
    0x185d6000 - 0x185fafff AdobeAXE8SharedExpat /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/ AdobeAXE8SharedExpat
    0x18631000 - 0x18656fff AdobeAXE16SharedExpat /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAXE16SharedExpat.framework/Versions/A /AdobeAXE16SharedExpat
    0x1868d000 - 0x186e2fff AdobeXMP /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x18745000 - 0x187f2fff AdobeAXSLE /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
    0x188eb000 - 0x18928fff MSL /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/MSL.framework/Versions/A/MSL
    0x25000000 - 0x25bb5fff com.adobe.Acrobat.framework Acrobat version 7.0.8 (7.1.0) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/Acrobat.framework/Acrobat
    0x271bd000 - 0x27265fff AdobeACE /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x27318000 - 0x276d7fff AdobeAGM /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x27b6b000 - 0x27ba6fff AdobeARE /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x27bf0000 - 0x27c17fff AdobeBIB /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x27c55000 - 0x27c7efff AdobeBIBUtils /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeBibUtils.framework/Versions/A/AdobeBI BUtils
    0x27cc6000 - 0x27eebfff AdobeCoolType /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCo olType
    0x2a11a000 - 0x2a157fff com.adobe.AcrobatPlugin.Accessibility 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Accessibility.acroplugin/Accessibility
    0x2a1a3000 - 0x2a7fcfff com.adobe.AcrobatPlugin.AcroForm 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/AcroForm.acroplugin/AcroForm
    0x2b1df000 - 0x2b20efff com.adobe.AcrobatPlugin.Catalog 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Catalog.acroplugin/Catalog
    0x2b252000 - 0x2b2bffff com.adobe.AcrobatPlugin.Checkers 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Checkers.acroplugin/Checkers
    0x2b3d0000 - 0x2b59afff com.adobe.AcrobatPlugin.Comments 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Comments.acroplugin/Comments
    0x2b816000 - 0x2b934fff com.adobe.AcrobatPlugin.DigSig 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/DigSig.acroplugin/DigSig
    0x2ba67000 - 0x2ba73fff com.adobe.AcrobatPlugin.Distiller 7.0.5 (7.0.7) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/DistillerPI.acroplugin/DistillerPI
    0x2bac1000 - 0x2bbb4fff com.adobe.AcrobatPlugin.eBook 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/eBook.acroplugin/eBook
    0x2bd8f000 - 0x2bdacfff com.adobe.AcrobatPlugin.EFS 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/EFS.acroplugin/EFS
    0x2bdde000 - 0x2bef9fff com.adobe.AcrobatPlugin.EScript 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/EScript.acroplugin/EScript
    0x2c041000 - 0x2c064fff com.adobe.AcrobatPlugin.EWH 7.0.7 (7.0.8) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/EWH.acroplugin/EWH
    0x2c078000 - 0x2c079fff com.adobe.AcrobatPlugin.FlattenerView 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/FlattenerView.acroplugin/FlattenerView
    0x2c07f000 - 0x2c085fff com.adobe.AcrobatPlugin.HLS 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/HLS.acroplugin/HLS
    0x2c08f000 - 0x2c308fff com.adobe.AcrobatPlugin.HTML2PDF 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/HTML2PDF.acroplugin/HTML2PDF
    0x2c7b7000 - 0x2c886fff com.adobe.AcrobatPlugin.ImageConversion 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/ImageConversion.acroplugin/ImageConversion
    0x2c965000 - 0x2c98dfff com.adobe.mdkitadapter MDKitAdapter version 7.0.0 (7.0.5) /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/ImageConversion.acroplugin/Frameworks/MDKitA dapter.framework/MDKitAdapter
    0x2d07d000 - 0x2d080fff com.adobe.AcrobatPlugin.LegalPDF 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/LegalPDF.acroplugin/LegalPDF
    0x2d088000 - 0x2d2b0fff com.adobe.AcrobatPlugin.MakeAccessible 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/MakeAccessible.acroplugin/MakeAccessible
    0x2d711000 - 0x2d85efff com.adobe.AcrobatPlugin.Multimedia 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Multimedia.acroplugin/Multimedia
    0x2dae1000 - 0x2dba3fff com.adobe.AcrobatPlugin.PaperCapture 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PaperCapture.acroplugin/PaperCapture
    0x2dc75000 - 0x2dceafff com.adobe.AcrobatPlugin.PDDom 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PDDom.acroplugin/PDDom
    0x2dd9a000 - 0x2de09fff com.adobe.AcrobatPlugin.Template 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PictureTasks.acroplugin/PictureTasks
    0x2debe000 - 0x2e262fff com.adobe.AcrobatPlugin.PPKLite 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/PPKLite.acroplugin/PPKLite
    0x2e841000 - 0x2e880fff com.adobe.AcrobatPlugin.Reflow 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Reflow.acroplugin/Reflow
    0x2e8fc000 - 0x2e93bfff com.adobe.AcrobatPlugin.SaveAsRTF 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SaveAsRTF.acroplugin/SaveAsRTF
    0x2e997000 - 0x2e9e4fff com.adobe.AcrobatPlugin.SaveAsXML 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SaveAsXML.acroplugin/SaveAsXML
    0x2ea95000 - 0x2eacffff com.adobe.AcrobatPlugin.Search 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Search.acroplugin/Search
    0x2eb1e000 - 0x2eb30fff com.adobe.AcrobatPlugin.SendMail 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SendMail.acroplugin/SendMail
    0x2eb50000 - 0x2ec09fff com.adobe.AcrobatPlugin.SOAP 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/SOAP.acroplugin/SOAP
    0x2ed14000 - 0x2ed60fff com.adobe.AcrobatPlugin.Spelling 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Spelling.acroplugin/Spelling
    0x2eed3000 - 0x2eeedfff com.adobe.AcrobatPlugin.TablePicker 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/TablePicker.acroplugin/TablePicker
    0x2ef1a000 - 0x2f0f6fff com.adobe.AcrobatPlugin.TouchUp 7.0.5 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/TouchUp.acroplugin/TouchUp
    0x2f368000 - 0x2f3b1fff com.adobe.AcrobatPlugin.Updater 7.1.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Updater.acroplugin/Updater
    0x2f4c0000 - 0x2f4e0fff com.adobe.AcrobatPlugin.WebLink 7.0.7 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/WebLink.acroplugin/WebLink
    0x2f50c000 - 0x2f5eefff com.adobe.AcrobatPlugin.Web2PDF 7.0.0 /Applications/Adobe Acrobat 7.0 Professional/Adobe Acrobat 7.0 Professional.app/Contents/Plug-ins/Web2PDF.acroplugin/Web2PDF
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x903b2000 - 0x90689fff com.apple.CoreServices.CarbonCore 681.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x909f9000 - 0x90a81fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x90adf000 - 0x90d12fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x915c1000 - 0x915d0fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x915d9000 - 0x915e6fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91630000 - 0x91649fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91b4a000 - 0x91b68fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91d08000 - 0x91d0bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91e10000 - 0x91e52fff com.apple.LaunchServices 183 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x91f4e000 - 0x91f6dfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd9000 - 0x92047fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92052000 - 0x920e7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92507000 - 0x92b3afff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92f29000 - 0x92f47fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f52000 - 0x92facfff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fca000 - 0x92fcafff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fcc000 - 0x92fe0fff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92ff8000 - 0x93008fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93014000 - 0x93029fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9303b000 - 0x930c2fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930d6000 - 0x930e1fff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93133000 - 0x93143fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9314f000 - 0x931b5fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931e6000 - 0x93235fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93263000 - 0x93280fff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x93292000 - 0x9329ffff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x933dc000 - 0x9350cfff com.apple.AddressBook.framework 4.0.6 (490) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93706000 - 0x93712fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93717000 - 0x93737fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9374d000 - 0x9374efff com.apple.ServerControl 10.3.0 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x9378b000 - 0x9378bfff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93a4e000 - 0x93a6bfff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93a74000 - 0x93af5fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9414d000 - 0x941bffff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x941f8000 - 0x942bdfff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94310000 - 0x94310fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94312000 - 0x944d2fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9451c000 - 0x94559fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x94561000 - 0x945b1fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x945e3000 - 0x94604fff com.apple.framework.Admin 1.5.7 /System/Library/PrivateFrameworks/Admin.framework/Admin
    0x94619000 - 0x94619fff com.apple.AFPDefines 3.1.6 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x9466c000 - 0x946a4fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x946e9000 - 0x94705fff com.apple.securityfoundation 2.2 (27710) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94719000 - 0x9475dfff com.apple.securityinterface 2.2 (27692) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x94c21000 - 0x94c92fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94fcb000 - 0x94fdafff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94fe2000 - 0x9500ffff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95016000 - 0x95026fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x9572e000 - 0x95830fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x9588b000 - 0x95952fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x959a1000 - 0x959d0fff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x96326000 - 0x963f8fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x964ac000 - 0x964e4fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x96500000 - 0x96542fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9675a000 - 0x9680bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x96cdb000 - 0x96cf1fff libJapaneseConverter.dylib /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x96cf3000 - 0x96d13fff libKoreanConverter.dylib /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x96d21000 - 0x96d2ffff libSimplifiedChineseConverter.dylib /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x96d37000 - 0x96d4afff libTraditionalChineseConverter.dylib /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x97b40000 - 0x97b86fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x97ba8000 - 0x97c5ffff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x97e75000 - 0x97e8ffff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x97f0b000 - 0x97f49fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9aec8000 - 0x9aee6fff com.apple.OpenTransport 2.0 /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport
    0x9ba38000 - 0x9ba6efff com.apple.Syndication 1.0.7 (55) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9ba8e000 - 0x9baa0fff com.apple.SyndicationUI 1.0.7 (55) /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x9e3ee000 - 0x9e42dfff com.apple.QuickTimeFireWireDV.component 7.6 (1290) /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x9e436000 - 0x9e443fff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9e45b000 - 0x9e78dfff com.apple.QuickTime 7.6.0 (1290) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9e875000 - 0x9e8a3fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9e8bd000 - 0x9e8d6fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9e8e6000 - 0x9e9d4fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9e9d7000 - 0x9ed02fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9ed32000 - 0x9f2bafff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9f2ed000 - 0x9f3d2fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9f3da000 - 0x9f3dafff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9f3dc000 - 0x9f3f1fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9f3f6000 - 0x9f47afff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x9f4a4000 - 0x9f57efff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9f5c7000 - 0x9f67efff com.apple.QD 3.10.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9f6bb000 - 0x9fa76fff com.apple.CoreGraphics 1.258.82 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9fb03000 - 0x9fb15fff libauto.dylib /usr/lib/libauto.dylib
    0x9fb1c000 - 0x9fb8cfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9fba2000 - 0x9feb0fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    Model: PowerMac4,2, BootROM 4.3.4f2, 1 processors, PowerPC G4 (2.1), 800 MHz, 512 MB
    Graphics: NVIDIA GeForce2 MX, GeForce2 MX, AGP, 32 MB
    Memory Module: DIMM0/J12, 256 MB, SDRAM, PC133-333
    Memory Module: DIMM1/J13, 256 MB, SDRAM, PC133-333
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: Built-in Ethernet, Ethernet, en0
    Parallel ATA Device: Maxtor 4D060H3, 55.9 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-104
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: iMic USB audio system, Griffin Technology, Inc, Up to 12 Mb/sec, 100 mA
    USB Device: Apple Optical USB Mouse, Mitsumi Electric, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    Thanks for your time and assistance.

    As hpr3 says, if you just want to view the pdf in Safari it can display them natively.
    If you wanted to continue using Adobe, then Adobe Acrobat 7 isn't compatible with Safari 3+. Download Adobe Reader 9 and use that instead.

  • Issue with div "s4-workspace" and scroll bar

    Hi,
    I have a standard publishing site, I just added an horizontal menu (the publishing site doesn't have it) but I'm experiencing a strange behavior:
    With my custom menu the div "s4-workspace" shifts down by the height of the menu and I cannot see the end part of the page content.
    I noticed this because I was looking at the workspace right scroll bar and I could not see the end.
    I copied my horizontal menu from the Team Site, where the menu is scrolling inside the workspace, but I want to keep it fix under the ribbon.
    I guess that it's a div displacement problem, but I could not find anything to fix it. I opened the nigthandday.css and the core4.css looking for some CSS style property, but nothing...
    This is what it looks like:
    <!-- Ribbon end -->
    <div>
    <!-- my custom menu -->
    </div>
    <div id="s4-workspace">
    Any help?
    Thank you,
    Nicola.

    If you look at the page, you will notice that the whole page doesn't scroll by default.  Only the S4-workspace and below scrolls.  This is done through the use of a Javascript.  Your problem is that you have inserted something between the
    div's at the top of the page and the S4-workspace div.  The javascript isn't aware of that and so it's not factoring in that height when it calculates how to scroll the page.  So you can never reach the bottom.
    To fix it you need to either remove the factors that cause the partial page scrolling and scroll the whole page or insert your menu into either the top of the s4-workspace div or one of the other existing div's at the top of the page.  Take a look at
    the following article for a more indepth explanation.
    http://blogs.msdn.com/b/sharepoint/archive/2010/04/06/customizing-ribbon-positioning-in-sharepoint-2010-master-pages.aspx
    Paul Stork SharePoint Server MVP

  • Data Table Fixed rows and Scroll Bar

    Hi
    I have data table which displays the data dynamically, but when there is no data , the table is shrinking and moving the other elements of the page. Is there any way i can keep to fixed number of rows irrespective of data presence?
    Like i need to display only 10 rows at a time, if there are 7 rows in DB, i have t o display 7 rows containing data and rest as blank .
    If my data increases more than 10 rows how can i enable Scroll Bar Automatically on this?
    Thanks in advance.

    Then add empty row objects to the collection or datamodel which is been passed to the datatable value.

  • Table with fixed header and scroll bar

    Was able to use Dreamweaver 2004 to set up a table to display
    data from a MySQL table. But then the customer wanted to have a
    scroll bar on one side and fixed headers at the top "like Excel",
    because the number of rows retrieved were too long to fit on a
    page. This was harder than I thought. I had to use CSS and
    Javascript with a lot of help to make this happen. Then it didn't
    work in IE7, so I had to use a different approach for IE. I got it
    to almost work perfectly in IE7. It just has a tiny bit of the
    table visible scrolling by above the header rows.
    http://www.ykfp.org/php/lyletrap/tabletotalscss13.php
    Why does Microsoft make this so difficult? Why aren't web standards
    good enough for Microsoft? Is there a better approach to tables
    with scroll bars?

    When things go sour in any browser, validate your code.  I see you have some unclosed <table> tags which could effect page rendering.
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.ykfp.org%2Fphp%2Flyletrap%2Ft abletotalscss09.php
    If you still have problems with IE8 after fixing the code errors, try adding this meta tag to your <head>.  It forces IE8 into IE7 mode.
    <meta http-equiv="X-UA-Compatible" content="IE=7">
    Hope that helps,
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb
    http://alt-web.blogspot.com

  • Firefox Doesn't Load Any Website and Scroll Bar Switches to the Left Side of the Screen??

    First let me say this is a work computer that I am using, so there is plenty of virus protection and firewall. I have always used firefox for all my casual internet browsing and work network needs. I recently updated to the latest version of firefox and that is when I started having problems. Almost any web page I go to wether it is my work intranet home page or a common site such as google mozilla will not finish loading the page. If I hit refresh or try to go to another site it gets wierd and the scroll bar switches to the left side of the screen and the page seems to be stuck loading. At this point almost nothing responds to any mouse clicks except for closing the firefox window. If I go to tools --> options it brings up a blank options window with only the "ok" and "cancel" buttons displayed. Help please, I don't like using IE, but right now that is my only option.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 2.0.50727; .NET CLR 3.0.04506.648; .NET CLR 3.5.21022; InfoPath.1; Tablet PC 1.7; .NET CLR 1.0.3705; .NET CLR 3.0.4506.2152; .NET CLR 3.5.30729)

    There are several reasons why the site may look wrong:
    * ''Bad item stored in the Browser Cache'': Follow the steps at [[How to clear the cache]].
    * ''Bad cookie from the broken site'': Clear cookies from the broken site by following the steps at [[Deleting cookies]].
    * Images are blocked/disabled: see [[Images or animations do not show]]
    * Plug-ins are outdated: check for outdated plugins on the [http://www.mozilla.com/en-US/plugincheck/ plugin check page].
    * Firewall software is blocking some resources on the page: see [[Firewalls]]
    * An extension may be causing the problem: see [[Troubleshooting extensions and themes]]
    For other steps to try, see [[Web sites look wrong]]

  • Really simple question, stop function and scroll bar won't work

    I was working on different parts of this VI separately, when I put them together the scroll bar and stop button stopped working. 
    In the individual VI both are in the while loop. In the final one I was one scroll bar and one stop button to apply to all 5 while loops.
    I tried taking the scroll bar in and out of the first loop to attach it to the rest but it still won't work.
    I'm sure that there is a really stupid simple answer but I've been playing with it for a while.
    I attached the VI that I am working on as well at fake data (to test the color boxes).
    Thanks!
    Solved!
    Go to Solution.
    Attachments:
    trial8.vi ‏95 KB
    trial8.vi ‏95 KB
    0_1024.txt ‏25 KB

    You have a typical beginner problem due to incorrect understanding of dataflow. Run the code using execution highlighting and watch the diagram to see.
    Your stop button is outside any loop and thus will only be read by the code exactly once at the start of the program.
    Your scroll bar is read in the first loop. All other loops cannot start until the first loop has completed and since (1) is true, it will never happen if the boolean is false when the code starts.
    Why do you have so much duplicate code? 95% of the loop code is the same and can be re-used. I am sure the entire thing could be written using 5% of the total code. Put everything in one loop, the iterate over the 2D array to get all the values. Don't forget to place a small wait inside the while loop.
    LabVIEW Champion . Do more with less code and in less time .

  • [FYI] FRM-92101 and scroll bar and form crash

    Forms 6i
    Windows 2k for app server.
    I have just spent three hours figuring out why I was getting a FRM-92101 when I deployed a form from my development app server to my test app server. Noted that the development server has patch 18 and uses cgi, not sure what patch the test server has but it uses servlet. Anyway the form worked perfectly on the dev server but would crash out with the error on entry in the form on the test server. Eventually I found the solution to be a scroll bar on a block, get rid of the scroll bar from the canvas and voila it worked. Ended up having to place the scroll bar on a stacked canvas to get it to work on the test server. I have already had to deal with a palette issue and those dark pink colours on deployment. Developed for a while on visual studio and never came across such annoying quirks as these.

    I use XP to develop so I was compiling it there and then copying it across to both servers. Should I compile forms on the app server where they are going to be served or have I picked you up correctly?
    Kind regards

  • Content and scroll bar spill out of div at bottom

    Hello again,
    One final teething problem on my website. I have set overflow to auto so a scrollbar will appear if the content exceeds the height specified. I want the window to be scaleable so there are no problems on smaller monitors.
    However, if I resize my browser window, the content of the div and the scroll bar both exceed the height of the div and appear behind my footer (#copyright) and hit the bottom of the window, not the bottom of the div. I can't understand this, so I'm here to plead for help!
    Pic: http://img156.imageshack.us/img156/9589/screenshot20101013at202.png
    The page has a spry menubar, but I don't think this can be related. If it is, it can be seen in my earlier thread. The HTML and CSS have been updated here:
    HTML: http://codeviewer.org/view/code:1295
    CSS: http://codeviewer.org/view/code:1296
    Thank you very much for any help!

    It's not clear to me what is actually your code and what may have been injected by your host.
    Are you putting google ads and pop-up ads on your page or is your web host doing this?  Very annoying.
    Are you putting #catfish12861ecc into a position: fixed container or is your host doing this?
    Did you put your #copyright into a position: fixed container?  I think that should remain static (default) to work well on your site.
    Finally have you run your code through the W3C Validation tools?
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fegparadigm.bestinternetdancer.com %2FPhotography%2Fconceptual%2Fexistence%2Fgallery.html%23
    Again, I'm not sure if the reported errors are caused by your code or something your host is doing...
    Nancy O.
    Alt-Web Design & Publishing
    Web | Graphics | Print | Media  Specialists
    http://alt-web.com/
    http://twitter.com/altweb

  • JTable column movement and scroll bar

    Hello:
    I have a JTable with about 30-40 columns. Sometimes I would like to drag the column from rightmost to closer to the left end. I am not able to do that in one shot. and instead have to do it in multiple steps. Is there a way for the scroll bar to sort of move alongside the column as I drag it along?

    i dont know if there is way off hand. But you can put your own mouseListener of the JScrollPane and i am sure there is some method to check if you are dragging the JTable and if you are move the JScrollBar in the direction.
    I think that you are going to have to make you own implementation of this.
    David

Maybe you are looking for

  • How to sync tables in scheduler DB#1 and scheduler DB#2

    Hi experts the issue is as following ==== Customer's BIP environment is as following [Publisher 1] [Publisher 2] ---------+---------> [ scheduler DB 1] (primary)                                                  [ scheduler DB 2] (stand by) BIP :10.1.

  • Distributed cache

    HI, We have a server (Server 1), on which the status of the Distributed cache was in "Error Starting" state. While applying a service pack due to some issue we were unable to apply the path (Server 1) so we decided to remove the effected server from

  • PI 7.1 - condition during receiver determination

    Hi, I am trying to do the receiver determination condition in the condition editor of integration directory but XPATH or context objects of my interface (corresponding to my software component version) do not appear in the window for maintaining the

  • How does the quality of service in India compare to the United States?

    I am currently in India and 12 hours from the closest Apple service center in Delhi.  After the monsoon rains started my computer started acting up.  At first some keys seemed to stick and I was able to solve the problem by attaching a USB keyboard. 

  • How to unlock the volume control

    how do you unlock the volume control if you do not have a code to enter?