ClioSport.net

Register a free account today to become a member!
Once signed in, you'll be able to participate on this site by adding your own topics and posts, as well as connect with other members through your own private inbox!

Search results

  1. disco

    V6 or 225?

    :)
  2. disco

    Is my engine knackered after the oil leak

    Is the repar being done under the cars warenty? I thought you only got 12 months on repairs you paid to have carried out. Plus if the engine goes later as a direct result of the original problem this will not be covered by the warrenty of the repair.
  3. disco

    License Key Generator

    Bored with my own work :) !!
  4. disco

    License Key Generator

    Does it matter if the code generates more licence keys that are divisable by 65 than ones add up to 4095 as it appears to at the moment. I can add another small bit of randomisation to make sure it goes between the two types of key more regularly? Without working it out explicitly I think my...
  5. disco

    License Key Generator

    Cheers mate still driving my DCI at the moment but perhaps some day I will own a sport and be at a meet :)
  6. disco

    License Key Generator

    I think they have gotten round that passing the checksum div by 65 by saying each part of the key must be between 100 and 999
  7. disco

    License Key Generator

    :) I think it can get quite confusing when using loops, ands, ors and nots together! You often get double negatives. Like (i want it to not loop when something is not equal to something!)
  8. disco

    License Key Generator

    When it is divisiable by 65 it drops out the loop as it is a valid licence key. i.e. i want it to keep looping while the remainder is not = 0 So while (the check sum is not = 4095 and the remainder is not = 0) then keep generating numbers.
  9. disco

    License Key Generator

    Mmmmm beer :)
  10. disco

    License Key Generator

    Cool glad it worked. Take it easy. D
  11. disco

    License Key Generator

    Not your computer was just cutting and pasting to and from the forum was corrupting the code. Copy it now. Hope it works! D
  12. disco

    License Key Generator

    Done Cheers :)
  13. disco

    License Key Generator

    ah ha go to line 34 and get rid of the space in li cenceKeyPart4 so it reads licenceKeyPart4 cutting and pasting from the form breaks it for some reason!
  14. disco

    License Key Generator

    this is strange it works then when i cut and paste it it back from the forum it breaks!
  15. disco

    License Key Generator

    Try again think something went wrong during pasting.
  16. disco

    License Key Generator

    Dim licenceKey Dim licenceKeyCheckSum Dim intHighestNumber Dim licenceKeyPart1 Dim licenceKeyPart2 Dim licenceKeyPart3 Dim licenceKeyPart4 Dim licenceKeyPart5 Dim licenceKeyPart6 intHighestNumber = 999 licenceKeyPart1 = 0 licenceKeyPart2 = 0 licenceKeyPart3 = 0 licenceKeyPart4 = 0...
  17. disco

    License Key Generator

    Stange it is running fine at my end! I would just ditch it and start a new file then do the cut and paste again or are you trying to run snoops code? cause it isn't VB Script so won't run in the same way.
  18. disco

    License Key Generator

    Yeah LOL!!!
  19. disco

    License Key Generator

    Sorry the second lot of code I gave you compleatly replaces the first lot.
  20. disco

    License Key Generator

    the above version also checks for numbers divisable by 65.
  21. disco

    License Key Generator

    Deleted
  22. disco

    License Key Generator

    VBScript sorry to go OTT but this was much more interesting than what I am working on!! LOL
  23. disco

    License Key Generator

    There is probably a much more efficient way to do this using a formula to gen the number the above is crude. But I can't be arsed to do the maths to work out a formula
  24. disco

    License Key Generator

    Stick the above into a text file rename genLicenceKey.vbs and double click. It is crude and I haven't done the bit that works out if it is divisable by 65 but it is a start :)
  25. disco

    License Key Generator

    Dim licenceKey Dim licenceKeyCheckSum Dim intHighestNumber Dim licenceKeyPart1 Dim licenceKeyPart2 Dim licenceKeyPart3 Dim licenceKeyPart4 Dim licenceKeyPart5 Dim licenceKeyPart6 intHighestNumber = 999 licenceKeyPart1 = 0 licenceKeyPart2 = 0 licenceKeyPart3 = 0 licenceKeyPart4 = 0...
  26. disco

    License Key Generator

    another quick question do the groups of 3 's add up to 4095 or each individual number i.e. 456 + 187 ect or 4+5+6+7
  27. disco

    License Key Generator

    So do you want to caculate all the possible licence key combos rather than writing a licnce key into your software?
  28. disco

    License Key Generator

    Would this method not still require a database of all the licenece keys you use? So when a licence key is entered the hash's can be compared?
  29. disco

    License Key Generator

    Sorry that was a bit brief. It is easy to genrate a random serious of alpanumerics in any language. i.e. using reglar expresions you could say genetare me a string wich is in the form A34F-E34G-D789-ABEG The hard part is the bit that checks if that is a valid licence key. You need to...
  30. disco

    License Key Generator

    Depends if you want to just generate a random licence key or if it needs to pass a check sum?
Top