Search results

  1. siriusb

    Graphics Cards related queries here.

    Re: All Graphics Cards related queries here. ^Get the evga's latest revision. I don't think you can apply for warranty with this company, but, hopefully, you won't have to in the first place. Next in line would be xfx, leadtek, bfg. If you can, try getting a x1800xt/x1900xt instead of the 7900gt.
  2. siriusb

    Graphics Cards related queries here.

    Re: All Graphics Cards related queries here. ^Performance difference in the real world is very negligible as no card needs maxes 8x speeds right now. Many high end cards have agp versions and infact, SLI'ing two powerful pciex cards (on non A8n32) mobos will run each of them at 8x.
  3. siriusb

    How to find if RAM is defected?

    To check your ram for errors, download and use memtest86. Follow the instruction for usage. You problem could be your psu. How did you check the psu voltages? S/w aren't accurate. Different s/w report different volts. Only a dmm can tell you the correct value. Instead, use a psu calc to get an...
  4. siriusb

    Matrix effect in VB???

    You have to make a reference to the directx 8 library. That is where the consts are declared. Do this: -Clik on the menu in vb Project->References -Select "Directx 8 for vb type library" Now run your proj. As for opening a custom form, go to the frmMain.frm's code and look for the...
  5. siriusb

    no scandisk even if in case of power failure

    o.0 Is my previous reply not visible to anyone? @__Virus__ Ntfs can become corrupted just like fat though some times chkdsk don't run. To know if your partition has some corruption, either schedule a chkdsk on next boot or try to run defrag on that partition. Disk Defrag will tell you if the...
  6. siriusb

    How to disable HDD, but Temporarily ???

    Why thank you! A more less-adventurous (ha) method would be to tamper with the wires leading off the male molex connectors on your hdd (if your hdd is not sata). Just cut the 5V(red) or the 12V(yellow) wire with a plough knife and stick it back with super-glue. Super glue is non conductive and...
  7. siriusb

    IRC basics

    My first intro to irc: *www.irchelp.org/irchelp/irctutorial.html
  8. siriusb

    Please sort out these Errors

    When is this error occurring? Like, is it when you open a file/app or when you print, etc? What is the .exe reported on the message? Did you install any new driver/update?
  9. siriusb

    Difference in Compressed Disk Image (DAA) & Normal ISO???

    No. DAA don't need decompressing to a temp folder to read any file. But it's a proprietory format of poweriso and can only be mounted on it's own virtual drive. Also, to write to a medium, you have to decompress to an iso file and then write it.
  10. siriusb

    Blocked Port Finder

    Try these online tools *www.auditmypc.com/freescan/scanoptions.asp *www.pcflank.com/scanner1.htm *www.dslreports.com/scan
  11. siriusb

    Spot the difference

    The first one is the frame buffer size while the agp aperture size is the amount of main memory to be used to as a spill-over for game textures should the frame buffer run out of memory. AFAIK, agp aperture is only applicable to external agp cards.
  12. siriusb

    no scandisk even if in case of power failure

    No need to go to registry. Just go to cmd prompt and type in chkdsk /F /R /V c: Say 'y' to check on next boot and you get a chkdsk on next boot.
  13. siriusb

    problems in programming language

    I didn't understand what you wrote, but defining class functions outside the class using the 'class' keyword is not correct. Why do you say it's right (if that's what you said)? Even for referring to a class variable (which is done inside a function body), you don't need a 'class' keyword.
  14. siriusb

    Matrix effect in VB???

    The png files are image files that store the different alphabets and other grapics that are shown when the program is run. Go ahead and open one in an good image editing app(not mspaint).
  15. siriusb

    Matrix effect in VB???

    Dude, where else? In the project's folder. That is where the project1.vbp and form1.frm files are.
  16. siriusb

    How to disable HDD, but Temporarily ???

    If you are willing to go the extra mile to deny your cousin of your hdd, and you have no qualms de-soldering and re-soldering an smd, just desolder a couple of resitors/caps/chips or whatever is easily accessible on the pcb. As soon as he leaves, resolder'em back on. Just hope that you didn't...
  17. siriusb

    Matrix effect in VB???

    You have to copy the .png files to the .exe's folder as well.
  18. siriusb

    Memory (latecy) problem

    How did you correlate crc error in a corrupt zip file and memory timings :s ? Both have no correlation (unless you tweaked the memory timings of course). Most probably your setup file or the .cab files are corrupted somehow. Re-acquire the program from whereever you acquired it from and run the...
  19. siriusb

    problems in programming language

    I thought you'd spot more differences than that. Ok, let me tell you: -You don't use the 'class' keyword to define class functions. U use the function's return type (here it was 'void') -After accepting the emp code, you have to flush the newline char so that address can be got in the variable.
  20. siriusb

    problems in programming language

    ^Replace the appropriate sections with this: void employee::getemployeedata(void) { cout<<"\n Enter employee name"; cin.getline(name, 50); cout<<"\n Enter employee code"; cin>>code; cin.get(); cout<<"\n Enter employee address"; cin.getline(address, 50); cout<<"\n Enter employee contact number"...
Top Bottom