I think this is a CSS thing

On this page: http://www.pictopoetry.co.uk/2010/11/testing-janorama/
I get an element <div class="postmeta"> appearing in another <div class="entry"> when I don't think it should.
<div class="postmeta">
<span class="comments">
<a href="URLdeleted" title="Comment on Testing Janorama">0 <span>comments</span></a></span>
<span class="author">By <a href="" title="janorama" class="author">janorama</a></span>
<span class="categories">Filed in <a href="URLdeleted" title="View all posts in Poem" rel="category tag">Poem</a></span>
<span class="tags"></span>
<span class="timestamp">November 12th, 2010 @ 2:58 am</span>
</div>
<div class="entry">
<p>This is a test post in Poem Category to see if Janorama&#8217;s login is working&#8230;</p>
<p>I think it is.</p>
</div>
It renders as I expect in IE6 & 7 but not IE8 and FF.
Needless to say, it's driving me nuts.
Thanks
Martin

martcol wrote:
osgood,
Thanks for the nudge.
In my fantasy head, I thought that I had tried that but hey-ho, I think you got it.
I've just edited it at work and checked it out on netrenderer and it looks like IE8 no longer mixes things up.  Seeing that is such a releif.
Regards
Martin
Sometimes it's easier for 'fresh' eyes to identify the problem. Good luck with the site.

