Weird Error!!cant figure it out

Good day ppl! i posted in the Vga section of this forum but noone seems to reply with a clear cut answer..someone said memtest and it reported no errors??pls read my post and give me a diagnosis!! ure help is very much appreciated!
i have a slight problem which i cant seem to find a solution to...
whenever i run games like Counterstrike 1.6 and Warcraft FT, a few mins in the game, i get a weird error which closes the application...the error is as follows:
Microsoft Visual C++ Runtime Library
Runtime Error !
Program D:\Valve\hl.exe
abnormal program termination
once this error shows, i have to click the OK button as nothin else can be clicked.on clicking another error appears....
CiceroUIWndFrame: hl.exe -Application Error
The instruction at "0x10232929" referenced memory at "0x10528688".The memory could not be read.
Click ok to terminate program..
I have to click ok and this terminates my game...becos of this problem i reinstalled my windows XP pro SP1 again and then reinstall my MSI gfx latest drivers again, then also reinstalled the games again.but it still keeps coming..PLS HELP ME!!!
any solution ppl...u all are geniuses as i have come to see and very helpful
MSI 875p Neo Fisr Bios 1.6
512 DDR 400 Twinmos Rams
MSI GF4 FX5600 VTD 128
i dont know but is this a problem with my vga card and if so how can it be solved..
ive run adware, spyware, antivirus, tuneup utilities 2003 to check for any possible errors or virus or worms or trojans but it all comes empty..i have pc-cillin 2003 also and ran a scandisk with no reported viruses..
my power supply is the Vantec ION 400 Wtt powersupply SATA ready..
3.3V 26A
5V 40A
12 16A
i have Twinmoss Pc3200 DDR 400 512 MB ram(single stick)--- no memory issue as of sort as i have more than 70% of it free whenver running windows and programs in the background...
i have 5 cooling fans including a Vantec Tornada( 3 intake and 2 exhaust) with 2 HDD( 80gb and 40gb barrcudas)
i hope this info will be good enuf for u ppl to diagnos my problem
again i thank u all for ure time

Agreed; Since the FX-5800 and up GPU's Require up to 7 Amps from the +12V Rail, then Yes 16 Amps is Very Light indeed , Dont Forget your P4 CPU under Stress (Gaming) Can require up to 10-11 Amps, combine that with the 7 Amps that your GPU May Require, and you are Over your +12V Rails Power capabilities...You should have at Least 20Amps on your +12V Rail, and because you are a Gamer! You should Have one of the Better PSU's Available that have 30 Amps + available on the +12V Rails. ie Enermax 465W or Antec 480W..............Sean REILLY875

