The Ultimate PID Checker

Discussion in 'MDL Projects and Applications' started by janek2012, Jul 18, 2010.

  1. janek2012

    janek2012 MDL Member

    Dec 29, 2008
    214
    994
    10
    But there is a main question, do you guys like the new Checkboxes instead Radio boxes? To change profile for ex. from 7 to Vista you will now need to uncheck 7 and then check Vista - it may not be the most confortable method but it allows you to check key on multiple profiles.
    Please post your suggestions and feedback.
     
  2. Josh Cell

    Josh Cell MDL Developer

    Jan 8, 2011
    3,515
    7,171
    120
    Creating auto-checker / unchecker function for it ;)

    It's called as GUI Logical Interpretations Function ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Josh Cell

    Josh Cell MDL Developer

    Jan 8, 2011
    3,515
    7,171
    120
    #63 Josh Cell, Sep 10, 2011
    Last edited by a moderator: Apr 20, 2017
    If you use .NET C#, Just add this logical function into Checkbox Changer Events:

    Code:
    //Having 4 checkboxes autoselector
    //chb1 - chb2 - chb3 - chb4
    void Function()
    {
    if (chb1.Checked)
    {
    chb2.Checked = false;
    chb3.Checked = false;
    chb4.Checked = false;
    }
    if (chb2.Checked)
    {
    chb1.Checked = false;
    chb3.Checked = false;
    chb4.Checked = false;
    }
    if (chb3.Checked)
    {
    chb1.Checked = false;
    chb2.Checked = false;
    chb4.Checked = false;
    }
    if (chb4.Checked)
    {
    chb1.Checked = false;
    chb2.Checked = false;
    chb3.Checked = false;
    }
    }
    It's a logical solution ;)
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  4. racky29

    racky29 MDL Senior Member

    Aug 2, 2007
    285
    93
    10
    #64 racky29, Sep 11, 2011
    Last edited by a moderator: Apr 20, 2017
  5. Josh Cell

    Josh Cell MDL Developer

    Jan 8, 2011
    3,515
    7,171
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Josh Cell

    Josh Cell MDL Developer

    Jan 8, 2011
    3,515
    7,171
    120
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. janek2012

    janek2012 MDL Member

    Dec 29, 2008
    214
    994
    10
    There is actually such action but ok :)
     
  8. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,589
    340
    @janek

    Any chance of XP/2003 support?? :eek:
     
  9. Tito

    Tito Super Mod / Adviser
    Staff Member

    Nov 30, 2009
    18,681
    18,589
    340
    Well... is the Vendor name necessary?? I mean the vendor information isn't embedded in the key :eek:
     
  10. janek2012

    janek2012 MDL Member

    Dec 29, 2008
    214
    994
    10
    It is shown only for OEM keys and for XP, some keys' vendors are known. Vendor is not necessary but I think it's good if it's presented.
    PS. I am using Jeremy Collake's XP checker script and it was containing some Vendors' informations.
     
  11. user_hidden

    user_hidden MDL Expert

    Dec 18, 2007
    1,034
    1,061
    60
    will you add Windows 8 ability?
    the PidGenX.dll has been updated and is backward compatible so that would be a swap.
    and just add the pkeyconfig files to the exe.
     
  12. janek2012

    janek2012 MDL Member

    Dec 29, 2008
    214
    994
    10
    I am currently using 7989's PidGenX.dll (it's about 5% faster than pidgenx.dll from VAMT2) but it will be updated to 8102's.
     
  13. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    #76 CODYQX4, Sep 18, 2011
    Last edited: Apr 15, 2019
    .
     
  14. janek2012

    janek2012 MDL Member

    Dec 29, 2008
    214
    994
    10
    Yeah but just a bit faster and not for all keys.
    PidgenX2 is also present in VAMT2 but I am not sure what does it do and how to use it. Arguments are different than in old PidgenX.
     
  15. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    #78 CODYQX4, Sep 18, 2011
    Last edited: Apr 15, 2019
    .
     
  16. user_hidden

    user_hidden MDL Expert

    Dec 18, 2007
    1,034
    1,061
    60
    Codyqx4 - mine checks win8 just fine with pidgenx.dll and pkconfig from 8102.
    the pidgenx works for the others as well. win8 key checks as fast as you click "check".

    View attachment 11440
     
  17. CODYQX4

    CODYQX4 MDL Developer

    Sep 4, 2009
    4,813
    45,775
    150
    #80 CODYQX4, Sep 18, 2011
    Last edited: Apr 15, 2019
    .