Similar Messages

  • Pls take note that my IPad 3 used to find my printer HP wireless D110. The only thing that I did was to update to IOS 7.  Do you think this is the reason why my iPad cannot find my wireless printer?

    Pls take note that my IPad 3 used to find my printer HP wireless D110. The only thing that I did was to update to IOS 7.  Do you think this is the reason why my iPad cannot find my wireless printer?

    1. Turn the router, iPad and printer off
    2. Turn on the router and then wait 30 seconds
    3. Turn on printer and then wait 30 seconds
    4. Turn on your iPad and test print.

  • Dreamweaver Newbie making first site.  Trying to figure out this CSS thing...

    This is my first attempt and first site with DW and am having some newbie issues.  The website is www.accuvisionvideo.com.  The site is based on a DW template I picked up from a website.  If you go to the page you will see a menu on the left hand side and the body of the page mostly in the middle.  I am using Studio VII pop menu magic for that menu.  I want to make the thing horizontal, but still keep the side bar area (the photos and such underneath the menu)  However when I make the menu horizontal it removes everything from the left side space and does not give me the option to work in there any more.  How do I place images and text in the left column?  If I am not mistaken its a CSS thing...Also is there anyway to place images anywhere on the page.  Now when I insert an image it seems to have to be either fltlft or fltrt, I can't put multiple images on the same line?   Anyway I know these are noob questions, thank for any help guys.

    GasMaskProductions wrote:
    This is my first attempt and first site with DW and am having some newbie issues.  The website is www.accuvisionvideo.com.  The site is based on a DW template I picked up from a website.  If you go to the page you will see a menu on the left hand side and the body of the page mostly in the middle.  I am using Studio VII pop menu magic for that menu.  I want to make the thing horizontal, but still keep the side bar area (the photos and such underneath the menu)  However when I make the menu horizontal it removes everything from the left side space and does not give me the option to work in there any more.
    The PVII menu will insert into any div on your page.  What you need to do is create a brand new div just below your header div and insert the pvii menu into that div.  This way the new div won't take any styles from any of the current div styles on the page.
    How do I place images and text in the left column?  If I am not mistaken its a CSS thing...Also is there anyway to place images anywhere on the page.  Now when I insert an image it seems to have to be either fltlft or fltrt, I can't put multiple images on the same line?   Anyway I know these are noob questions, thank for any help guys.
    If the images are too wide, they will drop down to the next line (like the images at the bottom of the entry page now.)
    the fltlft and fltrt,are classes, that float and image to the left or to the right, so you can have text surrounding the image.
    Also, for such a simple page you have over 78 errors when you put the page throught he html validator:
    http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.accuvisionvideo.com%2F
    The majority of them will certainly need fixing before creating any further pages using a similar layout.
    Just notice this also:
    .style5
                                        font-family :
                                        "Charlemagne Std";
                                        font-size :
                                        xx-large;
                                        color :
                                        #000000;
    That's not a web-safe font, if someone doesn't have that on their system, they will not see that font, they'll be served the default font
    of their browser set.
    More about Web Safe Fonts:
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    http://twitter.com/nadiap
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    http://csstemplates.com.au/

  • I only show one iCloud on my IPhone that can do a restore. I synced it with my MacBook Pro and I think that may have messed things up. Prior to that I have several backups. Will a "genius" be able to access the info I need?

    I only show one iCloud on my IPhone that can do a restore. I synced it with my MacBook Pro and I think that may have messed things up. Prior to that I have several backups. Will a "genius" be able to access the info I need?

    If things seem to be going haywire with your phone, it seems that it MAY be a software issue.
    Now, that being said, that does not necessarily mean that it is a virus. Software issues do happen sometimes. It is probably just coincidence.
    What you need to do is restore the device using iTunes. This will fix any software issues. After you have done this, you can restore from an iCloud backup.
    iCloud does not back up the actual software, so no, the "virus" would not have gotten into the backups.
    The link below provides steps on restoring your device using iTunes as well as how to restore from an iCloud backup.
    http://support.apple.com/kb/ht1766
    Don't worry! Everything should be back to normal if you follow these steps.

  • I think this is a Bug of String class

    I think this is a Bug of String class, do you agree with me ?
    String s = "1234........"; // when "1234........". length() > 65535, there will be wrong, but
    char[] c = new char[88888];...
    String s = new String(c);even if c.length >65535�Cevery thing is ok.
    so I think is a bug. Somebody give me a answer, thanks

    below is the two Constructors Of String
        public String(String original) {
         int size = original.count;
         char[] originalValue = original.value;
         char[] v;
           if (originalValue.length > size) {
             // The array representing the String is bigger than the new
             // String itself.  Perhaps this constructor is being called
             // in order to trim the baggage, so make a copy of the array.
             v = new char[size];
             System.arraycopy(originalValue, original.offset, v, 0, size);
         } else {
             // The array representing the String is the same
             // size as the String, so no point in making a copy.
             v = originalValue;
         this.offset = 0;
         this.count = size;
         this.value = v;
        }=====================
        public String(char value[]) {
         int size = value.length;
         char[] v = new char[size];
         System.arraycopy(value, 0, v, 0, size);
         this.offset = 0;
         this.count = size;
         this.value = v;
        }I don't know where has the problem.

  • My MAC mini looses the wi-fi connection to a Belkin N wireless router when it goes to sleep or shut down.  I have to re select the network when restarting or waking the computer up.  I think this just started with Lion.  My iPod and iPad  have no trouble.

    My MAC MINI looses the wi-fi connection to a Belkin N wireless router when it goes to sleep or shuts down.  I have to re select the network when re starting or waking up the computer.  I think this just started with LION.  My iPod and iPad have no problem remembering the wireless network.

    Thank you BGreg.  That is what I have been doing, and then it works just fine.  I think it was doing the same thing in the previous version of Lion.  I may be incorrect about that.  I upgraded to 10.7.3 a few weeks ago, and then last week I reloaded the combo update, hoping it would help.  Not so.  Thank you for letting me know it is a common problem.  I have tried permissions in Disk Utilities, and in Macaroni, both at least 4 times, plus numerous restarts.  Nothing Improves.  It still can not find the internet when it wakes up or gets up.

  • I think this ipod is dead.

    First, let me say I have done everything that the support website has told me to do.
    Restarted the ipod, retried with a different USB, restarted the computer, reinstalled updater software.
    However, when I plug the ipod in, nothing happens. I hear that it connects, then disconnects and the updater program says "can't mount ipod." Or "plug in an ipod to update it."
    When not plugged into the computer, we have only an apple icon which after about 30 seconds turns into a folder with an exclamation point. Leading me again to the 5 r's, which I cannot complete. When I plug it in to charge in the electrical outlet, it does not respond.
    Is there something that can be done?!
    Please, for the love of ipod, help!
    mp102

    this isn't a technical answer, but it might help!
    The same thing has happened to me several times now. The first time it did, I spent hours in front of my PC trying to get it to recognise my ipod. A friend suggested that I try giving my ipod a gentle tap on its side (using the side of a table or something). I didn't hold up much hope, but since I was so fed-up, I thought i'd give it a try. To my surprise, my ipod started up straight away.
    I don't think this is a long-term solution, but at least it means that your PC/Mac will recognise the ipod so you can restore it.
    PC   Windows XP  
    PC   Windows XP  

  • Hi my airport router ( ateast i think this is where the problem originates) has been turning off intermittenly for the past week, when it does this NO devices recieve internet connection, mac, pc,iphone, ipad, wireless or hardwired directly to the router

    Hi my airport router ( ateast i think this is where the problem originates) has been turning off intermittenly for the past week, when it does this NO devices recieve internet connection, mac, pc,iphone, ipad, wireless or hardwired directly to the router. However they all show to be connected with their corresponding bars and the ip's are all fine. Earlier today it started flucuating on and off about every 5 min making work impossible and now it seems to be completely broken (im currently on my iphone connected though its own internet) Does anyone know how or ehy this happened and how i can fix this? And to know if this originates from the router or something else entirely. Thank you!

    Hi - some clarifications would help narrow down some symptoms - just what has been turning off? - has the light been solid green but the modem isn't providing wi-fi? - or is the light flashing yellow with no internet? - which can mean several things - does the light go out completey? - so if you can report on exactly what is happenening and when, maybe someone can help you - we also need to know if there any error messages along the way -  we also need the types of devices involved and how they are attached - kind of like a nework map  - the more info that you provide, the more answers you will get.
    Regards,
    Charlie    -

  • Hi there, I have just bought an ipad4 but it will not connect to my internet. I have tried every suggestion going to no avail. My netgear DG834g router is fairly old , do you think this is the problem? I am at a loss now and very frustrated!

    Hi there, I have just bought my first ipad4 and have spent all weekend trying to connect to the internet. I have tried all Apple suggestions to no avail
    . My Netgear DG834g router is a few years old now. Do you think this may be the problem? Do they have compatibility issues after a while? My ipad upgrade is IOs 6. I am at a loss what else to do and needless to say extremely frustrated!
    Thanks.

    First check that your router has its latest firmware.
    Some things to try first:
    1. Turn Off your iPad. Then turn Off (disconnect power cord for 30 seconds or longer) the wireless router & then back On. Now boot your iPad. Hopefully it will see the WiFi.
    2. Go to Settings>Wi-Fi and turn Off. Then while at Settings>Wi-Fi, turn back On and chose a Network.
    3. Change the channel on your wireless router (Auto or Channel 6 is best). Instructions at http://macintoshhowto.com/advanced/how-to-get-a-good-range-on-your-wireless-netw ork.html
    4. Go into your router security settings and change from WEP to WPA with AES.
    5.  Renew IP Address: (especially if you are droping internet connection)
        •    Launch Settings app
        •    Tap on Wi-Fi
        •    Tap on the blue arrow of the Wi-Fi network that you connect to from the list
        •    In the window that opens, tap on the Renew Lease button
    6. Potential Quick Fixes When Your iPad Won’t Connect to Your Wifi Network
    http://ipadinsight.com/ipad-tips-tricks/potential-quick-fixes-when-your-ipad-won t-connect-to-your-wifi-network/
    ~~~~~~~~~~~~~~~~~~~~~~~~~
    Wi-Fi Fix for iOS 6
    https://discussions.apple.com/thread/4823738?tstart=240
    iOS 6 Wifi Problems/Fixes
    How To: Workaround iPad Wi-Fi Issues
    http://www.theipadfan.com/workaround-ipad-wifi-issues/
    Another Fix For iOS 6 WiFi Problems
    http://tabletcrunch.com/2012/10/27/fix-ios-6-wifi-problems-ssid/
    Wifi Doesn't Connect After Waking From Sleep - Sometimes increasing screen brightness prevents the failure to reconnect after waking from sleep. According to Apple, “If brightness is at lowest level, increase it by moving the slider to the right and set auto brightness to off.”
    Fix For iOS 6 WiFi Problems?
    http://tabletcrunch.com/2012/09/27/fix-ios-6-wifi-problems/
    Did iOS 6 Screw Your Wi-Fi? Here’s How to Fix It
    http://gizmodo.com/5944761/does-ios-6-have-a-wi+fi-bug
    How To Fix Wi-Fi Connectivity Issue After Upgrading To iOS 6
    http://www.iphonehacks.com/2012/09/fix-wi-fi-connectivity-issue-after-upgrading- to-ios-6.html
    iOS 6 iPad 3 wi-fi "connection fix" for netgear router
    http://www.youtube.com/watch?v=XsWS4ha-dn0
    Apple's iOS 6 Wi-Fi problems
    http://www.zdnet.com/apples-ios-6-wi-fi-problems-linger-on-7000004799/
    ~~~~~~~~~~~~~~~~~~~~~~~
    How to Boost Your Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Boost-Your-Wi-Fi-Signal.h tm
    Troubleshooting a Weak Wi-Fi Signal
    http://ipad.about.com/od/iPad_Troubleshooting/a/Troubleshooting-A-Weak-Wi-Fi-Sig nal.htm
    How to Fix a Poor Wi-Fi Signal on Your iPad
    http://ipad.about.com/od/iPad_Troubleshooting/a/How-To-Fix-A-Poor-Wi-Fi-Signal-O n-Your-iPad.htm
    iOS Troubleshooting Wi-Fi networks and connections  http://support.apple.com/kb/TS1398
    iPad: Issues connecting to Wi-Fi networks  http://support.apple.com/kb/ts3304
    WiFi Connecting/Troubleshooting http://www.apple.com/support/ipad/wifi/
    How to Fix: My iPad Won't Connect to WiFi
    http://ipad.about.com/od/iPad_Troubleshooting/ss/How-To-Fix-My-Ipad-Wont-Connect -To-Wi-Fi.htm
    iOS: Connecting to the Internet http://support.apple.com/kb/HT1695
    iOS: Recommended settings for Wi-Fi routers and access points  http://support.apple.com/kb/HT4199
    How to Quickly Fix iPad 3 Wi-Fi Reception Problems
    http://osxdaily.com/2012/03/21/fix-new-ipad-3-wi-fi-reception-problems/
    iPad Wi-Fi Problems: Comprehensive List of Fixes
    http://appletoolbox.com/2010/04/ipad-wi-fi-problems-comprehensive-list-of-fixes/
    Connect iPad to Wi-Fi (with troubleshooting info)
    http://thehowto.wikidot.com/wifi-connect-ipad
    Fix iPad Wifi Connection and Signal Issues  http://www.youtube.com/watch?v=uwWtIG5jUxE
    Fix Slow WiFi Issue https://discussions.apple.com/thread/2398063?start=60&tstart=0
    How To Fix iPhone, iPad, iPod Touch Wi-Fi Connectivity Issue http://tinyurl.com/7nvxbmz
    Unable to Connect After iOS Update - saw this solution on another post.
    https://discussions.apple.com/thread/4010130
    Note - When troubleshooting wifi connection problems, don't hold your iPad by hand. There have been a few reports that holding the iPad by hand, seems to attenuate the wifi signal.
    Wi-Fi or Bluetooth settings grayed out or dim
    http://support.apple.com/kb/TS1559
    ~~~~~~~~~~~~~~~
    If any of the above solutions work, please post back what solved your problem. It will help others with the same problem.
    Since you are a new iPad user .....
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download an iPad User Guide to the iPad from the iTunes store.
     Cheers, Tom

  • Do you think this is the bug in 1.5?

    I have this applet and the tooltip for second button does not appear after clicking on first button. It only happens in java 1.5. Do you think this is the bug or I am doing something wrong. this is the code
    /*<HTML>
    <HEAD>
    <TITLE> A Simple Program </TITLE>
    </HEAD>
    <BODY>
    Here is the output of my program:
    <APPLET CODE="HelloWorld1" WIDTH=350 HEIGHT=325>
    </APPLET>
    </BODY>
    </HTML>
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.applet.Applet;
    public class HelloWorld1 extends JApplet implements ActionListener {
    CardLayout c = new CardLayout();
    JPanel lslayout = new JPanel();
         JButton n = new JButton("first");
         JButton n1 = new JButton("second");
    public void init() {
    getContentPane().setLayout(c);
         getContentPane().add("message", n);
         getContentPane().add("message1", n1);
         n.addActionListener(this);
         n.setToolTipText("firs tooltip");
         n1.setToolTipText("second tooltip");
    public void actionPerformed(ActionEvent e) {
    c.show(getContentPane(), "message1");
    }

    I have rewriten it with FlowLayout() and it still does not works. Code is below. One thing i noticed.If I minimize my browser window the tooltip appears. Does anyone knows which method the browser calles after minimizing.
    public class HelloWorld2 extends JApplet implements ActionListener {
    JPanel panel = new JPanel();
         JPanel panel2 = new JPanel();
         JPanel panel3 = new JPanel();
         JButton n = new JButton("first");
         JButton n1 = new JButton("second");
    public void init() {
    panel.setLayout(new FlowLayout());
         panel2.setLayout(new FlowLayout());
         panel.add( n);
         panel2.add(n1);
         getContentPane().setLayout(new FlowLayout());
         getContentPane().add( panel);
         n.addActionListener(this);
         n.setToolTipText("firs tooltip");
         n1.setToolTipText("second tooltip");
    public void actionPerformed(ActionEvent e) {
         getContentPane().removeAll();
         setEnabled(false);
         setEnabled(true);
         getContentPane().add( panel2);
         panel2.revalidate();
         panel2.validate();
         validate();
         repaint();
    }

  • How do I change my user name in syn? I typed in the wrong email address. And I cancelled syn thinking this may work but no luck.

    How do I change my user name in syn? I typed in the wrong email address. And I cancelled syn thinking this may work but no luck.

    You have to clear saved password for this page:
    # Open you login page (where you have to enter username and password).
    # Right click on page and select '''Page Info''' form context menu.
    # On last tab ('''Security''') there is '''View saved passwords''' button, click it and delete all saved passwords for this page.
    # Also clear all related cookies (just in case) there is button for this next to first one.

  • Mid 2010 MacBook pro took a keyboard spill.  It still works but display is sooo dark - like no backlight.  I think this is an LED screen.  Does anyone know the fix for this?

    Hi all...  My mid 2010 MacBook Pro took a keyboard spill.  It still works but the display is very very dark.  A faint image can only be seen at an angle in very bright light.  I think this model has an LED screen.  Can anyone please tell me what the fix for this is?  Thank you sooooo much! 
    < Email Edited By Host >

    Spill Cleaning
    Some liquid has just spilled into your Mac. What should you do?
    Do
    Immediately shut down the computer and unplug the power cord.
    Remove the computer's battery (if you can)
    Disconnect any peripherals (printers, iPods, scanners, cameras, etc.)
    Lay the computer upside down on paper towels to get as much liquid as possible to drip out.
    Note what was spilled on your Mac.
    Bring the computer into an Apple store or AASP as soon as possible.
    Don't
    Don't try to turn it back on. Liquids can help electrical current move about the components of your Mac in destructive ways.
    Don't shake the computer (this will only spread the liquid around).
    Don't use a hair dryer on it (even at a low setting a hair dryer will damage sensitive components).

  • My Airport Time Capsule only works when I turn off and turn on, but I think this may end up with the unit. What can this happening and how to solve?

    Time Capsule Airport
    Hello to all, good day, sorry my english google, but it is the tool I have at the moment. I'm having trouble with my Time Capsule Airport, I made all the settings according to the manual, but there has been a connection problem with my iMac. When I finish my work I turn off the imac and then again when they return to work and care, it can not connect to Time Capsule Airport, making it impossible to remove the files and make back up by Time Machine only works when I turn off and turn on the Airport Time Capsule , but I think this may end up with the unit. What can this happening and how to solve? Thank you.
    Olá a todos, bom dia, desculpe meu inglês google, mas é a ferramenta que tenho no momento. Estou tendo dificuldades com a minha Airport Time Capsule, fiz todas as configurações de acordo com o manual, mas tem existido um problema de conexão com meu iMac. Quando termino meus trabalhos desligo o imac e depois quando retorno pra trabalhar novamente e ligo, ele não se conecta a Airport Time Capsule, impossibilitando retirar os arquivos e fazer o back-up pelo Time Machine, só funciona quando desligo e ligo a Airport Time Capsule, mas acho que isso pode acabar com o aparelho. O que pode esta acontecendo e como resolver? Obrigado.

    This is easier to do with pictures perhaps.. since we do not share a common language and machine translation leaves a lot to be desired.
    In the airport utility bring up your Time Capsule.
    Simply post the screenshots here.
    So here is mine.
    Click on the Edit button and give us the Internet and Wireless and Network tab..
    eg.
    Please also make sure you are set to ipv6 in your wireless or ethernet .. whichever is used.. and do tell which.
    This is wifi in your computer.
    The following are important..
    DO not use long names with spaces and non-alphanumeric names.
    Use short names, no spaces and pure alphanumeric.
    eg TC name. TCgen5
    Wireless name TCwifi
    Use WPA2 Personal security with 10-20 character pure alphanumeric password.
    read apple instructions to help with TM and TC.. they did finally admit it has issues in Mavericks.
    OS X Mavericks: Time Machine problems
    Mount the TC manually in finder.
    AFP://TCgen5.local
    When asked for the password .. that is the disk access password and save it in the keychain.
    Reset Time Machine
    See A4 here. http://pondini.org/TM/Troubleshooting.html

  • Email not opening This is a sudden thing, Email had been working fine for two months then today would not stay open now it will not open at all. after trying to open mail I receive a white screen for a nano second and the app closes

    Email not opening on my iPad2 This is a sudden thing, email had been working fine since purchasing the device then today would not stay open,  now it will not open at all. After trying to open mail I receive a white screen for a nano second and the app closes.

    Have you tried closing the Mail app completely ? From the home screen (i.e. not with Mail 'open' on-screen) double-click the home button to bring up the taskbar, then press and hold any of the apps on the taskbar for a couple of seconds or so until they start shaking, then press the '-' in the top left of the Mail app to close it, and touch any part of the screen above the taskbar so as to stop the shaking and close the taskbar.
    If that doesn't work then you could try a reset : press and hold both the sleep and home buttons for about 10 to 15 seconds (ignore the red slider), after which the Apple logo should appear - you won't lose any content, it's the iPad equivalent of a reboot.

  • I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this.am i right?

    I have an iphone6. I am unsure whether to go from 8.1.3 operating system and switch to  ICloud Drive or not?  Has anyone done this?  Is it awesome?  I need to be able to access my resume from phone. I think this will help me achieve this?  Am i right?  Is there any body out there right now that could help me?  I'm thinking about going from 8.1.3 to I guess yosemite?  Or is that for Mac computers?  I don't understand the language entirely on the help page.   Anyone's straight forward and easy stepped advice would be much appreciated.  I'm so frustrated and I need a job so badly!  Drowning in debt.  Any help appreciated!
    Thanks,
    A

    You're a Windows user, correct? If so, read here:
    http://support.apple.com/kb/DL1455

Maybe you are looking for

  • Javabean is not working after adding webutil.olb in form 10g

    I have created a form in which I am using javabean for running marquee and is working well. I have also attached webutil library in that form and it's working well also. But when I am adding webutil.olb in that form marquee stops to work. I have give

  • Upgrading Oracle 11.1.0.6.0 to 11.2

    I am upgrading Oracle 11g to a new version of 11g in Windows 2003 environment and need some your thoughts. What are the steps involved - just install the software and let it copy on the old copy? Or create in new folder (db_2)? Do need to create a ne

  • Is there a way to call a function with in the initializer of a ArrayCollection?

        Is there a way to call a function with in the initializer of a ArrayCollection? It won't let me do this: var ac:ArrayCollection = new ArrayCollection([                     {childName:'addTrade',index:addTradeIndex },                     {childNam

  • Field ststus in SALES ODER item level oreder data  tab strip

    Hi   in sales order create va01... item level ...order data tab strip... customer purchase order type field  is in optional entery... now want to change this field.. mandatory ...how..is it possible.. ? regards sesidhar

  • PE51 Form

    Have several question: 1. Can PE51 form design convert into SAP SmartForm which later can be used for HRFORMS ? if YES, could someone explain how it can be done without missing any setup being done during PE51 design ? 2. what is significant differen