• Some users have recently had their accounts hijacked. It seems that the now defunct EVGA forums might have compromised your password there and seems many are using the same PW here. We would suggest you UPDATE YOUR PASSWORD and TURN ON 2FA for your account here to further secure it. None of the compromised accounts had 2FA turned on.
    Once you have enabled 2FA, your account will be updated soon to show a badge, letting other members know that you use 2FA to protect your account. This should be beneficial for everyone that uses FSFT.

Recent content by Harry_Hardcore

  1. H

    projector setup question

    hi, im thinking of getting a data projector installed for movie, tv and some presentation stuff. Im having trouble deciding on the best path to take. i firgure it comes down to two options 1. Have the data projector hooked up to a computer using a vid card, then have a tv in card that takes...
  2. H

    .jsp hyperlink

    no problem anymore
  3. H

    stupid onsubmit question

    <script> function emptyField(textObj) { if(textObj.value.length == 0) return true; for(var i=0; i<textObj.value.length;i++) { ch = textObj.value.charAt(i); if(ch != ' ' && ch != '\t') return false; } return true; } function doSubmit(thisForm) { if...
  4. H

    oracle internal error ora-00600

    i just figured out part of the problem. i only get the error when i use a field that is stored as a VARCHAR2 is there a way to fix this?
  5. H

    oracle internal error ora-00600

    im wiriting some inbedded sql in java. Ive been querying a table and it works when i query one particular field but if i select any others i get the above error. any ideas? i have none
  6. H

    SQL key question

    why then when i create an a record in a table that has two foreign keys, it doesent allow it unless i have values for the foreign key fields that realte to each of the other tables?
  7. H

    SQL key question

    could you explain?
  8. H

    SQL key question

    can i make a foreign key able to have a null value? :confused:
  9. H

    java - JTextArea Question

    thanks for the replys i think ill put the listener in and just delete any extra characters. Im looking to allow a maximum of 50 characters entered and not allow any more.
  10. H

    java - JTextArea Question

    was wondering how one you have set a size to your JTextArea, how do you make it so that this size doent change, so onle the space provided can be typed in eg.limit it to 50 chars can it be done with JTextFields also?
  11. H

    java tabbed pane and radion button

    say i wanted to implement the function of a tabbed pane with radio buttons (i want to show different pannels in a single frame). is the only way to do this to have seperate frames which are made visible when a radio button is selected? you cant layer pannels can you?
  12. H

    java file qustion

    thanks for the reply. i thought of both of thoes ways, rewriting the whole file seemed wastefull but i guess its better than having heaps of garbage fields in the file.
  13. H

    java file qustion

    i think i just write a blank record over it
  14. H

    java file qustion

    just wondering how i would go about deleting a record from a .dat (random file) using java?
  15. H

    simple java question

    wouldnt i have address and name as a class that extends patient?
Back
Top