TV-out problem Geforce 4 MX440 in Windows XP

I have a serious problem with Windows XP Professional and Geforce 4 MX440SE-T. I use an Athlon XP 1800+ Palomino, MB ASUS A7S333.
Windows 2000 and XP
In window "video properties", occur an error in the MSI tabs. The even occur on Windows 2000.
In the "configuration" tab, I couldn't to work with my TV.
Windows 98
I couldn't to work with my TV as the copy of monitor using the tv-out (c). I only could to work with the TV as horizontal extension.

what driver version are you using ?

Similar Messages

  • I had a problem installing icloud on windows 8.1. What should I do? At the end of the installation process there is a error message.

    I had a problem installing icloud on windows 8.1. At the end of the installation process there is a error message.What should I do? 

    I'm guessing that you have checked and complied with the system requirements?
    System Requirements
    Microsoft Windows 7 or 8
    Microsoft Outlook 2007 or later or an up-to-date browser (for Mail, Contacts, Calendars)
    Internet Explorer 9 or later, Firefox 22 or later, or Google Chrome 28 or later (for Bookmarks)
    Broadband Internet access
    Note: If you are upgrading from iCloud Control Panel 1.1 or earlier, you will need to sign out of iCloud Control Panel and uninstall it before downloading iCloud Control Panel 3.1

  • Is there a problem with JFrame and window listeners?

    As the subject implies, i'm having a problem with my JFrame window and the window listeners. I believe i have implemented it properly (i copied it from another class that works). Anyway, none of the events are caught and i'm not sure why. Here's the code
    package gcas.gui.plan;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Container;
    import java.awt.event.WindowEvent;
    import java.awt.event.WindowListener;
    import java.util.Hashtable;
    import javax.swing.JDialog;
    import javax.swing.JFrame;
    import gcas.plandata.TaskData;
    import gcas.util.GCASProperties;
    import gcas.gui.planlist.MainPanel;
    * MainFrame extends JPanel and is the main class for the plan details window
    public class MainFrame extends JFrame implements WindowListener
         * the container for this window
        private Container contentPane;
         * a string value containing the name of the plan being viewed
        private String labelText;
         * a string value containing the name of the window (GCAS - plan list)
        private static String title;
         * an instance of JDialog class
        private static MainFrame dialog;
         * hashTable that correlates the task name to its id as found in the
         * plan
        private Hashtable taskNameToId = new Hashtable();
         * an instance of taskSetPane.  This is the current instance of taskSetPane
         * being viewed
        private PlanTaskSet currentPane;
         * instance of TaskData class.  Each instance will hold information on
         * an individual task
        private TaskData taskData;
         * hashTable containing instances of the taskSetPane class
        private Hashtable taskSetPanes = new Hashtable();
         * an instance of the OuterPanel class
        OuterPanel mainPanel;
         * an instance of the ButtonPanel class
        ButtonPanel buttonsPanel;
         * an instance of the LeftPanel class
        LeftPanel leftPanel;
         * an instance of the the GCASProperties class
        GCASProperties gcasProps;
        private static MainFrame thisPlanMain = null;
        private MainPanel planListMain;
         * constructor for MainFrame
         * @param frame the parent frame calling this class
         * @param locationComp the location of the component that initiated the opening of the dialog
         * @param labelText the name of the plan that is being viewed
         * @param title title of window
        private MainFrame(JFrame frame, Component locationComp, String labelText,
                String title)
            super(title);
            gcasProps = GCASProperties.getInstance();
            mainPanel = new OuterPanel(labelText, currentPane,
                    taskNameToId, taskSetPanes);
            leftPanel = mainPanel.getLeftPanel();
            System.out.println("LABLE: " + labelText);
            leftPanel.setMainPanelContents();
            buttonsPanel = new ButtonPanel(labelText, taskSetPanes,
                    taskNameToId, leftPanel);
            contentPane = getContentPane();
            contentPane.add(mainPanel, BorderLayout.CENTER);
            contentPane.add(buttonsPanel, BorderLayout.PAGE_END);
            this.addWindowListener(this);
            this.labelText = labelText;
            pack();
            setLocationRelativeTo(locationComp);
            this.setVisible(true);
            planListMain = MainPanel.getInstance();
            planListMain.setVisible(false);
        public static MainFrame getInstance(JFrame frame, Component locationComp, String labelText,
                String title)
            if (thisPlanMain == null)
                thisPlanMain = new MainFrame(frame, locationComp, labelText,
                        title);
            return thisPlanMain;
        public static MainFrame getDialogObject()
        {   //from the location this is called (ButtonPanel), this will never
            //be null
            return thisPlanMain;
        public static void setABMDDialogNull()
            thisPlanMain = null;
         * returns an instance of MainFrame
         * @return MainFrame instance
        public static MainFrame getDialog()
            return dialog;
         * setter for MainFrame
         * @param aDialog a MainFrame instance
        public static void setDialog(MainFrame aDialog)
            dialog = aDialog;
         * window opened event
         * @param windowEvent the window event passed to this method
        public void windowOpened(WindowEvent windowEvent)
         * The window event when a window is closing
         * @param windowEvent the window event passed to this method
        public void windowClosing(WindowEvent windowEvent)
            gcasProps.storeProperties("PlanList");
            MainPanel abmd = MainPanel.getInstance();
    //        planMain = this.getDialogObject();
    //        if(planMain != null)
    //            planMain.setVisible(false);
    //            abmd.setVisible(true);
    //            planMain.setABMDDialogNull();
            if(this.getDialogObject()!= null)
                abmd.setVisible(true);
                setVisible(false);
                setABMDDialogNull(); 
         * Invoked when the Window is set to be the active Window
         * @param windowEvent the window event passed to this method
        public void windowActivated(WindowEvent windowEvent)
         * Invoked when a window has been closed as the result of calling dispose on the window
         * @param windowEvent the window event passed to this method
        public void windowClosed(WindowEvent windowEvent)
         * Invoked when a Window is no longer the active Window
         * @param windowEvent the window event passed to this method
        public void windowDeactivated(WindowEvent windowEvent)
            System.out.println("HI");
         * Invoked when a window is changed from a minimized to a normal state
         * @param windowEvent the window event passed to this method
        public  void windowDeiconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
           System.out.println("Invoked when a window is changed from a minimized to a normal state.");
         * Invoked when a window is changed from a normal to a minimized state
         * @param windowEvent the window event passed to this method
        public  void windowIconified(WindowEvent windowEvent)
            //we could have code here that changed the way alerts are done
    //        System.out.println("Invoked when a window is changed from a normal to a minimized state.");
    }anyone know whats wrong?

    It turned out that my ide was running the old jar and not updating it, so no matter what code i added, it wasn't being seen. Everything should be fine now.

  • Problem with shares on Windows 2003R2 server from a Windows 8.1 PC

    I'm having problem with shares on Windows 2003R2 server from a Windows 8.1 PC.  It times out when I try to copy a file from my PC to the server and I get an error message saying "There is a problem accessing network drive W:\. Make sure you are
    connected to the network and try again."
    I have no problem copying files from the server to the PC.
    Any ideas?

    Hi,
    How about your problem now? Have you test other machine also installed Windows 8.1? Did they have this problem?
    To diagnose this problem, firstly, please check Windows 2003R2 firewall settings, also can disable firewall temporarilly for test.
    Secondly, try to use Network Monitor to capture network communication package for test.
    Network Monitor:
    http://www.microsoft.com/en-us/download/details.aspx?id=4865
    Roger Lu
    TechNet Community Support

  • Check out problem with InCopy / Alfresco

    I use the following components:
    InCopy CS5 7.0.3
    Drive 2.1.0.204
    Alfresco 3.4.0 (d 3370)
    Before I can start editing the text in InCopy, a dialog comes up and I have to check out the content
    (Don't know the exact words of the dialog, because i only have a german version).
    But when I try to check out the content, nothing happens.
    The following error message appears in the log file 'CS5ServiceManager_java.log':
    2011/03/10 11:56:24,326 [ConnectionHandler-kernel] ERROR GetAssetsHandler - asset not found: /.Trashes
    2011/03/10 11:56:24,415 [ConnectionHandler-kernel] ERROR GetAssetsHandler - asset not found: /Testbereich/Ausgabe 03-09/om_dok Aufgaben/Text editieren.injb
    2011/03/10 11:56:49,669 [ConnectionHandler-kernel] ERROR GetAssetsHandler - asset not found: /.Trashes
    2011/03/10 11:56:49,731 [ConnectionHandler-kernel] ERROR GetAssetsHandler - asset not found: /Testbereich/Ausgabe 03-09/om_dok Aufgaben/Text editieren.injb
    2011/03/10 11:56:53,524 [JobHandler-3] ERROR CheckOut - Caught exception
    com.adobe.drive.data.model.DriveException: The assets are opened by point products.
    at com.adobe.drive.internal.data.manager.DataManager.checkOperationIsAllowed(DataManager.jav a:7941)
    at com.adobe.drive.internal.data.manager.DataManager.checkOperationIsAllowed(DataManager.jav a:7930)
    at com.adobe.drive.internal.data.manager.DataManager.checkOut(DataManager.java:3763)
    at com.adobe.drive.internal.biz.versioncue.service.call.CheckOut.executeItem(CheckOut.java:9 3)
    at com.adobe.drive.internal.biz.versioncue.service.call.CheckOut.executeItem(CheckOut.java:4 7)
    at com.adobe.drive.internal.biz.versioncue.service.call.VersionCueCall$1.run(VersionCueCall. java:125)
    at com.adobe.drive.internal.biz.versioncue.service.call.VersionCueCall$1.run(VersionCueCall. java:119)
    at com.adobe.drive.data.internal.persistence.PersistenceRunner.run(PersistenceRunner.java:11 9)
    at com.adobe.drive.internal.biz.versioncue.service.call.VersionCueCall.execute(VersionCueCal l.java:134)
    at com.adobe.drive.internal.biz.versioncue.service.VersionCueService.checkOut(VersionCueServ ice.java:347)
    at com.adobe.drive.ncomm.versioncue.CheckOut.handle(CheckOut.java:57)
    at com.adobe.drive.ncomm.versioncue.VersionCueRequestHandler$1.run(VersionCueRequestHandler. java:185)
    at com.adobe.drive.core.internal.jobs.JobHandler$JobWrapper.run(JobHandler.java:270)
    at com.adobe.drive.core.internal.jobs.JobHandler$JobWrapper.run(JobHandler.java:286)
    at java.util.concurrent.ThreadPoolExecutor$Worker.runTask(ThreadPoolExecutor.java:886)
    at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:908)
    at java.lang.Thread.run(Thread.java:680) 
    So my questions are
    - what is a point product?
    - what causes this error?

    Hi, Liu,
    I have the same problem, under following conditions:
    Windows XP SP 3 (german) and - another place - Windows 7 (32 bit, german)
    Adobe Drive 2.1.0.204, as a client from a VersionCueServer CS4, version 4.0.1.090
    Adobe Bridge, opening an InCopy-File (*.icml) form here
    Adobe InCopy CS4 (version 6.0.6), checkout from here does not work: 
    InCopy-File is ever write-protected
    Is there any software-patch or workaround available, until Adobe Drive 2.2 is on the market?
    Thanks in advance for your answer, Yours sincerly Thomas Diedrich

  • My problem is on my Windows PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help?

    I use both a Mac and a PC.  My problem is on my Windows 7 PC.  I am getting the error message, "The procedure entry point sqlite_3_wal_checkpoint could not be located in the dynamic link library SQLite3.dll.  I am told this is related to iTunes.  Any help out there?  Thanks

    With Windows Explorer, navigate to your C:\Program Files\Common Files\Apple\Apple Application Support folder.
    Copy the SQLite3.dll that you should find there, navigate to the nearby Mobile Device Support folder, and Paste it in there also.
    Restart the programme all should be well
    In case that your OS is (64 bit)
    1. Open windows explorer, go to location C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    2. Copy file "SQLite3.dll"
    3. Now paste it in the folder  C:\Program Files (x86)\Common Files\Apple\Mobile Device Support
    4. Restart the programme, it should not display that message, it should be clear.
    Good Luck

  • I've deleted Adobe Reader 11 and rebooted and reinstalled Adobe Reader 11 and I still get the error message that 'Adobe Reader is blocked because it is out of date'. Using Windows XP with the latest updates (SP3).

    I've deleted Adobe Reader 11 and rebooted and reinstalled Adobe Reader 11 and I still get the error message that 'Adobe Reader is blocked because it is out of date'. Using Windows XP with the latest updates (SP3).

    Screenshots attached to email replies will not make it back to the forum; you need to login to the forum and post it in your topic using the camera icon in the editor.
    Google Chrome is a problem:
    if you use Chrome's own PDF viewer, the results are unpredictable.
    if you use the Adobe Reader plugin with Chrome, it may reject (block) it if it is not the latest version.  Reader 11.0.08 is the latest version for Windows XP, but Chrome may insist on the current version 11.0.10.
    My suggestion; use a different browser!

  • Problem with the Finder window in Chrome

    Hello,
    I have a problem with my finder window in Chrome.
    Since the window isn't a separate window anymore, but stuck to the top of the webpage, my finder window is too big. I can't read the "Cancel" or "Send" (I have no idea what's supposed to be there in English but I assume it's something like "send" and "cancel") buttons. I have provided some images of the problem, even if I make the Chrome window as small as possible, the finder window still is too big for my screen. I can resize the finder window from lest to right, but not up or down, which is extremely irritating for me.
    If anyone can help me how I can solve this problem.
    Thanks!

    I found the solution on another thread...Here it is.
    "I was having the same problem.  I found a way to make it smaller.  First, I opened chrome and clicked the green button on the window to make chrome go into full screen.  Then I tried to save a file to make the finder window open in chrome. When it opened in full screen I could see the bottom of the window so I resized it to make it a little smaller.  Once I did this it remembered the size so now I can access the bottom buttons when I take it out of full screen mode. Hope this helps."
    Worked like a charm!

  • IPod Nano Grey Out Problem in iTunes??

    I purchased my iPod Shuffle last year. I installed iTunes in my Window PC and purchased music via the music store.
    A month ago, I purchased a iPod Nano, I added the iPod Nano to iTunes. iTunes will update my iPod Nano automatically when I connect it to my computer.
    However, all the songs in my iPod Nano menu in iTunes appear 'grey out'. I can't do anything like delete, play them etc??
    Can anybody advise me how to solve this 'grey out' problem?
    Thanks,
    Jacky

    Welcome to Apple Discussions!
    If you update automatically, the songs are grayed out, because the songs should be on your computer.
    To delete songs, you can uncheck the songs/podcasts you don't want on your iPod in iTunes. Then connect your iPod to the computer. When it appears in iTunes, go to edit-->preferences. Click the iPod tab, then the music tab under that. Check "Only Update Checked Songs" and click OK. Only checked songs will be put onto the iPod.
    See this for more ideas/tips...
    Deleting songs or playlists from your iPod
    To be able to play songs on the iPod through the computer, delete songs only on the iPod (without having to check and uncheck), and to have songs not grayed out, you would have to manually update. Songs would no longer automatically update onto the iPod. You would have to drag new songs that you want on your iPod onto it (through iTunes)...
    Managing Your Songs Manually
    btabz

  • Weird TV OUT problem

    Hi everybody.
    I was wondering if anybody could help me out with a TV OUT problem I am having.  I have a FX5200 video card and when I hook the VCR to my computer and boot it up, it does show on the television until the desktop appears and then all I get is a blue screen.  (I have to run it through the VCR because my television doesn't have the ports for the cord/s)  The VCR is hooked up correctly to the television, and I am on the A/V channel, but for some reason my TV stops showing what is on the computer after Windows boots up.  I have Windows 98.
    Any ideas??
    Thanks so much!

    You know what, I honestly have no idea if it's set to clone or not.   I wasn't around when we installed the drivers and set everything up for the card, so that's definitely something to look into.  Is that just in the video card properties?

  • Lenovo Y570 problems after updating to Windows 10 from Windows 7

    Hi everyone, I updated my operating system to Window 10 from Windows 7 four days ago and I am having a ton of problems. I lost a lot of my Lenovo interface options as well...  One of the worst and most annoying problems is that randomly, for half a second, the computer stops and thinks which freezes up my typing. If I am writing something, when it wants to freeze it prevents me from typing that letter. It basically overrides my keyboard well it does that freezing for half a second. Also, when I have a drop down menu it will close when this happens or when I right click, the menu will disappear when this "glitch" happens. One of the biggest clues I found is under the task manager. In the Processes tab, when this "glitch" happens "Windows Problem Reporting" pops up for a half second. I am not sure if that is causing this problem or if something goes wrong and "Windows Problem Reporting" pops up because of something else? Is there a way to check and see what these "Windows Problem Reporting" are? My other problems are that my fan control does not work anymore. I had the option to control the speed and the sound of my fan before updating to Windows 10. Would Lenovo or Windows 10 ever going to sent a drive to fix this problem? Also, I can not control my GPU switch anymore. Before the update I could change my GPU from Intel HD card to Geforce 555M. Now I have no idea what GPU I am using and how to go back and forth. Is there a fix for this? Since all these problems occurred with the Windows 10 update, would it be better for me to go back to Windows 7 and wait to see if Lenovo and Windows ever going to create drives for Lenovo Y570? Is it advisable to switch back W7 and switch back to W10 later?

    spdfolife wrote:
    Hi everyone, I updated my operating system to Window 10 from Windows 7 four days ago and I am having a ton of problems. I lost a lot of my Lenovo interface options as well...  One of the worst and most annoying problems is that randomly, for half a second, the computer stops and thinks which freezes up my typing. If I am writing something, when it wants to freeze it prevents me from typing that letter. It basically overrides my keyboard well it does that freezing for half a second. Also, when I have a drop down menu it will close when this happens or when I right click, the menu will disappear when this "glitch" happens. One of the biggest clues I found is under the task manager. In the Processes tab, when this "glitch" happens "Windows Problem Reporting" pops up for a half second. I am not sure if that is causing this problem or if something goes wrong and "Windows Problem Reporting" pops up because of something else? Is there a way to check and see what these "Windows Problem Reporting" are? My other problems are that my fan control does not work anymore. I had the option to control the speed and the sound of my fan before updating to Windows 10. Would Lenovo or Windows 10 ever going to sent a drive to fix this problem? Also, I can not control my GPU switch anymore. Before the update I could change my GPU from Intel HD card to Geforce 555M. Now I have no idea what GPU I am using and how to go back and forth. Is there a fix for this? Since all these problems occurred with the Windows 10 update, would it be better for me to go back to Windows 7 and wait to see if Lenovo and Windows ever going to create drives for Lenovo Y570? Is it advisable to switch back W7 and switch back to W10 later?There might be a need to reinstall drivers. Try installing them using compatibility troubleshooter.

  • MS6167 + Geforce MX440 - flickering and jumping screen

    I recently bought an Inno3D Geforce MX440 64MB DDR for my MS-6167 motherboard. The screen was flickering and somtimes jumped too. I thought the Gfx board was bad and returned it for a Palit Daytona Geforce MX440 64MB DDR. The same behaviour turned up and I understood this had nothing to do with the graphic card. When I looked into the Nvidia configuration it told me 'Bus type: APG 1X'. I knew that my motherboard was 'AGP 2X' so I wondered why this was happening. Both those cards are AGP 2X/4X.
    I suspect that the AGP speed is causing this. Why is the screen otherwise behaving like this? What possible cause could it be?
    Sometimes the mouse pointer gets garbled. I'm running Windows XP Pro Swe.

    I changed driver for the AMD-751 from 'AMD-751 Processor to AGP Controller (AMD)' to 'PCI standard PCI-to-PCI bridge'. Then it works better.
    Maybe the performance isn\'t as good as it should be, but the flickering and jumping screen is gone.

  • ITunes causing problems when downloaded to windows 8

    I downloaded iTunes to my new Toshiba which came with Windows 8.  It recognized my iPad no problem, however, the next day my computer kept turning itself off and then restarting every 3 or 4 minutes.  The Toshiba tech help said it was because Windows has made Windows 8 incompatible with iTunes.  We did a factory reset on my computer but I would really like to have iTunes on it.  I haven't heard anything else like this, has anyone here?

    Sorry I found this so late, its March 5th 2013 and yes the issue is the same. Basically iTunes and Windows 8 are incompatable.
    I had to so the same and spent the next 2 days re-installing everything. I made this same mistake twice, thinking" oh no thats not possible, Apple would never relase that" ..well they did and it needs to be fixed. I will email them and bring this to their attention.
    Basically after I installed iTunes and my DVD drives ( I have 3) disappeared and my registry was corrupted.
    Fortunately I have  True Image and had a back up image.
    So folks, out there if you have Windows 8 Pro and an Intel chipset, what has been your experience after installing the latest iTunes??
    For my part, I have dual boot with Windows 7 on it, , the latest iTunes works fine.

  • Sound problem with java and windows (volume)

    Hello,
    Just wondering if there is any way that java can manipulate the sound volume
    in windows...I've searched through the forums here and ive noticed that this question has come up a number of times, but nothing definitive has really been posted.
    My program is a 'server' side portion of a mobile phone app ive written, that im trying to use as a remote to turn up the volume, skip tracks, etc. on my pc via bluetooth. Basically what im doing is sending a string from the mobile phone app to the pc telling it to increment the volume/decrement the volume by a certain amount. Can java do this natively or am i going to need to use a C++ library through JNI (which i have never done before)
    Any help appreciated!
    Thanks,
    Craig

    Victor,
    I've tried your suggestions and found that the first one only alters the volume of the midi file that is being played through java. I want to be able to alter the volume of the sound that I already have coming out of my speakers, through windows master volume control.
    Your second suggestion I also tried but to no luck...i always get the following exception message:
    "Failed trying to find LINE_IN VOLUME control: exception = java.lang.IllegalArgumentException: Line unsupported: LINE_IN source port"This exception occurs no matter what I change LINE_IN to in this segment of code (I want to control sound output so i assume it should be either SPEAKER or LINE_OUT):
    lineOut = (Port)mixer.getLine(Port.Info.LINE_IN);Any other suggestions?
    I noticed on the j2se sound guide site, they mention a way to get a list of supported mixers and/or lines, but im not exactly sure how to go about doing that (maybe it will be helpful?)
    Thanks for your time,
    Craig

  • Problem with iTunes in Windows XP

    I am having a problem loading iTunes in Windows XP service pack 2. Every time I click on it, it seems to load for a little while, and then a window pops up saying "iTunes has encountered a problem and needs to close". When I clicked on the details tab, it showed me a bunch of stuff I couldn't understand. Here's what it said:
    AppName: itunes.exe
    AppVer:7.6.2.9
    ModName: unknown
    ModVer: 0.0.0.0
    Offset: 00000000
    How do I get iTunes to work right?

    The first question, Have you installed any of the following:
    ACE & K-Lite mega codecs package, QT alternative, Storm codec, WinAVI video converter
    These are know to cause troubel with Quicktime and must be uninstalled before proceding.
    It is also a good idea to go to your Control Panel and try to launch QUicktime preferences - you need to be in classic view to see it.
    Post any error message in full. This error message can give a clue to the presence of problem codecs if you are not sure.
    Next do a removal of Quicktime with installer cleanup, followed by an install of the latest version.
    I will give a method for complete removal, cleanup and reinstall of iTunes, Quicktime and related components, but in your case it may be possible to just do the QUicktime part. Don't forget to delete the recommended files from your system32 folder.
    == uninstall with cleanup ==
    Download a fresh copy of iTunes and the stand alone version of Quicktime
    http://www.apple.com/quicktime/download/win.html
    http://www.apple.com/itunes/download/
    Download and install Microsoft Installer cleanup utility, there are instructions on the page as well as the download. Note that what you download is the installer not the program – you have to run it to install the program
    http://support.microsoft.com/kb/290301/
    Now use the following method to remove iTunes and its components:
    XP
    http://support.apple.com/kb/HT1925
    Vista
    http://support.apple.com/kb/HT1923
    If you hit a problem with one of the uninstalls don't worry, carry on with the deleting of files and folders as directed in the method.
    Restart your PC.
    Run the Microsoft Installer Cleanup Utility. (Start > All Programs > Windows Install Clean Up)
    Remove any references you find to the programs you removed - strictly speaking you only need to worry about those programs where the uninstall failed.
    restart your PC
    Install the stand alone Quicktime and check that it works.
    If it does, install iTunes.

Maybe you are looking for

  • BPM wait step : RWB"To Be Delivered status": SXMB_MONI"Message being sent"

    Hi All, I have a BPM interface running fine since 1 year. In this BPM I have wait step for 5 minutes. But yesterday message  is stopped on wait and not proceeding ahead. I checked XML is good as per mapping. and in runtime wirk bench message is still

  • Nested Composite Component Doesn't work for table column

    I have reported this issue as defect 1541 but I'm hoping someone my have a suggestion on a work around for this. Here is the issue I am attempting to use composites to represent a table column. I have tried this with both IceFaces and the standard im

  • How do you make a navigation link hover?

    hi i built a sliding panel and placed hotspots on the navigation (next and previous) links which are in the form of arrows.And i am unable to make the next and previous links hover. please help

  • I can't add movies to my iTunes library !!

    I transfered the movie from one computer to the other with a USB. When I draged the file to iTunes library it was accepted in computer 2 (Which is a laptop) However when I tried this on my Pc nothing happened. By testing on the laptop i'm sure the fo

  • JSF 2.0 ViewState

    I could not find any running example of JSF 2 Viewscope with reference implementation or thru RichFaces even. Have tried it on Netbeans/Glassfish as well but still Constructor is getting called again and again on each request. Isn't view scope yet re