Search results

  1. newm

    Rampage II Extreme Chipset Drivers in Windows 7

    I have just installed Windows 7 x64 on a new pc with an Asus Rampage II Extreme motherboard and when I try to install the chipset drivers it goes through as though everything has worked ok but it does not seem to have done anything. When you click Next> it normally lists the items it is...
  2. newm

    VB.NET and SQL datetime

    If you use the above code you can also use the HasValue property to determine if it is empty, see http://msdn.microsoft.com/en-us/library/sksw8094.aspx I think its just dates that will you problems, I dont think there is any such thing as a Null date in .NET.
  3. newm

    VB.NET and SQL datetime

    You could use Nullable e.g. Private _DOB AS Nullable(Of Date) Public Property DateOfBirth() As Nullable(Of Date) Get Return _DOB End Get Set(ByVal value As Nullable(Of Date)) _DOB = value End Set End Property Then when you get your data check for Null e.g., If...
  4. newm

    VB.NET and SQL datetime

    I usually declare them as objects so that you can check them for Null. If your using properties it might look like: Private _DOB AS Object Public Property DateOfBirth() As Object Get Return _DOB End Get Set(ByVal value As Object) _DOB = value End Set End Property...
  5. newm

    VB.Net - ADODB, trying to get ODBC Driver?

    Do you get an error when you try to design the form? Sometimes you can rebuild the project to fix errors with forms. On the menu choose "Build->Rebuild Solution"
  6. newm

    VB.Net - ADODB, trying to get ODBC Driver?

    www.connectionstrings.com is always a good place to look. This should do it both ways, have a read up on DataReaders/DataTables to see which one would suit you best. You will need to add a reference to "Microsoft ActiveX Data Objects 2.7 Library" for the ADODB stuff to work. Imports...
  7. newm

    VB.Net - ADODB, trying to get ODBC Driver?

    As the other posts say it does work but you should use ADO .NET if possible. You have declared your connection and recordset as ADODB.Connection objects, this could be one reason for the error. It should be, Dim ConnectDB As New ADODB.Connection Dim ConnectRS As New ADODB.Recordset...
  8. newm

    OCUK 3D MARK 06 TOP-LIST (NEW)

    [C*OLOR=Yellow][*B]14716[/B][/COLOR] | Newm | QX6850 @ 3409mhz | 8800 Ultra 655/768 | XP 32bit [url*]http://service.futuremark.com/compare?3dm06=2626459[/URL] 14716 | Newm | QX6850 @ 3409mhz | 8800 Ultra 655/768 | XP 32bit http://service.futuremark.com/compare?3dm06=2626459
  9. newm

    DDR3 @ 1:1

    I have a QX6850 with 2Gb of Corsair DDR3 DHX 1333C9DHX. I have set the memory to DDR31333 in the BIOS and set it to 1T but CPU-Z says the memory frequency is 667.9Mhz @ 1:2. If the chip and the memory are 1333 shouldnt this be 1:1?
  10. newm

    BIOS Power Management?

    Yay! Thats done it. Thanks Cob your a star.
  11. newm

    BIOS Power Management?

    Its a P5K3 deluxe, ive just flashed the BIOS as well, still no difference.
  12. newm

    BIOS Power Management?

    Thanks Cob, I have just disabled SpeedStep but CPU-Z still reports the same. Any ideas?
  13. newm

    BIOS Power Management?

    I build my new system yesterday and have just run CPU-Z on it to look at the frequencies etc and i'm not sure that I have set it up correctly. Its a QX6850 all at stock and I think CPU-Z is saying its running at 2Ghz. I found this http://www.pcper.com/article.php?aid=432&type=expert&pid=9...
  14. newm

    Problem with new rig

    Thanks, I was thinking of turning the beep off but the temp was going up and down so im not sure what its monitoring...
  15. newm

    Problem with new rig

    This is a screen shot of the temperature readings
  16. newm

    Problem with new rig

    no, not left it on long enough yet. just a quick look in the BOIS and turn it off
  17. newm

    Problem with new rig

    The CPU temp seems ok, it sits around 30. The phase 1,2,3, and 4 temp are ok too. Just phase 5 is high.
  18. newm

    Problem with new rig

    I have just build my new rig with an Abit IN932X MAX motherboard. When I first switched it on everything seemed ok but when I went into the BIOS and saved (without changing any settings) an alarm started to sound. If I clear the CMOS it works ok again but as soon as I go in the BOIS and...
  19. newm

    Number of drives in RAID

    cool, does it make any difference to performance if you have an odd number?
  20. newm

    Number of drives in RAID

    Is it possible to have 3 drives in RAID 0 or do you need to stick to an even number of drives?
Back
Top Bottom