CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Page 3 of 3 FirstFirst 123
Results 31 to 36 of 36

Thread: Machine ID?

  1. #31
    Join Date
    May 2004
    Location
    45,000FT Above Nevada
    Posts
    1,539

    Re: Machine ID?

    Thanks for the info BullCo and Rehorav, I'll look into these...I have tried some of the others but not long enough to see if they meet my needs.
    Jim
    ATP BE400 CE500 (C550B-SPW) CE560XL MU300 CFI CFII

    "The speed of non working code is irrelevant"... Of course that is just my opinion, I could be wrong.

    "Nothing in the world can take the place of persistence. Talent will not; nothing is more common than unsuccessful men with talent. Genius will not; unrewarded genius is almost a proverb. Education will not; the world is full of educated derelicts. Persistence and determination are omnipotent. The slogan 'press on' has solved and always will solve the problems of the human race."...Calvin Coolidge 30th President of the USA.

  2. #32
    Join Date
    Nov 2011
    Posts
    1

    Re: Machine ID?

    You can use Machine ID dll for dot net , its very good API .also it retrieve activation
    for machine ID, it works with x68,x64.
    It has a good feature let you have a different activation code for the same machine ID

    Imports Machine
    Imports Machine.MachineInfo

    Public Class DisplayMachineId

    Private Sub DisplayMachineId_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
    'Creating machine object
    Dim MyMachine As MachineInfo = New MachineInfo

    '***************************HardDisk****************************
    ' Dimension array of all HardDisks Information in the computer.
    Dim MyHardDisks() As HardDiskIfo
    'Fill HardDisk Information object
    MyHardDisks = MyMachine.HardDisks
    'Assigning the first Hard Disk Model to its TextBox

    TxtHardDiskModel.Text = MyHardDisks(0).model

    '***************************MachineID****************************


    'Dimension Components information for Computer ID contains eight components.
    Dim MyId As MachineidComponentsInfo
    'Fill MachineID component information object.
    MyId = MyMachine.MachineIdComponents
    'Assigning the eight Machine ID component to its corresponding TextBox
    TxtMIComponent1.Text = MyId.Component1
    TxtMIComponent2.Text = MyId.Component2
    TxtMIComponent3.Text = MyId.Component3
    TxtMIComponent4.Text = MyId.Component4
    TxtMIComponent5.Text = MyId.Component5
    TxtMIComponent6.Text = MyId.Component6
    TxtMIComponent7.Text = MyId.Component7
    TxtMIComponent8.Text = MyId.Component8


    '**************************Machine Activation Code***********************


    ' Dimension component information for Activation Code contains eight components.
    Dim MyActivation As MachineActivationComponentsInfo
    'Fill Activation code component information object.It takes four strings parameters to have variety for Activation Code for different versions.
    MyActivation = MyMachine.MachineActivationComponents("TypeAnyText", "TypeAnyText", "TypeAnyText", "TypeAnyText")
    'Assigning the eight Activation Code components to their corresponding TextBox.
    TxtMAComponent1.Text = MyActivation.Component1
    TxtMAComponent2.Text = MyActivation.Component2
    TxtMAComponent3.Text = MyActivation.Component3
    TxtMAComponent4.Text = MyActivation.Component4
    TxtMAComponent5.Text = MyActivation.Component5
    TxtMAComponent6.Text = MyActivation.Component6
    TxtMAComponent7.Text = MyActivation.Component7
    TxtMAComponent8.Text = MyActivation.Component8

    End Sub

    End Class


    This is link for dll
    http://dllstore.net/.../MachineId.aspx

  3. #33
    Join Date
    Sep 2004
    Location
    Holland (land of the dope)
    Posts
    4,123

    Re: Machine ID?

    Please use your brain before posting. This thread is 5 years old and this is a C++ forum, so your post is useless.

  4. #34
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    Re: Machine ID?

    Have a heart Skizmo, it's the guy's first post!
    "A problem well stated is a problem half solved.” - Charles F. Kettering

  5. #35
    VictorN's Avatar
    VictorN is offline Super Moderator Power Poster
    Join Date
    Jan 2003
    Location
    Hanover Germany
    Posts
    20,396

    Re: Machine ID?

    Quote Originally Posted by John E View Post
    Have a heart Skizmo, it's the guy's first post!
    It is not a reason for spamming or trolling here.
    He had to read first Announcement: Before you post.... section.
    Victor Nijegorodov

  6. #36
    John E is offline Elite Member Power Poster
    Join Date
    Apr 2001
    Location
    Manchester, England
    Posts
    4,835

    Re: Machine ID?

    You're right! Off with his head !!
    "A problem well stated is a problem half solved.” - Charles F. Kettering

Page 3 of 3 FirstFirst 123

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured