6600GT and bundle game problem

I'v the msi 6600gt 128 pce card and the game xiii in bundle i installed it but the screen into the menu and also into the game blinking with vertical line, i try to enable vertical sync from driver setting but nothing change, i'v also disabled aa and aniso.....what's the problem?

Quote from: ~Blissard~ on 26-September-05, 04:24:52
ok tank you i try, befor the forceware installation i need to uninstall something?
Uninstall your current drivers then use Driver Cleaner to delete any unnecessary file from the old driver and then install the new forceware driver...
Good Luck 

Similar Messages

  • The Rate and Bundle game

    I hate how comcast makes you plan the rate/bundle game every 12 months.  Comcast service is overpriced.  A lot of people will just pay it not realizing that they could save money with a phone a call.  Last year I canceled my cable to have them call me with a great deal.  So I signup for cable again.  Then after 12 months they wanted to raise my rates by about $60.  Then the deals they wanted to offer were subpar.  So I canceled my cable again.  I do not regret it.  Comcast is great for internet to stream content from their competition such as NetFlix, Hulu, and Amazon Prime. And there are other ways to watch live sports that do not require cable or going to a sports bar. Cut the cord and slash their profits.  They will try to get you to stay on for a super basic package, but that's just so they can count you as a subscriber for adverstising revenue.  Don't be fooled.

    I hate how comcast makes you plan the rate/bundle game every 12 months.  Comcast service is overpriced.  A lot of people will just pay it not realizing that they could save money with a phone a call.  Last year I canceled my cable to have them call me with a great deal.  So I signup for cable again.  Then after 12 months they wanted to raise my rates by about $60.  Then the deals they wanted to offer were subpar.  So I canceled my cable again.  I do not regret it.  Comcast is great for internet to stream content from their competition such as NetFlix, Hulu, and Amazon Prime. And there are other ways to watch live sports that do not require cable or going to a sports bar. Cut the cord and slash their profits.  They will try to get you to stay on for a super basic package, but that's just so they can count you as a subscriber for adverstising revenue.  Don't be fooled.

  • Puzzle Game and new Game Problem

    Hello Java Programmers,
    Once again I have encountered a problem with my ongoing puzzle game. I have completed it all. Now I want my user to be able to start a new game in after they win. I tried repaint and update method with JFrame but it deosn't reshuffle the buttons. How can I do that. The code geos below.
    [/b]
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.event.*;
    import javax.swing.JOptionPane;
    public class PuzzleGame{
       String[] btn_Labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"," "};
       String[] labels = {"1","2","3","4","5","6","7","8","9",
                            "10","11","12","13","14","15"};
       private final int ONE = 1, TWO = 2, THREE = 3, FIVE = 5;
       private boolean WIN_STATE = false; 
       private JButton b[];
       public String clicked_btn_label = "";
       //Constructor method.
       public PuzzleGame(){
          showSplashScreen();
          initGame();
       public static void main(String args[]){
          PuzzleGame game = new PuzzleGame();
       //When a new Game started labels of buttons are shuffled using this method.
       public void shuffleNumbers(){
          String temp = null;   
          for(int j=0; j<16; j++){
          int k = (int)(Math.random()*16);
          temp = btn_Labels[j];
          btn_Labels[j] = btn_Labels[k];
          btn_Labels[k] = temp;           
       //Game initialization method.
       public void initGame(){
          b = new JButton[16];
          JPanel p = new JPanel();
          JFrame frame = new JFrame();
          shuffleNumbers();
          for(int i=0; i<16; i++){
             b[i] = new JButton();
             b.setText(btn_Labels[i]);
    b[i].setActionCommand(""+(i+1));
    for(int i=0; i<16; i++){
    b[i].addActionListener( new ActionListener(){
    public void actionPerformed(ActionEvent e){
    clicked_btn_label =(String)e.getActionCommand();
    doSwapping();
    checkWin();
    p.add(b[i]);
    p.setLayout(new GridLayout(4,4));
    frame.getContentPane().add(p);
    frame.addWindowListener(new WindowAdapter(){
    public void windowClosing(WindowEvent e){
    System.exit(0);
    Dimension dm = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (dm.width - 230)/2;
    int y = (dm.height - 240)/2;
    frame.setBounds(x,y,320,240);
    frame.setSize(340,240);
    frame.setVisible(true);
    //This method swaps the clicked button with the empty button if it doesn't violate rule.
    public void doSwapping(){
    int num = Integer.parseInt(clicked_btn_label);
    String temp;
    if( (num + ONE <= 16) && b[num].getText() == " " && num % 4 != 0){
    temp = b[num].getText();
    b[num].setText(b[num-ONE].getText());
    b[num-ONE].setText(temp);
    else if((num - TWO >= 0) && b[num-TWO].getText() == " " && ((num - ONE) % 4 != 0)){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-TWO].getText());
    b[num-TWO].setText(temp);
    else if( (num + THREE < 16) && b[num+THREE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num+THREE].getText());
    b[num+THREE].setText(temp);
    else if( (num - FIVE >= 0) && b[num-FIVE].getText() == " "){
    temp = b[num-ONE].getText();
    b[num-ONE].setText(b[num-FIVE].getText());
    b[num-FIVE].setText(temp);
    // else{}
    public void checkWin(){
    WIN_STATE = true;
    for(int i=0; i<15; i++){
    if( b[i].getText() != labels[i])
    WIN_STATE = false;
    if(WIN_STATE == true){
    JOptionPane.showMessageDialog(null,"Congratulations You Have won the Game!","You Win",JOptionPane.INFORMATION_MESSAGE);
         initGame();
    public void showSplashScreen(){
    JWindow w = new JWindow();
    JPanel p = (JPanel)w.getContentPane();
    JLabel l = new JLabel(new ImageIcon("splash.jpg"));
    Dimension d = Toolkit.getDefaultToolkit().getScreenSize();
    int x = (d.width - 230)/2;
    int y = (d.height - 240)/2;
    p.add(l);
    w.setBounds(x,y,320,240);
    w.setVisible(true);
    try{
    Thread.sleep(10000);
    catch(Exception e){
    w.setVisible(false);
    [/b]                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Sorry for violation. I would like to add a menubar to the application containing a single menu button for new game. adding a menubar is simple but how can i reshuffle the buttons using methods like update etc. or any other way.

  • Problem with java and yahoo games

    hello everyone,
    i have a mac 10.6.8 with java SE 6 1.6.0_33-603-424 and i have problems with yahoo games.... anyone can help me please, i have a mac 10.6.8 with java SE 6 1.6.0_33-603-424 and i have problems with yahoo games.... anyone can help me please

    So here is what comes to pass.
    Recall this started as a Lion Safari/5+ environment that SU took to version 6.
    Two weeks ago I just updated Flash Player. Today I fire up Java Preferences and I am told that I need to download Java. Did so, intentionally hit the "factory reset" button and then installed the Flash Player from teh Adobe site. The most recent install suggests automatic update but I choose "ask first."
    Restart Safari and we seem to be in order
    Thanks

  • Problem with Wine, NVidia and fullscreen games

    Hi,
    I'm writing about a problem i recently noticed with wine, nvidia gpu and fullscreen 2d games.Basically the problem is as follows - i am running arch with the latest kernel and nvidia drivers on Thinkpad T61 with NVidia Quadro NVS 140M. I have a problem with old 2d games like Red Alert 2, Baldur's Gate, Icewind Dale, Diablo 2, Heroes 3. All of these games do not support the native 1440x900 resolution of my screen and all of them work fine in window mode but crash if fullscreen is selected. I managed to get some of them working by making them work at higher resolutions. For example although Red Alert 2 does not support 1440x900, it can be easily made to work at that resolution and after i applied the necessary settings it worked. The same was with Heroes 3 - by default it does not support 1440x900 and it used to work only i window mode but there is a HD mod which allows it to run in higher resolutions and after i applied it it worked perfectly in fullscreen. I haven't thested Baldur's Gate and Icewind Dale but i think it will work there too.
    The problem is that i cannot use this approach to all games - for example i must run Diablo 2 and Starcraft in their original resolutions. I read somewhere that the problem is that wine can only change between the resolutions described in the xorg.conf file and if doesn't find the necessary resolution the game will crash or will only take the portion of the screen that is its resolution - for example when i play Starcraft rather than stretching it to the whole screen it simply takes 640x480 pixels of my screen and the game is displayed in the top left corner of the screen leaving everything else black.
    I didn't have this problem before - it is something new though i'm not sure since when do i have the problem because i rarely play games. As for the idea that the problem may be related to the resolutions defined in the Xorg.conf file, my xorg.conf is automatically generated by the nvidia installer and there are no resolutions defined there.

    brebs wrote:
    Try nvidia 304.48
    I remember that issue, with the 302 series.
    I have Nvidia 304.48 installed and the problem still exists (it also happens with Catalyst). This didn't occur with 295.59 using the same version of Wine.
    https://bbs.archlinux.org/viewtopic.php?id=55145
    https://bbs.archlinux.org/viewtopic.php?id=147073

  • I am having problems being able to sign out of everything that requires a sign in and password can you help and some games only show have the page

    I have been doing online banking with this bank for 7 months with no problems. About 2 weeks ago I started having problems with certain things within the account. I called the support team with the bank and told them the problem and they suggested to uninstall firefox and reinstall so I did. Now I can move around within the account but can not sign off. Also all my accounts that require a sign in I have the same problem and some games I play only load up part of the game. I play goldminer and now I can not see the little miner to play the game. Can you help????????

    That issue can be caused by corrupted cookies.
    *https://support.mozilla.org/kb/Cannot+log+in+to+websites
    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Offline Storage (Cache): "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    If clearing the cookies doesn't help then it is possible that the file <i>cookies.sqlite</i> that stores the cookies is corrupted.<br />
    Rename (or delete) <b>cookies.sqlite</b> (cookies.sqlite.old) and delete other present cookie files like <b>cookies.sqlite-journal</b> in the Firefox Profile Folder in case the file cookies.sqlite got corrupted.
    *http://kb.mozillazine.org/Cookies

  • I purchased gems from the game legends at war and the game has problems and I've lost the things I've paid good money for how do I get a refund

    I purchased gems from the game legends at war and the game has problems and I've lost the things I've paid good money for how do I get a refund gree offer no support it takes days to get a reply then they offer no help, if Ive paid for something I expect to get it and being a paying customer I expect support when there is problems

    Simon ~ Welcome to the Support Communities. See the iTunes Store option here:
    http://www.apple.com/support/itunes/contact/

  • HT6058 I have updated my I pad dut I'm still having problems my iPad seems to freeze and when I go to put in my pin it take a few seconds before the numbers go in and my games stop and start and stop and start for a bit before they run properly

    I have updated my I pad dut I'm still having problems my iPad seems to freeze and when I go to put in my pin it take a few seconds before the numbers go in and my games stop and start and stop and start for a bit before they run properly

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
     Cheers, Tom

  • I pre-ordered PS4 and Killzone game, can I upgrade to the bundle when I pick up?

    Hello,
    I pre-ordered a PS4 console and the game, Killzone: Shadow Fall separately.  When I go to pick up my PS4, can I upgrade to this bundle when I pick it up?  PS4 Killzone Bundle
    Looking at the SKUs for the items included in the bundle, it looks like it is just the individual items that you are selling as a bundle with a $10 discount.
    Thanks

    Hello mkivsuptt-
    I am sure that you are hugely excited for your PlayStation 4 now that Sony has announced their release date of November 15th!
    It’s possible that you might be able to change out your pre-order for the bundle at the time of release, but there really is no way we can guarantee that those bundles will be available.  If you are really interested in that bundle, I would recommend pre-ordering one now, while they are still available.
    Thanks!
    Bill|Senior Social Media Specialist | Best Buy® Corporate
     Private Message

  • My apple ID was hacked and a game by GodGame Inc was bought and installed. When I try to report a problem about this transaction, the link automatically sends me to the apple store support. The application is bugged. Please help.

    My apple ID was hacked and a game by GodGame Inc was bought and installed. When I try to report a problem about this transaction, the link automatically sends me to the apple store support. The application is bugged. Please help.

    thanks for your response roaminggnome. I changed my password immediately after it happened and I have contacted i tunes to let them know of this dillemma.
    The I-tunes credit was a promotional thing by Apple to buy their laptop. So I didn't pay for the i-tunes credit in the first place. Do you think my bank will be able to reinburse Itunes credit then? I will ask support when they get back to me.

  • HT4095 I have downloaded the Sherlock Holmes movie Bundle and the game of shadows never downloaded correctly

    I have downloaded the Sherlock Holmes movie Bundle and the game of shadows never downloaded correctly

    can you stop the download completely? try to stop the download, delete the downloaded file and then re-downloading it. itunes should save your purchase so you won't have to pay every time you download.

  • Music skipping/scratchy and In-Game FPS Problems

    To start off, I'm an avid gamer and like to listen to music while playing video games, I have two problems. First, When I use a communication program called Ventrilo, it lets you communicate through a microphone to other people, iTunes gets scratchy and skips and the other problem is when I play my favorite game Counter-Strike:Source, the FPS in the game go from 100 and drops to about 40 every couple seconds which makes gameplay very very choppy, I would really like to play while listening to music...
    Please Answer if you Could, Thanks!

    Ha! I have this problem too...with the skipping and scratchyness. It happens when i play StarCraft for crying out loud...that game is so undemandin of hardwar that I fail to see why it happens...does it with Knight Online too...again a program that lacks hardware demand.
    iTunes 6 never did this...is there a way to fix this or if not revert to iTunes 6?

  • Here.  Hi I buy pack but the problem is you already purchased in-app purchased but it hasn't been downloaded pls fix it for me and I buy before 15 days pack 19,99 and 4,99 and the same problem  in game world strike

    Hi I buy pack but the problem is you already purchased in-app purchased but it hasn't been downloaded pls fix it for me and I buy before 15 days pack 19,99 and 4,99 and the same problem want or were can I fit it pls

    The e-mail for World Strike support is: [email protected]
    You need to contact them with your questions.

  • Collecting and bundling messages - transformation n- 1 messages problem

    Hi guys,
    I try to implement the scenario with collecting and bundling messages. I have a question: when you look at the samples in Basis6.40 SW Component, namespace http://sap.com/xi/XI/System/Patterns, there is an example, which uses message mapping BpmPatternCollectMerge.
    My question is: how can this mapping work??? it is mapping of N messages into 1 of the same type!!
    And when you try to test it, it does not work...
    Can you help, how to solve it? Or any ideas for other possibilities, how to merge the messages?
    Thanx, Peter

    Hi,
    To perform a N:1 transformation, these are the follwing important steps,
    DESIGN
    1. In your message mapping, make sure that the occurence of the source message interface is made to be n.
    2. Likewise, in your Interface mapping, the occurence of the Source Message Interface should also be made N.
    CONFIGURATION
    If you are using SP14 or SP15, the mapping can be done without a BPM as follows,
    u will have to go for a BPM with a receive step inside a loop with a multiline container element and the transformation step outside the loop to do the N:1 mapping
    Hope this clarifies and helps,
    Regards,
    Bhavesh
    Message was edited by: Bhavesh Kantilal

  • HT1752 I.downloaded.a.game.sims.3.and.the.game.will.not.install.what.is.the.problem?

    When.i.download.the.game.it.works.fine.but.as.soon.as.i.try.to.install.it.it.doe s.nothing.it.acts.like.its.about.to.do.something.but.then.nothing..I.talked.to.t he         
    people.who.i.bought.the.game.from.and.im.pretty.sure.its.not.the.game.but.the.co mputer.its.self.please.tell.me.what.i.need.to.do!

    Why are there periods between each word in your post?
    As for Sims 3, it will not run on your Mac. You should have checked the system requirements:
    FOR MAC OS X
    Mac OS X 10.5.7 Leopard or higher
    Intel Core Duo Processor
    2 GB RAM
    ATI X1600 or Nvidia 7300 GT with 128 MB of Video RAM, or Intel Integrated GMA X3100.
    At least 6.1 GB of hard drive space with at least 1 GB of additional space for custom content and saved games
    This game will not run on PowerPC (G3/G4/G5) based Mac systems, or the GMA 950 class of integrated video cards.
    http://gb.thesims3.com/game/systemreq

Maybe you are looking for

  • Could not find selected item matching value "null" in CoreSelectOneRadio

    Hello, I get the following error with my selectOneChoice components: WARNING Could not find selected item matching value "null" in CoreSelectOneRadio[UIXEditableFacesBeanImpl, id=dyna_2709976_11] It seem that the component looks for a selectItem obje

  • How to checkout documents in a WD Java application to client workstation ?

    Hello, I need to make some local checkouts of documents from DMS SAP in a Web Dynpro Java application. I develop a specific Bapi which is using the following functions : bapi_document_getdetail2 and bapi_document_checkoutmodify2. This Bapi works well

  • ITunes U Bug List

    This is my running list of the bugs remaining within iTunes U. If anyone else has a bug (or insights into ways to fix these bugs), please feel free to post them! Ken Newquist Lafayette College ID3 Tags Often Go Amiss Problem: MP3s created in Audacity

  • Adding Invoices into SAP Business One via web service.

    Hello! I am partially done with my project. However, I am down to a couple of problems which hinders the progress of my project. When I create an invoice with 2 items it will be inserted perfectly into the SAP Business One. However, when a second inv

  • Appfuse menu-config.xml error

    I have the next error when compile the appfuse project, javax.servlet.ServletException: Failure initializing struts-menu: Error parsing resource file: /WEB-INF/menu-config.xml nested exception is: The reference to entity "O" must end with the ';' del