You can play with two players on the same conlsoe on modern war

XXXXXXXXXXXXXX

Hi Capcurt,

Welcome to the Microsoft Answers site!

You try to play the game live with 2 players on the same console?

Unfortunately, you can not go online with two people on the same console. Modern Warfare 2 allows a user to sign in when you play in multiplayer.

Modern Warfare 2 is a completely new game mode that supports 2-player cooperative play in single line of the solo campaign in history. To do this, you will need two machines.

For better support, you can contact Xbox Forums.

http://www.xbox360forum.com/Forum/

Hope this information is useful.

Amrita M

Microsoft Answers Support Engineer
Visit our Microsoft answers feedback Forum and let us know what you think.

Tags: Windows

Similar Questions

  • When you add pictures to the Vista image folder it creates a folder HIDDEN of the same name with two copies of the same image inside

    I use Vista 32 bit. I started to see this problem when I recently copy photos from an SD card.

    When you add pictures to the Vista image folder it creates a folder HIDDEN of the same name with two copies of the same image inside

    I saw hidden files enabled in folder options.

    Any help is appreciated.

    Hey guys... I found the answer... Problem is with the software vaio content analyzer that comes with the vaio...

    It just search for Vaio Content Analyzer (parameters) and deselect

    Video analysis
    image analysis
    analysis of the music

    I went looking for this crazy thing... used almost all types of online scan, and finally to find that it is caused by an internal software only...
    anyway thanks to all... Hope it helps someone in the future :)
  • How many times you can download a free trial, on the same computer?

    How many times are you allowed to download the software for free, even on the same computer?

    You can install a trial once on the same computer. After the end of the trial period, you will need a serial number (in other words, a product bought) to continue to use it on the same computer.

  • Mr President, how can I enter two rows at the same time with different default values that only the first line to use see?

    Mr President.

    My worm jdev is 12.2.1

    How to enter two rows at the same time with different default values that only the first line to use see?

    Suppose I have a table with four fields as below

    "DEBIT" VARCHAR2(7) , 
      "DRNAME" VARCHAR2(50),
      "CREDIT" VARCHAR2(7) , 
      "CRNAME" VARCHAR2(50),
    

    Now I want that when I click on a button (create an insert) to create the first line with the default values below

    firstrow.png

    So if I click on the button and then validate the second row with different values is also inserted on commit.

    The value of the second row are like the picture below

    tworows.png

    But the second row should be invisible. It could be achieved by adding vc in the vo.

    The difficult part in my question is therefore, to add the second row with the new default values.

    Because I already added default values in the first row.

    Now how to add second time default values.

    Concerning

    Mr President

    I change the code given by expensive Sameh Nassar and get my results.

    Thanks once again dear Sameh Nassar .

    My code to get my goal is

    First line of code is

        protected void doDML(int operation, TransactionEvent e) {    
    
            if(operation != DML_DELETE)
                 {
                     setAmount(getPurqty().multiply(getUnitpurprice()));
                 } 
    
            if (operation == DML_INSERT )
                       {
                               System.out.println("I am in Insert with vid= " + getVid());
                           insertSecondRowInDatabase(getVid(),getLineitem(),"6010010","SALES TAX PAYABLE",
                            (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                           }
    
            if(operation == DML_UPDATE)
                              {                                                    
    
                                 System.out.println("I am in Update with vid= " + getVid());
                             updateSecondRowInDatabase(getVid(),
                                 (getPurqty().multiply(getUnitpurprice()).multiply(getStaxrate())).divide(100));      
    
                              }                      
    
            super.doDML(operation, e);
        }
        private void insertSecondRowInDatabase(Object value1, Object value2, Object value3, Object value4, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "Insert into vdet (VID,LINEITEM,DEBIT,DRNAME,AMOUNT) values " +
                 "('" + value1 + "','" + value2 + "','" + value3 + "','" + value4 + "','" + value5 + "')";  
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }
                  }  
    
                  private void updateSecondRowInDatabase(Object value1, Object value5)
                  {
                    PreparedStatement stat = null;
                    try
                    {
                      String sql = "update vdet set  AMOUNT='"+ value5+"' where VID='" + value1 + "'";                     
    
                      stat = getDBTransaction().createPreparedStatement(sql, 1);  
    
                      stat.executeUpdate();
                    }
                    catch (Exception e)
                    {
                      e.printStackTrace();
                    }
                    finally
                    {
                      try
                      {
                        stat.close();
                      }
                      catch (Exception e)
                      {
                        e.printStackTrace();
                      }
                    }                  
    
                  }
    

    Second line code is inside a bean method

        public void addNewPurchaseVoucher(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindings = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter = (DCIteratorBinding) bindings.get("VoucherView1Iterator");
                   RowSetIterator rsi = dciter.getRowSetIterator();
                   Row lastRow = rsi.last();
                   int lastRowIndex = rsi.getRangeIndexOf(lastRow);
                   Row newRow = rsi.createRow();
                   newRow.setNewRowState(Row.STATUS_NEW);
                   rsi.insertRowAtRangeIndex(lastRowIndex +1, newRow);
                   rsi.setCurrentRow(newRow);
    
                   BindingContainer bindings1 = BindingContext.getCurrent().getCurrentBindingsEntry();
                   DCIteratorBinding dciter1 = (DCIteratorBinding) bindings1.get("VdetView1Iterator");
                   RowSetIterator rsi1 = dciter1.getRowSetIterator();
                   Row lastRow1 = rsi1.last();
                   int lastRowIndex1 = rsi1.getRangeIndexOf(lastRow1);
                   Row newRow1 = rsi1.createRow();
                   newRow1.setNewRowState(Row.STATUS_NEW);
                   rsi1.insertRowAtRangeIndex(lastRowIndex1 +1, newRow1);
                   rsi1.setCurrentRow(newRow1);
        }
    

    And final saveUpdate method is

        public void saveUpdateButton(ActionEvent actionEvent) {
            // Add event code here...
    
            BindingContainer bindingsBC = BindingContext.getCurrent().getCurrentBindingsEntry();      
    
                   OperationBinding commit = bindingsBC.getOperationBinding("Commit");
                   commit.execute(); 
    
            OperationBinding operationBinding = BindingContext.getCurrent().getCurrentBindingsEntry().getOperationBinding("Commit");
            operationBinding.execute();
            DCIteratorBinding iter = (DCIteratorBinding) BindingContext.getCurrent().getCurrentBindingsEntry().get("VdetView1Iterator");// write iterator name from pageDef.
            iter.getViewObject().executeQuery();  
    
        }
    

    Thanks for all the cooperation to obtain the desired results.

    Concerning

  • How can I separate two movies on the same timeline?

    I use the first elements 11 but that you him have not used for quite awhile so I forgot much of what I learned. So here's my question: I have two movies on the same timeline. How can I separate them. In other words, how can I move one on the timeline, so it won't confuse my editing on the other? But better yet - how can I make a movie on the timeline completely and change it later as a separate film. I have really four shorts - a minute long. I would like to change separately, with a new file name. I don't know how to do that more.

    Tommyvincent

    I did some research on the issues that you have raised in this thread.

    Comments...

    1.

    After you import a video into the assets of the project, you can right click it, select Rename. This file when you drag the timeline will have the new name.

    But...

    If you import a video into the assets of the project, drag it to the timeline, right-click clip timeline, select Rename from the pop-up, then the calendar file will be renamed but not its thumbnail in the active project. You rename this project asset vignette to match if you want. However, these traces yet files renamed to the original with original filename to its disk hard saving location.

    2.

    All down your Timeline... one way would be to export the clip selectively if she was included in the Group of the clips on the Timeline. Two conditions for

    a. change box, set the gray tabs on the work area bar to expand on the segment to export

    and

    (b) in the field of export, have a check mark next to the option "Action work area Bar only.

    3.

    If you have made a clip in the active project, double clicked to open the preview window, you can cut the clip with the points put in and Set Out and create "subitems" with new names in the active project. These "subitems" would be part of the media of this project which could be moved to the timeline when necessary.

    Please review and determine if all the foregoing is in the right direction for what you want to do.

    Thank you.

    RTA

  • How can I produce two outputs of the same project

    Dear Sir.

    My goal is to produce the two outputs of the same main project, Webhelp and HTML help, each of them will be used differently in my compnay.

    Producing two outputs is fine, but the problem was that external links are done differently for HTML help and Webhelp and as I Knew about you that can be solved by using conditional tags.

    Actually I am new to conditional tags and I don't know how to use them. Could you please help me to do this or recommend a link on how to use condtional tags to produce different outputs.

    Thank you very much

    Hi there ahlam323

    See if the link below helps everything. Some goober wrote something on it.

    Click here to read the goober guide

    See you soon... Rick

  • When and how can you synchronize browsers of two computers on the same account after the initial installation?

    I can't find any instructions on how to synchronize Firefox browsing data after the initial configuration is completed and the account is established. Everything that help guard reference section to be put in place, but not how to perform the synchronization operation after installation.

    Firefox syncs automatically, but you can force a synchronization by going to the Tools menu, and then click Synchronize now.

  • Can I use two cards at the same time on the same computer?

    Hello

    I have two graphics cards, one is integrated, i.e. HD 2500, Intel and the other is dedicated, i.e. Nvidia Geforce GT620. My question is that can I use both at the same time on the same PC. Whenever I try to connect via a VGA cable (per processor) and DVI (via graphic card) at the same time, the screen goes black and when I take off the DVI cable, the screen will return. When I connect the DVI again after log on, there is just the theme of Windows and folders that I opened all get reduced. When I disconnect the DVI cable once again, I opened the folder displays again.
     
    I want to make use of both integrated and dedicated graphics card, I read on the internet that two graphics cards give a performance gain. Also, I'm a gamer. But in time, I bought my PC, I had no knowledge about computers. I want to use two graphics cards. Please tell me a way by which I can use two graphics cards at the same time without the problem described above.

    Yes, you can use two cards graphics, combined to boost performance. But it depends on a condition: the two (or more) cards must be of the same brand. To make it clearer, you can use two or more NVIDIA graphics (thanks to SLI technology) or AMD graphics (with CrossFireX technology, supports up to four graphics card in a single PC).

    But, a mixture of graphics cards of different brand, as NVIDIA and AMD or NVIDIA and Intel or AMD and Intel or NVIDIA, AMD and Intel, can not be used for SLI or CrossFireX.
    On the black screen, please follow the following link:
    http://support.Microsoft.com/kb/976064
  • How can there be two accounts in the same user name

    How can I have two usernames even, that of the Australia and the other in the United States?

    Hello

    Thanks for posting your query in Microsoft Community.

    a. are both connected anyway through the network (for example in a server domain common network, VPN etc.)?

    b. What is a local user account or an Microsoft account?

    Unless the systems in the two countries are connected via a common domain, they are independent and can have accounts of local users with common names. If you talk about Microsoft accounts, then they can be configured two different computers, but the information that is on the server online sync is common to both systems.

    Additional information:

    User accounts: FAQ

    Hope this information is useful. Let us know if you need more help, we will be happy to help you.

  • Can I have two licenses on the same name?

    Hi all

    I have a computer with a license of cloud. Recently, I bought a second. I want to use Adobe Cloud on it also. Can I have two licenses for clouds on the same name? Are there other options like in front of two licenses? I'm Freelancer. The second computer is for my wife. We are working since hoeme. Are there options to two licenses of cloud?

    What is the best solution?

    Kind regards

    Sebastian

    Hi again,

    Yes, you are right. You must purchase a second license under the e-mail address of your wife as with an adobe ID, you can have only one creative cloud subscription.

    Thank you!

  • How can I have two instances of the same open page to separate tabs?

    New 4.0.1 on a Win7 machine - last week using. It happens in time I want to open the same page twice. In the case of today, it's because I need to fill out a form and the need to look at a previous version - filled - in the same form that opens with the same URL. I've done this before, on the old machine with the next recent FF and Win XP.

    Thank you and I love Firefox!

    You can middle - click reload on the side of the right end of the address bar to open the same page in a new tab.

  • Bluetooth connection with two devices at the same time? (on TX)

    I have a Palm TX and am trying to connect to the Palm Bluetooth keyboard wireless AND my cell phone of Nokia (Internet, etc.) at the same time.  The TX works very well with each device individually.  However, when I try to use them together, it won't work.  If I connect the keyboard first, then try to connect to the phone for internet access, it automatically CUTS the keyboard; and vice versa - any order of connection, it will cut the previous when it is connected.  (If the keyboard is connected and I use a fast connection button to go directly to the internet, when he tries to connect it will say that the port/cable is bad and can not connect.)

    (I know generally that a bluetooth device can support up to 7 other devices in its network and I've read where people supposed to logged keyboards and phones to the TX before I bought the keyboard).

    Any help is appreciated!

    fitnessdr wrote:

    Thank you for the information.  So if I had to return the new bluetooth keyboard, should I get the 'Palm 3169WWZ Wireless Keyboard", or y at - it another model I should look for?  (From what I can tell, I think he will use IR)

    Thank you!

    Well, that's the one I use.

    Don't forget to download the driver for the more recent (1.13) for the keyboard in the Palm Support pages for the keyboard:

    http://KB.Palm.com/wps/portal/KB/na/keyboards/palmuniversalwirelesskeyboard/unlocked/downloads/page_en.html

    Do not install the driver provided with the device on the disc - 1.13 is designed for the TX and fixes a bug that existed in the original pilot.

    WyreNut

  • Can we have two textures for the same project?

    Hi all

    I use Captivate4. In my project, the transparency of the background for reading bar controls is 100%. If the texture would be considered to be the background of the PlayBar. I have a requirement to hide the commands of reading in a few slides. Then I would change my texture to another image. In short, I want to show a single texture when the play bar is visible and another texture when the play bar is invisible.

    Is this possible?

    Thank you and best regards,

    Kartik.

    In Captivate 4, to achieve something like this, you must use a picture placed on the layer immediately above your background layer with your PlayBar in the overlay mode.  Then turn off your PlayBar would reveal the image below instead.

  • I can't open two windows for the same file type

    I want to work with files xls two side by side. If I try to open another file of the same type, it is replaced in the same window.  How to open a file in another window please?

    Open the first file, and then run a separate instance of Excel and the inside, this instance has open the second file

  • can you use FaceTime with three devices at the same time.

    I need to be able to have a video conference with three people. A person will demonstrate a product whose other two will check to see that it is OK. Each person is in a different location. I can't find anywhere how to do this. Since it is an event of the time, I won't buy any conference high-end software. We will have a combination of iPhones and iPads.

    N ° but Skype should work.

Maybe you are looking for