Show actual hardware ID to user

This snippet is assuming, that you are using it on form and you have TextBox1 control in it.

C#
public void ShowHardwareID() { TextBox1.Text = TreeksLicensingLibrary.HardwareID.ActualHardwareID; }
VB.NET
Public Sub ShowHardwareID() TextBox1.Text = TreeksLicensingLibrary.HardwareID.ActualHardwareID End Sub