Similar Messages

  • Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi,  I have just set up my domain email address with google and Im trying to set up mail on my mac.  Its receiving mail but its not letting me send emails from that address.  I have tried quite a few solution but cant figure it out.  Can anyone help

    Hi Lawrence1981,
    Thanks for visiting Apple Support Communities.
    You may want to check this article for additional troubleshooting steps:
    OS X Mail: Troubleshooting sending and receiving email messages
    http://support.apple.com/kb/ts3276
    Cheers,
    Jeremy

  • I have PX90 and trying to play it on my Mac but it's a .avi file and I cant figure this out, help

    Trying to play .avi file and I cant figure it out. I am pretty Mac ignorant(hey at least I own one)
    I've uploaded a couple files but they stay as .dmg files and I cant get them to work and quicktime
    isnt working.  I dont think I should have to purchase another so called $29.00 file to make .avi
    work on my Mac.  Does anybody know what I am doing wrong?
    Thanks

    AVI is a legacy file container originated by Microsoft back in 1992 and which has not been officially supported for more than a decade. Like the container, many of the codecs commonly used to create AVI content are also "legacy" compression formats most often supported on PC/Windows platforms. In fact, some codecs have never been transcoded for Mac use. Of those that have, many never made the transition to Mac OS X or the transition to Intel-based platforms. Those codecs that are still supported on the Mac can normally be found in the free Perian codec component package available as an online download. While some common AVI compression formats may be supported by the QT X Player app, QT 7 currently provides a more compatible AVI playback environment for most "legacy" compression formats. If the codec(s) used in your AVI files are not supported by the Perian package for QT use, you can try the VLC media player which may still support more esoteric compression formats. If  VLC does not support the files, the normal approach is to discover which specific audio and/or video codecs were used to create the file and perform an Internet search to see if a compatible Mac component is available for download.

  • Cant figure this out! Help needed!

    Hi,
    Ok I need some clearing up and some help. This is a program that generates receipts for an art supply store which sells three items: a brush set; a set of oil paints; and a can of oil canvas primer. The program is able to process multiple orders. For each order placed, calculate the order and print a receipt itemizing each item @ cost, the tax, the Environmental Levy, and the total cost.
    The cost of the items are:
    1- Brush Set: $8.00
    2- Set of Oil Paints: $40.00
    3- Oil Canvas Primer: $18.75
    4- Taxes: 14%
    5-Environmental Levy: 2% on all oil based products (including the paint set and primer). Levy calculated on product cost only (i.e. calculate without tax).
    The program should also keep track of the total numbers of each item ordered. Using these values, the user can, at any time, generate a receipt summarizing all orders placed up to that point. When the user enters the sentinel to quit the program, calculate and print one final receipt summarizing all of the orders that were placed. You should also calculate and print some receipt statistics: the average cost of the receipts and the smallest and largest receipts (in terms of cost).
    Your program will make use of 2 static methods (in addition to the main() method): toCurrency() and createReceipt().
    Ok the deal is that I have the input loops set up fine they all work, except for Total because nothing shows up! I dont know what to do for the output nor the calculations and where or what methods I have to use and how to call them up into Main. This is what I have so far...I added in comments to guide myself but I cant figure it out...Please help thanks
    import javax.swing.*;
    import java.text.NumberFormat;
    class Store{
    public static void main(String[]args){
    String input = JOptionPane.showInputDialog(null,"Welcome to the Arts Store! \nEnter the following selections: \nOrder\nTotal\nQuit");
    String header,numBrush,numOil,numCan;
    while(!input.equalsIgnoreCase("quit"))
              if(input.equalsIgnoreCase("order"))
                        numBrush = JOptionPane.showInputDialog(null,"Enter the Amount of Brushes:");
                        double brush = Double.parseDouble(numBrush);
                        numOil = JOptionPane.showInputDialog(null,"Enter the Amount of Oil Paint:");
                        double paint = Double.parseDouble(numOil);
                        numCan = JOptionPane.showInputDialog(null,"Enter the Amount of Canvas Primer:");
                        double canvas = Double.parseDouble(numCan);
         else if(input.equalsIgnoreCase("total")){
              //calculate the reciept
              //call the method createReciept
         else
              System.out.println("Sorry wrong input! Try again!");
              input = JOptionPane.showInputDialog(null,"\nEnter the following selections: \nOrder\nTotal\nQuit");
         }//end while loop
    //calculate and print final reciept
    //call up createReciept() method
    //display average cost and smallest and largest order
         }//end main
    public static String toCurrency(double value) {
    NumberFormat num =NumberFormat.getCurrencyInstance();
    String str = num.format(value);
    return str;
    public static double createReceipt(String header, double numOfBrushSets, double numOfOilPaints, double numOfPrimers){
    /*This method will generate a receipt in System.out.println
    This method has 4 parameters: a String header that describes the order being calculated
    (e.g. "Receipt Number 1", "Total of 10 Receipts", etc.) and 3 int parameters for the number of Brush Sets, Oil Paints, and Oil Canvas Primers.
    Calculate the cost each item, the tax, the environmental levy (2% only on oil based products), and the total receipt cost.
    Use toCurrency() to format all currency values to 2 decimal places. Finally, createReceipt()
    should return the total cost to the calling method where it will be used to update the receipt statistics. */
    numOfBrushSets=8.00;
    numOfOilPaints=40.00;
    numOfPrimers=18.75;
    double total=numOfBrushSets+numOfOilPaints+numOfPrimers;
    double tax;
    tax=total*0.15;
    System.out.println("Welcome to the Store");
    System.out.println(" You have purchased this many brush sets:"+numOfBrushSets);
    System.out.println(" You have purchased this many paint buckets:"+numOfOilPaints);
    System.out.println(" You have purchased this many canvas primer sets:"+numOfPrimers);
    return tax;
    }

    import java.text.NumberFormat;
    import javax.swing.*;
    public class StoreRx {
        public static void main(String[]args) {
            String input = JOptionPane.showInputDialog(null,"Welcome to the Arts Store!" +
                              "\nEnter the following selections: \nOrder\nQuit");
            // create some variables to remember things as we go
            int totalBrushes = 0;
            int totalPaint   = 0;
            int totalPrimer  = 0;
            double totalReceipts = 0;
            double smallestReceipt = Double.MAX_VALUE;
            double largestReceipt  = Double.MIN_VALUE;
            int count = 0;
            while(!input.equalsIgnoreCase("quit")) {
                if(input.equalsIgnoreCase("order")) {
                    String numBrush = JOptionPane.showInputDialog(null,
                                     "Enter the Amount of Brushes:");
                    int brush = Integer.parseInt(numBrush);
                    String numOil = JOptionPane.showInputDialog(null,
                                     "Enter the Amount of Oil Paint:");
                    int paint = Integer.parseInt(numOil);
                    String numCan = JOptionPane.showInputDialog(null,
                                     "Enter the Amount of Canvas Primer:");
                    int canvas = Integer.parseInt(numCan);
                    double total = createReceipt(brush, paint, canvas);
                    if(total < smallestReceipt)
                        smallestReceipt = total;
                    if(total > largestReceipt)
                        largestReceipt = total;
                    totalBrushes  += brush;
                    totalPaint    += paint;
                    totalPrimer   += canvas;
                    totalReceipts += total;
                    count++;
                else
                    System.out.println("Sorry wrong input! Try again!");
                input = JOptionPane.showInputDialog(null,
                            "\nEnter the following selections: \nOrder\nQuit");
            }//end while loop
            // "quit" brings us here
            System.out.println("Welcome to the Store");
            System.out.println(" You have purchased this many brush sets: " +
                                 totalBrushes);
            System.out.println(" You have purchased this many paint buckets: " +
                                 totalPaint);
            System.out.println(" You have purchased this many canvas primer sets: " +
                                 totalPrimer);
            //display average cost and smallest and largest order
            double average = totalReceipts/count;
            System.out.println("smallestReceipt = " + toCurrency(smallestReceipt) + "\n" +
                               "largestReceipt  = " + toCurrency(largestReceipt)  + "\n" +
                               "average receipt = " + toCurrency(average));
        }//end main
        public static String toCurrency(double value) {
            NumberFormat num = NumberFormat.getCurrencyInstance();
            String str = num.format(value);
            return str;
         * This method will generate a receipt in System.out.println
         * This method has 4 parameters: a String header that describes the order being
         * calculated (e.g. "Receipt Number 1", "Total of 10 Receipts", etc.) and 3 int
         * parameters for the number of Brush Sets, Oil Paints, and Oil Canvas Primers.
         * Calculate the cost each item, the tax, the environmental levy (2% only on oil
         * based products), and the total receipt cost. Use toCurrency() to format all
         * currency values to 2 decimal places. Finally, createReceipt()
         * should return the total cost to the calling method where it will be used to
         * update the receipt statistics.
        public static double createReceipt(int brushes, int paints, int primers) {
            double priceOfBrushSets =  8.00;
            double priceOfOilPaints = 40.00;
            double priceOfPrimers   = 18.75;
            double taxRate = 0.14;
            double environLevy = 0.02;
            double subTotal = brushes * priceOfBrushSets +
                              paints  * priceOfOilPaints +
                              primers * priceOfPrimers;
            double total = subTotal * (1.0 + taxRate + environLevy);
            return total;
    }

  • HT1338 i have mac ibook G4 os x 10.5.8 how can i upgrade it? i cant figure it out cause i cant find  anything compatible.

    i need help upgrading my ibook and i cant figure it out.

    A PPC G4 Mac can't be upgraded beyond Leopard 10.5.8 as all later versions of OS X require an Intel based mac.

  • I bought a 25$ itunes card n my kids rubbed some of the letters off n now i cant figure it out

    i cant figure out the numbers on my itunes card. how can i redeem my points?

    Did you check this article? iTunes Store: How to redeem a code
    If you have trouble reading or redeeming your code, please view iTunes Store: Invalid, inactive, or illegible codes.

  • I need to do slow motion, but i have imovie '08 and i cant figure it out. can anyone help???

    i cant figure out how to do slow motion in imovie '08 and people are saying that i need to get imovie '06 but i cant find it!!!     HELPPPP! i need slow mo!!!!!

    The free program JES Deinterlacer has a slow motion (or fast motion) feature. To use this program you will probably need to look at Help in the JES menu. In the window that opens, click on the Project tab. In the lower right you will see a box labelled "Movie speed". If you want half speed type in 0.5000 (representing 50%). For quarter speed use 0.2500, and so forth. For fast motion, 1.500 represents one and a half times speed and so on.
    In iMovie, right-click (or control-click) on the clip that you want to slow down, then select Reveal in Finder. In Finder, open the clip with JES and proceed from there (as I said, you may need to look at Help).
    The exported clip can then be reimported to your iMovie Event and used in your Project.
    JES Deinterlacer can be downloaded from the home page of the developer Jan E. Schotsman:
    http://www.xs4all.nl/~jeschot/home.html
    It is also downloadable from this Apple site (but it's an earlier version):
    http://www.apple.com/downloads/macosx/video/jesdeinterlacer.html
    John

  • Database Item Errors, cant figure out why..

    You can test with:
    workspace: merlin128
    user: testing
    pass: testing
    when you click submit on page 1 you get this error...
    ORA-06550: line 1, column 423: PL/SQL: ORA-00904: "T_CONSTR_PRGEST": invalid identifier ORA-06550: line 1, column 7: PL/SQL: SQL Statement ignored
    Error Unable to process row of table USER_ACCESS.
    OK
    I have many columns, that all work, except 6 of them that give this error,
    If I delete source and tell it to use a static value, the error goes away, but it doesn't insert the value into the database..

    wow, can't believe I overlooked that,
    I was actually having a problem with several columns not inserting into the table, looks like that was the root cause of all of them..
    thanks

  • Hi i am having a lot of trouble getting my pictures from my ipod 4 to download to my laptop! I just cant figure it out! please help! thanks!

    I cant't get my pictures from my ipod touch 4 to my laptop!!!! Please help me thank you!!!!!

    iOS: Importing personal photos and videos from iOS devices to your computer

  • I have pages version 2.1 for the i pad. When I try to open pages documents on my mac it says You need a newer version of Pages to open this document. I have updated to the very latest Pages for mac version 4.3. Cant figure it out.

    I have Pages version 2.1 for the i-pad. I have Pages on my Macbook, version 4.3. When I try to ipen a doc on my Mac it says I need a newer version to open this doc. There is no newer version. I need these docs in a bad way and cant get to them on the Mac. Any ideas?

    IOS Pages 2.0 and 2.1 implement an entirely incompatible document format with Pages ’09 v4.3. It cannot open them, and you are then prompted to update to Pages v5+ which is compatible with your IOS Pages.
    Unfortunately, updating to Pages v5+ is a bad thing, as it is a brand new application that has omitted over 90+ features from Pages ’09 v4.3. When you update to Pages v5+, it will move your old still functional version of the earlier Pages into /Applications/iWork. Aside from all the missing functionality, Pages v5+ will likely damage older documents that depend on specific Pages ’09 v4.3 features (including AppleScript and custom Templates).
    Oh, by the way, the older and new Pages documents have the same filename extension (.pages) making document organization difficult without applying different tag colors to old and new documents.
    We are recommending that users remain on their earlier Pages version. You may have to export documents from IOS Pages as Word .docx to avoid the OS X Pages update notice.

  • I have a ipod touch 2nd generation and using windows vista? Cant get the ipod touch to show in i tunes and or windows. I thought I had trie everything but cant figure this out. Driving me crazy

    Windows cant find the driver for my ipod touch 2nd generation. Can somebody help?

    See:
    iOS: Device not recognized in iTunes for Windows
    I would start with
    Removing and reinstalling iTunes, QuickTime, and other software components for Windows Vista or Windows 7
    or
    Removing and Reinstalling iTunes, QuickTime, and other software components for Windows XP
    Run this to help if it identifies the cause
    iTunes for Windows: Device Sync Tests
    Have you tried on another computer to help determine if you have a computer or iPod problem?

  • Display not working correctly... cant figure it out.

    Hello all,
    I have a MacBook Pro and for some reason today when I reset my computer and it turned back on the display was stretched about 10px on each side. So when I move my mouse around my screen is moving around now too. Very annoying. I had an external 20" connected to the display and was using it as an extention. When I have it plugged in now I see the 10px from my main display on the external. I have included some pictures because as we know pictures are worth 1000 words. I have tried reseting the CPU several times with and with out the external plugged in. I also tried reseting the display. Another side note on this; I have these random places on my screen that are about dime size that I can tell are fuzzy, the sharpness of the fonts goes away.
    Notice the edges, they are darker than the rest... this is the float area
    http://i25.photobucket.com/albums/c89/phone4real/Picture-9.jpg
    Notice the top is cut off a little
    http://i25.photobucket.com/albums/c89/phone4real/Picture8.png
    Anyone have any ideas of what this is or how I could better explain this problem to the Mac people. Im at a loss of words for what this problem is.
    Thanks
    Mark

    Ok one of those days. Some how I had zoomed in a little. I use the zoom function all the time for videos and such, but I dont remember ever initiating it. This would explain the floating on my mouse and the fuzzyness of the fonts.
    LOL... A little more coffe and I will be fine.

  • My computer is not recognizing my apple devices when it is connected to itunes. It might be my mcafee but i just cant figure it out

    Itunes is not recoginizing my apple products. I have windows 8. It may be my anti virus software but im struggling. I just reinstalled itunes but I cant plug it in and update the software on my old iphone. Whe i plug my ipad in it never says my devices.
    Can you help

    Have the drivers installed properly?

  • Cant figure this out

    how do i put all the same name artists together so that when im looking in artists i dont see 10 listings for the same artist instead of just one artist name and all there songs from all there albums if possible...for example linkin park is listed 5 times instead of just once with all their songs

    Make sure they are all spelt in an identical manner, even an extra space that you might not notice can make a difference. I have found instances where the spacebar has created extra stop at the end of the line. The quickest way is to sort your iTunes library by artist to bring your tracks together. Click on the first track by your artist say "Linkin Park", hold down the shift key and click on the last track in the list, this will highlight all in between. Right click on the list and choose Get Info, you get a dialogue box asking if you want to update multiple items, click Yes and then the Info tab. Overtype the artist name then click ok and this will ensure the whole selection is identical. Once you've done this connect your iPod, if you are updating automatically it will pick up the changes. If you are updating manually follow the instructions above with the iPod connected and carry out the changes directly on the iPod's song list.

  • Trying to back up iphone to iTunes through MacBook Pro but cant figure it out. not much time on computer. thanks

    dont undrstand how to connect iphone to macbook pro to reload my iphone back up. not much time on computer. thanks for the help

    http://support.apple.com/kb/HT1766

Maybe you are looking for