KM4M how to enable both onboard video and video card radeon 7000

My motherboard is KM4M and I have a radeon 7000(this card has 2 heads: one DVI and one VGA), actually I need 3 monitors at the same time. when I install the card, the onboard video disappeared. how to enable all of them?
windows 2003
athlon xp 2800
Thansks

all onboard vga turn of once a vga cards put in
the 7000 and another pci vga card should work

Similar Messages

  • K9NGM3 how to enable both onboard video and video card NVidia GeForce 6600

    My previous mainboard was K9NGM2 (GeForce 6150 onboard video) and I've used both onboard and external video at same time under Vista.
    Now I've upgraded the mainboard and it's now a K9NGM3-FIH (with nVidia 7050 chip). Onboard graphic works as well if there is no external PCIe video card. When I plug an external one (GeForce 6600), internal one disappears. I both tried BIOS settings; primary card is Onboard / or PCIe. No luck!
    If there is an external card, onboard video doesn't work at boot and under Vista. There is no Video graphic adapter named 7050 : ( When I unplug it then reboot there is the 7050 under device manager...
    What's wrong with them?
    Thanks.

    when you have a stand alone video card, why would you want to use on board video at the same time? stand alone video card is much much better than those one on board.

  • How to enable both WS Security and MTOM

    I am trying to call a web service running in JBoss. The web service is enabled with both ws
    security and MTOM as per the requirement. When i am trying to call the web method from my
    java client, i am getting the below exception
    Exception in thread "main" javax.xml.ws.soap.SOAPFaultException: Endpoint
    {http://wsg.hpos.om.hp.com/}HPOSGatewayPort does not contain operation meta data for:
    {http://www.w3.org/2001/04/xmlenc#}EncryptedData
    at org.jboss.ws.core.jaxws.SOAPFaultHelperJAXWS.getSOAPFaultException
    (SOAPFaultHelperJAXWS.java:72)
    at org.jboss.ws.core.jaxws.binding.SOAP11BindingJAXWS.throwFaultException
    (SOAP11BindingJAXWS.java:109)
    at org.jboss.ws.core.CommonSOAPBinding.unbindResponseMessage
    (CommonSOAPBinding.java:579)
    at org.jboss.ws.core.CommonClient.invoke(CommonClient.java:381)
    at org.jboss.ws.core.jaxws.client.ClientImpl.invoke(ClientImpl.java:300)
    at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:166)
    at org.jboss.ws.core.jaxws.client.ClientProxy.invoke(ClientProxy.java:152)
    at $Proxy17.getName(Unknown Source)
    at wsclient.TestHPOSClient.main(TestHPOSClient.java:106)
    my client code is:
    URL endpoint_new = new URL("http://15.70.176.190:9000/HPOSGateway/HPOSGateway?wsdl");
    QName qname = new QName("http://wsg.hpos.om.hp.com/", "HPOSGatewayService");
    HPOSGateway port = new HPOSGatewayService(endpoint_new,qname).getHPOSGatewayPort();
    BindingProvider bp=(BindingProvider)port;
    SOAPBinding binding = (SOAPBinding)bp.getBinding();
    binding.setMTOMEnabled(true);
    Map<String,Object> map = bp.getRequestContext();
    map.put(BindingProvider.USERNAME_PROPERTY,"administrator");
    map.put(BindingProvider.PASSWORD_PROPERTY,"da1sy");
    URL securityURL = new File("c://jboss-wsse-client.xml").toURL();
    ((StubExt)port).setSecurityConfig(securityURL.toExternalForm());
    ((StubExt)port).setConfigName("Standard WSSecurity Client");
    map.put(BindingProvider.ENDPOINT_ADDRESS_PROPERTY,
    "http://15.70.176.190:9000/HPOSGateway/HPOSGateway");
    System.setProperty("org.jboss.ws.wsse.keyStore", "c:\\wsse.keystore");
    System.setProperty("org.jboss.ws.wsse.trustStore", "c:\\wsse.truststore");
    System.setProperty("org.jboss.ws.wsse.keyStorePassword", "jbossws");
    System.setProperty("org.jboss.ws.wsse.trustStorePassword", "jbossws");
    System.setProperty("org.jboss.ws.wsse.keyStoreType", "jks");
    System.setProperty("org.jboss.ws.wsse.trustStoreType", "jks");
    System.out.println(port.getName("Welcome to this testing part."));
    ,, my jboss.wsse.client.xml is...
    <?xml version="1.0" encoding="UTF-8" ?>
    <jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-
    security/schema/jboss-ws-security_1_0.xsd">
    <config>
    <encrypt type="x509v3" alias="wsse" />
    <requires>
    <encryption />
    </requires>
    </config>
    </jboss-ws-security>
    and my jboss-wsse-server.xml is ...
    <?xml version="1.0" encoding="UTF-8"?>
    <jboss-ws-security xmlns="http://www.jboss.com/ws-security/config"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://www.jboss.com/ws-security/config http://www.jboss.com/ws-
    security/schema/jboss-ws-security_1_0.xsd">
    <key-store-file>WEB-INF/wsse.keystore</key-store-file>
    <key-store-password>jbossws</key-store-password>
    <trust-store-file>WEB-INF/wsse.truststore</trust-store-file>
    <trust-store-password>jbossws</trust-store-password>
    <config>
    <encrypt type="x509v3" alias="wsse"/>
    <requires>
    <encryption/>
    </requires>
    </config>
    </jboss-ws-security>
    i have my web service annotations like below.
    @WebService(name="HPOSGateway",targetNamespace="http://wsg.hpos.om.hp.com/")
    @EndpointConfig(configName = "Standard WSSecurity Endpoint")
    @BindingType(javax.xml.ws.soap.SOAPBinding.SOAP11HTTP_MTOM_BINDING)
    @HandlerChain(name = "HPOSGateway_handlerChain", file = "HPOSGateway_handler.xml")
    public class HPOSGateway{
    Can any one help me what is the problem and where i need to change? Please it is very
    urgent.
    Regards
    Ramchand

    Welcome to the forum!
    Even if it were physically possible, you wouldn't be able to use both Ethernet ports at the same time, because the motherboard doesn't support more than one connection at the time.
    Cheers,
    George
    In daily use: R60F, R500F, T61, T410
    Collecting dust: T60
    Enjoying retirement: A31p, T42p,
    Non-ThinkPads: Panasonic CF-31 & CF-52, HP 8760W
    Starting Thursday, 08/14/2014 I'll be away from the forums until further notice. Please do NOT send private messages since I won't be able to read them. Thank you.

  • Enable both PCI-Express and onboard video on Ultra 20 M2?

    I don't see any bios options to enable the onboard video if I have a video card installed in the PCI-Express 16 slot. Is this possible? I'd like to run the workstation dual-head.

    The board will detect a video card in the pci-e 16x slot and auto-disable the onboard video to avoid conflicts. Apparently , there is no way to manually enable the onboard video while a card is present.

  • TS3280 How can i enable both paired bluetooth and ios keyboard input at the same time?

    How can i enable both paired bluetooth and ios keyboard input at the same time?
    This is needed for the app im working on. Need some user input via keypad as well as scanner input via a paired bluetooth scanner.

    You probably should not be using a keyboard bluetooth profile for a scanner, I am not a developer for apple so do not know the location for you to find out the correct profile you should be using for an input device that is not a keyboard. Sorry,
    I am sure if you navigate the apple developer site you will probaly finmd what you're looking for.
    https://developer.apple.com

  • KYN2G-ISLR--How can I disable onboard video?

     ?( Does anybody know how to disable the onboard video on a K7N2G-ISLR card?  
    I guess I'm an idiot, because I've been looking around in the manual, searching the bios, and searching this forum, and I can't find the information.  
    Help will be greatly appreciated.
     :D
    Thanks very much.

    :( Okay, sad news.  The power supply has been swapped out and it did not make a difference.  Sigh.  As I sit, I have the video card installed and the high pitched squeal is causing me hearing damage.  
    So ... (he says taking a deep breath) ... my train of thought currently goes like this ... it's either the video card or the motherboard.
    Now, when I uninstall the video card from the motherboard, the constant squeal goes away.  However, I also just noticed that even with the video card uninstalled, when the cd spins up--guess what?--squeeeeeeeel.  
    I assume that this tends to incriminate the motherboard, since there is squealing when the video card is not attached?  Someone please shout out if this is a stupid assumption.
    I have emails from tech support at both MSI and Sapphire, both of which are A) rather short, and B) say that I may have a defective product and that I may just have to get replacements.  I suppose I'll just contact Outpost.com and have them send me one of each.  Ack.  
    As always, thanks very much for any input you may have ...
    Ivan
    Oh yeah, high praise goes to the folks at Antec.  I called them yesterday and they had the replacement power supply to me by lunch today.

  • How to enable the S-Video port on a Satelite M30X-154?

    Hey does any one know how to enable the S-Video port on a Satellite SM30X-154 laptop?
    If I press the FN+5 keys the only options I get is LCD and no S-VHS option. My TV is set up for it as I watch DVD's through the cable.
    When I connect the cable to the laptop, nothing happens!!
    HELP

    Hi,
    Sorry, my Tosh A100 has a Geforce 7600, I don't know what your GA is.
    But on mine I have a NVidia Control Panel, where I can configure dualview,
    which normally lets me choose between the builtin LCD and the extern monitor (VGA-Port).
    When a TV is connected and not recognized, I can enforce recognition there.
    On the next start of the panel, the TV is then available too.
    Perhaps I could help you.
    If not, note that with windows settings your TV will not be available.
    Try to go to the User Interface of your graphics adapter...
    Matz

  • How to enable the onboard graphics support ?

    I have touchsmart 520, and wanted to know if there is an option to enble the onboard graphics support instead of using the graphics card ?
    I think the card is faulty, and need to find a way to check if this so.
    Thank you,
    Roye
    This question was solved.
    View Solution.

    What are the symptoms you are seeing?
    What is the complete product name or product number?
    There should be a service tag  somewhere on the all-in-on PC.
    This is going to depend on which motherboard is installed.
    There is an option in some installed motherboard BIOS (Lavaca motherboard) that enables you to select the Intel HD graphics.
    With the angelino2 mobo, you will have to remove the MXM card to see if that enables the onboard video.
    What is the installed OS and CPU?
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How can i allocate more RAM for my onboard video card on a 2011 macbook pro 13 inch running windows 7 via bootcamp

    I noticed that since Macbooks.. macs in general use an EFI instead of BIOS.  . .. Now i need to allocate some more RAM for the onboard video card since its currently running with an estimated 50mb.. I would like to increase this to 512  and cut the 3.95 down to 3.5 MB for the rest of the system ( allowing me to run more graphic intensive games and the such ... ) I know this could slow down the entire system.. ( i am aware of this ) and have gotten a 3rd party application to control and close out uneeded processes during gaming.. I just need more ram for my onboard video card.. Any help?

    You don't allocate more RAM towards your video card, you put more RAM into the machine and hopefully some machines will bump the CPU graphics RAM allocation up a little.
    The problem is you bought a integrated only graphics computer, if you want to 3D game you need a dedicated graphics computer with it's own or dedicated VRAM.
    If your this serious about 3D gaming, your on the wrong platform.
    Get a Windows 7 64bit i7 8GB RAM expandable 3D gaming tower with a good power supply and video card upgrade path, this way every few years you buy and stick in a new video card to play the latest games.
    Mac's are not gaming machines and never will be because they would last too long if we could upgrade them.
    http://www.cbscores.com/index.php?sort=ogl&order=desc

  • How to enable the SharePoint 2010 and 2013 Developer Dashboard for specific WebApplication or Sitecollection?

    How to enable the SharePoint 2010 and 2013 Developer Dashboard for specific Web Application or Site collection(not for all Web Application)?
    Vishal Goyal

    Hi Vishal,
    I don't think there is option for specific site collection or web application,but there is option of enabling developer dashboard on specific master pages and that is one on of the way you could do it.
    look article on below link to enable developer dashboard on specific master pages
    https://msdn.microsoft.com/en-us/library/office/ff512745%28v=office.14%29.aspx?f=255&MSPPError=-2147217396
    Let me know if this helps.
    Thanks
    Bhism 

  • How to get both OTF data and spool at a time

    Hi Experts,
        My requirement is to get both OTF data and spool.
    In 'OPEN_FORM' i tried passing itcpo-TDGETOTF = 'X'. itcpo- TDNEWID = 'X'.
    I was able to get OTF data but spool is not getting generated.
    IF i pass only itcpo- TDNEWID = 'X'. the spool is getting generated but not OTF data.
    when both the fields are set i.e. itcpo-TDGETOTF = 'X'. itcpo- TDNEWID = 'X'.
    the spool is generation is getting supressed.
    Similarly when i tried to get OTF data by passing itcpo-TDGETOTF = 'X'. to 'OPEN_FORM' as i need to convert it to PDF and send it to vendors as email ,
    The print preview in TCODE ME23n was not getting generated for 'MESSAGE' option 'External send'.
    Please suggest me how to get both OTF data and spool at a time.

    Hi Kartik,
    This one is similar to my question to print and email invoice at same time.  I pass itcpo-tdgetotf = 'X' in order to get otfdata and send email with the attachment of otfdata.
    Now I have data in otfdata, but when I call print_otf function, I clear out itcpo-tdgetotf, and passed
    itcpo-tddest = device_type but I still get error message said 'Handler not valid for open spool request'.
    Can you give me a working example that you have otfdata table and print data from that table.  I also post my question on other thread
    submit report and export to memory
    thanks

  • How can i make my video card and sounds work on Windows 7 on my Macbook Pro 2.2? Help please...

    How can i make my video card and sounds work on Windows 7 on my Macbook Pro 2.2? Help please...

    i lost my Mac OSX dvd...

  • Cannot Detect Video card (Radeon 6750m)

    Dear sir,
    I would like to know why my laptop cannot detect my video card (Radeon 6750m). It only shows the built in graphic card intel. I already try to use system restore and reset to original factory mode. It will appear but after updating my drivers and reboot my laptop.  My laptop cannot detect again the video card.
    Please help me resolve this problem,
    for you reference
    http://tinypic.com/r/2it67ex/8 
    This question was solved.
    View Solution.

    You will have to enable the Radeon HD adapter by using the Catalyst Control Center.
    Once you do that the adapter will appear in the Device manager.
     If you are using the Intel HD graphics, only the Intel graphics will be seen in the Device Manager.
    I know that may sound strange, but it is one of the pecularities of having a switchable graphics capable notebook.
    The following URL goes to an overview of switchable graphics. Take a few minutes and read it. It should help make understanding it simpler.
    http://support.hp.com/us-en/product/HP-Pavilion-dv4-Entertainment-Notebook-PC-series/5048648/model/5...
    Do not instal the Intel graphics driver seperately!
    Doing that breaks the switchable graphics feature.
    Only install the HP ADM ATI graphics softpaq. It will install both drivers automatically and let you use the switchable graphics featrure og your notebook.
    ****Please click on Accept As Solution if a suggestion solves your problem. It helps others facing the same problem to find a solution easily****
    2015 Microsoft MVP - Windows Experience Consumer

  • How to enable execute-disable bit and other hidden settings on Lenovo 3000 N200 model 0769!

    2008-11-16: I have posted some more settings, scroll down to message 19 in this thread to read them.
    Hi,
    Here's some good news for anyone with a Lenovo 3000 N200 model 0769, who is disappointed and frustrated with the lack of options in the BIOS setup menu. (I had a moan about that in this thread.)
    This is a long post but I hope you'll find it worthwhile. Here are the features/settings which I will explain how to enable:
    The BIOS disables the execute-disable bit function of the CPU, with no way to turn it on. You can enable it.
    You can set VGA and VESA graphics modes to not be stretched to fill the whole screen (sharper graphics with no distorted aspect ratio).
    Speed up the POST display by skipping the memory test
    Disable various features (if you don't use them, that might save some power): the HD audio controller, WLAN card, on-board LAN, shadowing of the video BIOS
    Enable beep before booting the OS
    Enable key click sound (only in DOS, not Windows or Linux)
    I'm still working on this, and hope to figure out more hidden settings soon, e.g. to disable the DVD drive and trackpad, and to change the video output from NTSC to PAL.
    The information below applies to the Lenovo 3000 N200 model 0769 with BIOS version 3.03. My N200 has Nvidia graphics. For some background on the general principles/research required to figure this out, please see this thread at Wimsbios.com.
    To change the settings, you need to create a bootable DOS floppy disk or USB drive. Download SYMCMOS.EXE (Google for it) and put it on the bootable disk. Boot the disk and run SYMCMOS to back up your current CMOS settings: SYMCMOS -Lsettings.txt
    Next load the settings.txt into a text editor. It will begin like this:
    ( SYMBOLIC CMOS EDITOR - Version 643710-035 )
    CRC = 3EDD
    (0000) [0001]
    (0003) [0001]
    Your CRC value may differ. Each line after the CRC contains a token number, followed by the value of that token. You can start with the settings.txt you created and edit any tokens you want to change, or delete all token lines and just include the tokens you want to change. Then use SYMCMOS.EXE to apply the new file: SYMCMOS -V2 -Uupdate.txt
    After running that command you can reset, and hopefully notice the new settings in action. (For certain settings, such as re-enabling the execute-disable bit, you need to turn the computer off then on again.)
    Here are some specific tokens you can change:
    Token Default New Description
    (0000) [0001] [0000] Disable the HD audio controller
    (0042) [0001] [0000] Disable LCD panel graphics scaling/stretching
    (004B) [0000] [0001] Beep before booting the OS
    (0267) [0001] [0000] Enable support for the CPU execute-disable bit
    (028E) [0000] [0001] Enable key click (only works in DOS and BIOS setup)
    (02A3) [0001] Set to 0 for slower memory test, or 2 (or 3?) to skip
    test for faster booting, especially with 4GB RAM
    (046E) [0001] [0000] Disable video BIOS shadowing. (Best to leave enabled.)
    (0471) [0000] [0001] Enable 1MB memory hole at 15MB. (Best leave disabled.)
    (0486) [0001] [0000] Disable PCI Express ports 1-6. This takes precedence
    over the individual port bits below, and disables the
    LAN, WLAN and (probably) ExpressCard port.
    (0489) [0001] [0000] Disable PCI Express port 2 (WLAN card)
    (048C) [0001] [0000] Disable PCI Express port 3 (maybe ExpressCard?)
    (048F) [0001] [0000] Disable PCI Express port 4 (LAN)
    For example, if you want to disable LCD panel scaling and enable the execute-disable bit, you would create a text file like this:
    CRC = 3EDD
    (0042) [0000]
    (0267) [0001]
    Some final points:
    Loading the default settings in the BIOS setup menu will overwrite any changes you make using SYMCMOS.EXE. So keep that bootable disk around in case you need to re-apply your settings in future.
    The token numbers above are specific to version 3.03 of the Lenovo 3000 N200 model 0769 BIOS. They might be different for earlier BIOS versions, and will be different for other models of computer.
    Once you have created a bootable floppy disk with a text file containing your updated settings, you could create a bootable CD with the floppy's data on. Just boot that CD to restore your settings in future.
    Before experimenting with randomly changing token values to discover other hidden settings, make sure you know how to reset your computer's CMOS memory! Changing some settings results in your computer becoming unable to boot, so you can't use the BIOS setup screen to reset. I wrote about how to reset the N200 model 0769 CMOS in this thread.
    If you discover any other settings, please let me know.
    Any changes made are at your own risk; if you "brick" your laptop don't blame me!
    Message Edited by Donuts on 10-15-2008 09:45 AM
    Message Edited by Donuts on 11-16-2008 11:35 PM

    Hi Donuts !
    My computer is a 3000 N200 0769BAG. It has a Dual Core Pentium and the information I get about the BIOS using lshw are :
    ========================================================================================
    description: BIOS                                                                                                                            
              vendor: LENOVO                                                                                                                              
              physical id: 0                                                                                                                              
              version: 68ET35WW (04/16/2008)                                                                                                              
              size: 106KiB                                                                                                                                
              capacity: 960KiB                                                                                                                            
              capabilities: pci pnp apm upgrade shadowing escd cdboot bootselect edd int13floppy360 int13floppy1200 int13floppy720 int13floppy2880 int5printscreen int9keyboard int14serial int17printer int10video acpi usb ls120boot biosbootspecification
    ====================================================================================
    I've nothing telling me it is a 3.03 BIOS version but only got the BIOS file name (68ET35WW);
    Is it the same BIOS you used and if not how could I find the list of (token, default value,new seting) for that particular BIOS ?
    Thanks a lot in advance for your help !
    Regards

  • How to enable flash during video capture nokia n90...

    Hi-
    How can I turn on or enable flash during video capturing on Nokia n900? Is there a way because I tried to take videos at night and they were unvisible or dim.  I know we can use flash while taking pictures!!
    Thanks

    if your camera settings is on automatic then the flash will be on while recording. that is how mine is set and it stays on.
    everything happens for a reason
    check out my blog @ http://mycellife.blogspot.com/

Maybe you are looking for