Problems Viewing JQuery With Firefox

I have been developing using IE6 and having no problems getting JQuery to work.
I hold my JQuery js and css in external files and then reference them using substitution strings in the shared components/application definitions. I then place a call to these in my page template.
In IE I have no problems, everything seems to work.
In firefox, dialog boxes and tabs do not work correctly. Tabs seem to appear as lists and dialogs, I can see the text but not the container.
Is there a setting in Firefox, I need to look at
Gus]

I have firebug, but very new to it.
I have looked and seems to calling the correct classes, from the external css file, but the browser seems unable to display them.
Is there an apache setting I need to look at ?
Gus

Similar Messages

  • I am trying to view my pay stubs online but nothing happens when I click on the link. Does anyone know why, I never had a problem viewing them with my pc?

    I am trying to view my pay stubs online but nothing happens when I click on the link. Does anyone know why, I never had a problem viewing them with my pc?

    Nobody knows why because you have not provided sufficient information. Web site? Browser? How do you see your pay stubs online? Company web site? Unsecure?

  • Every time I try to view images with firefox it crashes, shuts down and then asks if I want to re-open, how do I view images again with firefox?

    Everytime I try to view images with firefox it crashes, submits a report, to which I've had no response yet, asks if I want to restart firefox with last session or start a new session. What is going on?

    It only happens if I try to use google images with firefox. I've now narrowed it down to an extension, AVG SafeSearch, doesn't happen if I disable this.

  • When I try to access certain listings on ebay they are blocked - I am told this is because it thinks I am in France. I use an English ISP and the problem only happens with Firefox, not (for instance) IE. How can I overcome this?

    When I try to access certain listings on eBay I get the following message:
    "Unfortunately, access to this particular listing or item has been blocked due to a Paris commercial court decision that bans trade of certain authentic perfumes and cosmetic products on eBay because of French selective distribution laws. eBay is appealing this ruling but is nevertheless required to enforce it. We are blocking your viewing in an effort to comply with this court decision. Regrettably, in some cases, we may prevent users from accessing items that are not within the scope of the decision because of limitations on existing technology."
    eBay support told me it is because they think I am in France or because I am using a French ISP. I am in London and am using the British ISP, Bethere. What can I do to convince them that I am in England?
    The URL quoted is just an example. It happens frequently with other listings.

    This is what I get:
    ISP: Be Un Limited
    Organization: Be Un Limited
    Connection: Broadband
    Services: None Detected
    City: Horsham
    Region: West Sussex
    Country: United Kingdom
    It can't be a problem with my ISP or my IP address since it only happens with Firefox. When I try out the same listings with other browsers it doesn't happen. eBay said Firefox must be making it seem as though I am in France. Goodness knows how or why??

  • For no apparent reason, my email will not autofill addresses. I have no problem on IE, Chrome or Opera. This problem just started with firefox within the last 24 hours. My mail server is AT&T/Yahoo, and I use webmail - not a mail program.

    With all other browsers, when I compose an email, once I start to put the recipient's name in the To box, it will autofill the name if it is in my Contacts. This has been the case with firefox until the last 24 hours. Now, firefox does not automatically recognize any of my contacts. This problem is not happening on IE, Chrome, or Opera. I access my email through my AT&T/Yahoo account on the web, not through a mail program.

    please try to uninstall the adobe flash plugin from the windows control panel. afterwards manually delete any leftover files in ''C:\Windows\SysWOW64\Macromed\Flash'' and download & install the plugin again (uncheck the option to install the bundled security software): www.adobe.com/go/getflashplayer

  • I have problems using gmail with firefox

    When I get connected in internet using Firefox, and then I open my e-mail, which is g-mail, I see my entrance mailbox, and I received e-mails, but I cannot write a new e-mail, or print, or send, etc. I cannot do anything with my e-mails.
    My g-mail works with Internet Explorer but not with Firefox.

    What kind of problems do you have?
    * https://support.mozilla.com/kb/Basic+Troubleshooting
    * https://support.mozilla.com/kb/Browsing+basics

  • Unable to use firefox to axcess bank or pay online, bank tells me the problem is only with firefox.

    I use a norwegian bank called Sr-bank (www.sparebank1.no).
    The error i recived trying to pay told me to contact the bank and give them the error code "BID-2031" if the problem persisted, so i did.
    I recived an e-mail from the bank saying that this was a Mozilla firefox problem and suggested that i switched to internet explorer or chrome. They also sent me a link on theyr bank page, which "explained" the problem. Directly translated it said:
    "You use the Mozilla Firefox browser
    Our experience is that the BID 2031 occurs for those who use Mozilla Firefox browser. We recommend you to try using a different browser such as Google Chrome, until further notice."
    I wan't to keep using firefox, and i know that if i start using other browsers to axcess bank, it woun't be long before i don't bother using firefox at all. Please tell me you have a solution to this problem?

    the main page is not the problem, it is the login/security check...
    Anyway, my other bank (a local bank) dosn't seem to have any problem with firefox, so if the problem persist, I will probably switch permanentlly to the other bank.

  • Problems Logging in with Firefox

    I can browse the forums with Firefox without any trouble. But when I try to sign in (after giving my username and password) I always get this message:
    The page isn't redirecting properly
    Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
    * This problem can sometimes be caused by disabling or refusing to accept
    cookies.
    Of course my cookies are enabled in Firefox.
    Firefox: 1.5.0.6
    Windows: XP pro
    Can anyone else login with Firefox?
    Brent

    Can anyone else login with Firefox?I'm using Firefox, no problems here.

  • Problem: View Object with Multiple Updateable Dependent Entity Objects

    I try to implement a ViewObject with 2 updateable entities based on the document:
    http://www.oracle.com/technology/products/jdev/howtos/bc4j/multientityvo.html
    But I get an early NullPointerException:
    As written in the document I overriden the create method in the ViewObjectRowImpl class:
    protected void create(AttributeList attributeList) {
    // The BC4J framework will already have created "blank" entity instances
    System.out.println(getClass().getName()+"create BEGIN");
    LabEventTypeItemImpl newLabEventTypeItem = this.getLabEventTypeItem();
    System.out.println(getClass().getName()+"create 1");
    TariffItemImpl newTariffItem = this.getTariffItem();
    System.out.println(getClass().getName()+"create 2");
    try {
    // Let department "blank" entity instance to do programmatic defaulting
    newLabEventTypeItem.create(attributeList);
    System.out.println(getClass().getName()+"create 3");
    // Let employee "blank" entity instance to do programmatic defaulting
    // passing in new DepartmentImpl instance so its attributes are
    if (newTariffItem == null) // added trace
    System.out.println(getClass().getName()+"create newTariffItem IS NULLLLL");
    // available to the EmployeeImpl's create method.
    newTariffItem.create(newLabEventTypeItem);
    System.out.println(getClass().getName()+"create 4");
    catch (JboException ex) {
    if (newLabEventTypeItem != null)
    newLabEventTypeItem.revert();
    if (newTariffItem != null)
    newTariffItem.revert();
    throw ex;
    catch (Exception otherEx) {
    if (newLabEventTypeItem != null)
    newLabEventTypeItem.revert();
    if (newTariffItem != null)
    newTariffItem.revert();
    throw new RowCreateException(true /* EO Row? */,
    "LabEventTypeItem" /* EO Name */,
    otherEx /* Details */);
    System.out.println(getClass().getName()+"create END");
    The code:
    TariffItemImpl newTariffItem = this.getTariffItem();
    is equivalent in the example to:
    EmployeeImpl newEmployee = getEmployee();
    In my case this.getTariffItem() <=> getEmployee() returns null?
    I get an Exception when I call:
    newTariffItem.create(newLabEventTypeItem);
    Equivalent to:
    newEmployee.create(newDepartment);
    ViewObject partial XML:
    ======================
    <DesignTime>
    <Attr Name="_isCodegen" Value="true" />
    <Attr Name="_version" Value="10.1.2.17.96" />
    <Attr Name="_codeGenFlag2" Value="Access|Coll|Msg" />
    <Attr Name="_isExpertMode" Value="false" />
    </DesignTime>
    <EntityUsage
    Name="LabEventTypeItem"
    Entity="com.photoswing.model.lab.LabEventTypeItem" >
    <DesignTime>
    <Attr Name="_EntireObjectTable" Value="false" />
    <Attr Name="_queryClause" Value="true" />
    <Attr Name="_queryWhere" Value="(((LabEventTypeItem.LAB_EVENT_TYPE_ITEM_ID = TariffItem.LAB_EVENT_TYPE_ITEM_ID)AND (LabEventTypeItem.ITEM_ID = Item.ITEM_ID))AND (LabEventTypeItem.PRINT_SIZE_DPI_ID = PrintSizeDpi.PRINT_SIZE_DPI_ID(+)))AND (LabEventTypeItem.FILM_PRINT_SIZE_DPI_ID = FilmPrintSizeDpi.FILM_PRINT_SIZE_DPI_ID(+))" />
    <Attr Name="_queryOrderBy" Value="Item.ITEM_TYPE_ID,PrintSizeDpi.REQ_MEGA_PIXELS,Item.ITEM_ID" />
    </DesignTime>
    </EntityUsage>
    <EntityUsage
    Name="TariffItem"
    Entity="com.photoswing.model.lab.TariffItem"
    Association="com.photoswing.model.lab.TariffItemLabEventTypeItemFkAssoc"
    AssociationEnd="com.photoswing.model.lab.TariffItemLabEventTypeItemFkAssoc.TariffItemLabEventTypeItem"
    SourceUsage="com.photoswing.model.lab.LabEventTypeItemAndTariffItemVO.LabEventTypeItem"
    Reference="true" >
    <DesignTime>
    <Attr Name="_EntireObjectTable" Value="false" />
    <Attr Name="_queryClause" Value="false" />
    <AttrArray Name="_srcAttributes">
    <Item Value="com.photoswing.model.lab.LabEventTypeItem.LabEventTypeItemId" />
    </AttrArray>
    <AttrArray Name="_dstAttributes">
    <Item Value="com.photoswing.model.lab.TariffItem.LabEventTypeItemId" />
    </AttrArray>
    </DesignTime>
    </EntityUsage>
    Stack trace:
    ===========
    oracle.jbo.RowCreateException: JBO-25017: Error while creating a new entity row for LabEventTypeItem.
         at com.photoswing.model.lab.LabEventTypeItemAndTariffItemVORowImpl.create(LabEventTypeItemAndTariffItemVORowImpl.java:1370)
         at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:353)
         at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:2599)
         at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1048)
         at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:1725)
         at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:1769)
         at oracle.jbo.server.ViewRowSetImpl.createRow(ViewRowSetImpl.java:1749)
         at oracle.jbo.server.ViewObjectImpl.createRow(ViewObjectImpl.java:6230)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:891)
         at oracle.jbo.uicli.jui.JUActionBinding.doIt(JUActionBinding.java:203)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:478)
         at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:306)
         at com.photoswing.component.JUNavBar.doAction(JUNavBar.java:1114)
         at oracle.jbo.uicli.controls.JUNavigationBar.actionPerformed(JUNavigationBar.java:259)
         at com.photoswing.component.JUNavBar.actionPerformed(JUNavBar.java:419)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java)
         at java.awt.Component.dispatchEvent(Component.java)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:458)
         at com.photoswing.view.start.WaitCursorEventQueue.dispatchEvent(PhotoWebshopDesktop.java:3077)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    ## Detail 0 ##
    java.lang.NullPointerException
         at com.photoswing.model.lab.LabEventTypeItemAndTariffItemVORowImpl.create(LabEventTypeItemAndTariffItemVORowImpl.java:1355)
         at oracle.jbo.server.ViewRowImpl.callCreate(ViewRowImpl.java:353)
         at oracle.jbo.server.ViewObjectImpl.createInstance(ViewObjectImpl.java:2599)
         at oracle.jbo.server.QueryCollection.createRowWithEntities(QueryCollection.java:1048)
         at oracle.jbo.server.ViewRowSetImpl.createRowWithEntities(ViewRowSetImpl.java:1725)
         at oracle.jbo.server.ViewRowSetImpl.doCreateAndInitRow(ViewRowSetImpl.java:1769)
         at oracle.jbo.server.ViewRowSetImpl.createRow(ViewRowSetImpl.java:1749)
         at oracle.jbo.server.ViewObjectImpl.createRow(ViewObjectImpl.java:6230)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.doIt(JUCtrlActionBinding.java:891)
         at oracle.jbo.uicli.jui.JUActionBinding.doIt(JUActionBinding.java:203)
         at oracle.jbo.uicli.binding.JUCtrlActionBinding.invoke(JUCtrlActionBinding.java:478)
         at oracle.jbo.uicli.controls.JUNavigationBar.doAction(JUNavigationBar.java:306)
         at com.photoswing.component.JUNavBar.doAction(JUNavBar.java:1114)
         at oracle.jbo.uicli.controls.JUNavigationBar.actionPerformed(JUNavigationBar.java:259)
         at com.photoswing.component.JUNavBar.actionPerformed(JUNavBar.java:419)
         at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1786)
         at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1839)
         at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:420)
         at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:258)
         at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:245)
         at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:231)
         at java.awt.Component.processMouseEvent(Component.java:5100)
         at java.awt.Component.processEvent(Component.java:4897)
         at java.awt.Container.processEvent(Container.java:1569)
         at java.awt.Component.dispatchEventImpl(Component.java:3615)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java)
         at java.awt.LightweightDispatcher.processMouseEvent(Container.java:3198)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3128)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java)
         at java.awt.Component.dispatchEvent(Component.java)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:458)
         at com.photoswing.view.start.WaitCursorEventQueue.dispatchEvent(PhotoWebshopDesktop.java:3077)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:146)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Thanks
    Frederic

    I get the same error on the scott schema:
    protected void create(AttributeList attributeList) {
    // The BC4J framework will already have created "blank" entity instances
    DeptImpl newDept = getDept();
    EmpImpl newEmp = getEmp();
    try {
    // Let dept "blank" entity instance to do programmatic defaulting
    newDept.create(attributeList);
    // Let emp "blank" entity instance to do programmatic defaulting
    // passing in new DeptImpl instance so its attributes are
    // available to the EmpImpl's create method.
    if (newEmp == null)
    System.out.println(getClass().getName()+".create newEmp IS NULL");
    newEmp.create(newDept);
    catch (JboException ex) {
    newDept.revert();
    newEmp.revert();
    throw ex;
    catch (Exception otherEx) {
    newDept.revert();
    newEmp.revert();
    throw new RowCreateException(true /* EO Row? */,
    "Dept" /* EO Name */,
    otherEx /* Details */);
    The trace shows:
    model.CreateDepartmentAndFirstEmployeeRowImpl.create newEmp IS NULL
    Another problem:
    Refreshing Foreign Key Values in New Employees Once Final Department Id is Assigned:
    Number newDeptno = getDeptno().getSequenceNumber();
    doesn't compile getSequenceNumber() unknown.
    I send you a usecase as a zip file.
    The code for Refreshing Foreign Key in is comment at the end of the DeptImpl file.
    Regards
    Frederic
    I send you the

  • Website viewing issue with Firefox 3.6 under Windows 7

    I use java script to list current headlines on my website userfriendlypc.net under, "In The News". The website has always looked good under Firefox, IE, Safari, Opera and Google Chrome. Since migrating to Windows 7, Firefox, only Firefox makes the text link in this area look like crap after the first link. The text changes to a greenish color and the hovered link seems offset making it look really bad. This only occurs in Firefox and only under Windows 7. I have tested this under Windows 7 with a basic install of Firefox and under XP. No add-ins or anything else was added when it occurred on the test machine.

    I thought the ClearType configuration would fix the problem as it seemed to clear it up once ClearType was disabled however doing this made other things look like crap. I tried every combination available and this did not fix the problem. I was able to fix the problem however by eliminating the fade function from the javascript on the web page. The "In The NEWS" section still functions properly, just without fading the article titles in and out. A compromise I can live with. Thanks all for your help and hopefully, we won't run into any further problems.
    Steve

  • Having problems viewing videos in Firefox (only quarter screen)

    Suddenly in Firefox 23 I found that videos would only play in the top left hand corner of the video box (i.e. in Youtube). Full screen works ok. Firefox 22 works ok but the new Firefox 24 has the same problem.
    There's a discussion in Mozilla where it appears to be an issue with Retina screens.
    https://support.mozilla.org/en-US/questions/968863?esab=a&s=&r=0&as=s
    There's some solutions posted there but they don't seem to be helping me.
    The last discussion was me saying
    My problem is still the same. Hardware acceleration is ticked and about:support says "GPU Accelerated Windows 0/1 Basic"
    and the Mozilla bloke saying
    "I think that indicates that Firefox isn't compatible with your graphics card drivers so it is not actually using hardware acceleration. Can you find out whether any updates are available either from Apple or your card manufacturer?"
    The graphics card is "Graphics Intel HD Graphics 4000 512 MB" and isn't compatabile then I am stunned.
    The videos work fine in Safari (I haven't got any other browsers installed) but I much prefer Firefox.
    Any ideas?

    Appears to be a bug w/FF.  You may have to wait until FF provides a fix. 

  • Problems viewing PDFs with form objects

    I have a document I can't view correctly in Acrobat Reader XI. The document includes some form objects like radia buttons and check boxes. When I view the document in Adobe Reader, i only get square boxes. If I use Foxit Reader, I can se the objects normally. I have taken a screendump from the same PDF document, one using Acrobat Reader and the other using Foxit Reader. As you can see, there is a big difference.
    The screendump above is from Adobe Reader XI
    And this creendump is from Foxit Reader.
    Why cant Acrobat display the form objects? It looks like a font problem. I have tried to install asian font pack. Is there any other font packs that could solve this problem?
    Best regards
    René

    How were these forms created?  I have seen (in this forum) similar cases when forms were created in some none-standard ways.
    See if the attached test document shows correctly in Reader XI.

  • Viewing sites with Firefox 3.5.11 Hangs the Linux server

    Repeatedly when I open Lot of websites / Huge webpage via Firefox, my server (Linux) hangs. Just need to Know how to activate / view Firefox Debug logs ?

    That site doesn't send a required intermediate certificate.
    * http://www.networking4all.com/en/support/tools/site+check/

  • Viewing edits with Firefox

    I have recently being making minor edits to our website which
    was created in Dreamweaver, all the changes show up with explorer,
    but none of them appear when I use Firefox. Can anyone help.
    kind regards
    m

    Wow! I don't know about you but when I need help opening a
    "child proof"
    bottle, I ask a child to do it for me. :-)That quote wasn't
    aimed at you or
    anyone else in particular. It's simply a quote at the end of
    my signature.
    When I was running a very busy medical office with no budget
    to speak of, I
    enlisted the help of Work Study Students (interns) from local
    colleges and
    high schools. These kids were eager, computer savvy and I
    couldn't have run
    the office without them.
    In the meantime, I urge you to read the tuts (F1 on the help
    menu) - getting
    started with DW. Also have a gander at www.w3schools.com
    Best of luck with your project,
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    A child of five would understand this. Send someone to fetch
    a child of
    five.
    -- Groucho Marx (1890 - 1977)
    "london-maz" <[email protected]> wrote in
    message
    news:g29o13$c04$[email protected]..
    > Goodness Nancy I am sorry that I have failed to pass
    your 'child of five
    test'
    > . Do you make every one you know sit this or is just
    those people you
    encounter
    > online, safe in the knowledge that you will never meet
    them in person?
    >
    > For the record, I work for a small medical charity, we
    can't afford IT
    > support, don't have these skills inhouse, and therefore
    we struggle with
    this
    > stuff. I'm a nurse, not an IT person, hence the reason I
    registered with
    this
    > forum for assistance. Obviously I'm in the wrong place,
    could anyone
    recomend
    > an idiots (five year old) guide to dreamweaver?
    >
    > kind regards
    >
    > m
    >
    > kind regards
    > m
    >

  • Problems giving KUDOS with Firefox 3.0.3 but no problem with IE 6. :-(

    Somehow my Firefox settings disable the function of giving Kudos :-(    however it works with IE, but ... 
    All coffee (Java) enabled for ni.com, still no chance :-((  
    Is it possible to add a 'Give KUDOS' entry in the article options ?
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

    no ADD-On, plaint FF, no change :-(
    But I remember a security fix that involved a about:config change.... 
    Sorry not able to give a KUDOS ...
    Message Edited by Henrik Volkers on 10-24-2008 03:15 PM
    Greetings from Germany
    Henrik
    LV since v3.1
    “ground” is a convenient fantasy
    '˙˙˙˙uıɐƃɐ lɐıp puɐ °06 ǝuoɥd ɹnoʎ uɹnʇ ǝsɐǝld 'ʎɹɐuıƃɐɯı sı pǝlɐıp ǝʌɐɥ noʎ ɹǝqɯnu ǝɥʇ'

Maybe you are looking for

  • 2nd monitor through mini-dvi to dvi gives wierd tinge around window

    My Samsung monitor, which before using with my new Mac, produced a beautiful picture. Now that I just hooked it up with the mini-dvi to dvi toggle, any window that shows up on the Samsung has this sort of wierd glow,tinge surrounding the whole window

  • Sales order while MRP run

    Hello friends; My requirement is such that when i run mrp in MD02, system should not consider those sales order that are planned in previous MRP run. System should consider new sales orders that are created after MRP run. Waiting for reply. Thanks.

  • Performance tuning on BKPF and BSEG for my code.

    Please provide alternative code for the following code so that processing is fast. my select queries are as follows. It take a lot of time and system gets loaded when it is scheduled. select BUKRS            BELNR            GJAHR            BLART   

  • How to connect Java Application to ORACLE8i over SSL connection

    Hi, I would like to know how to make an existent Java application connect to an ORACLE8i database over a secure SSL connection? can I user ResultSets? Could you please tell me what parameters to set on the database and, especially, what new code must

  • CS5 - Clone and Healing stop working

    Hi, I'm using PS CS5, Windows XP Home, fast CPU, 4GB RAM. I was working on a file today -- D3 NEF opened from LR3 into CS5 -- and created about a dozen layers, some adjustment layers and other empty layers for healing and cloning (using Sample All La