{TUT} Key Finder vb.2008 - Printable Version +- Support Forums (https://www.supportforums.net) +-- Forum: Categories (https://www.supportforums.net/forumdisplay.php?fid=87) +--- Forum: Coding Support Forums (https://www.supportforums.net/forumdisplay.php?fid=18) +---- Forum: Visual Basic and the .NET Framework (https://www.supportforums.net/forumdisplay.php?fid=19) +---- Thread: {TUT} Key Finder vb.2008 (/showthread.php?tid=13357) Pages:
1
2
|
{TUT} Key Finder vb.2008 - the_legend_nl - 11-01-2010 i didnt saw a tutorial aout this so i thought lets make 1. this is a good tutorial for beginners. i'm sorry my englisch sucks because im dutch. first of all open visual basics > new project > windows forms aplication add the following from the toolbox : 1 button 1 textbox 1 label laat het er ongeveer zo uitzien. call button 1 Find Key then double click button 1 and add this code. Code: textbox1.text = (GetProductKey("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\", "DigitalProductId")) then add this code to label 1 this will show your product key. Code: Label1.Text = My.Computer.Info.OSFullName then double click form1 and add the following code to form1. Code: Public Function GetProductKey(ByVal KeyPath As String, ByVal ValueName As String) As String de hele code zou er zo uit moeten zien. Code: Public Class Form1 all done now you build your own key finder. RE: {TUT} Key Finder vb.2008 - Arеs - 11-01-2010 Awesome thread, I don't really code in Visual Basic something big, but I can learn this. RE: {TUT} Key Finder vb.2008 - the_legend_nl - 11-01-2010 (11-01-2010, 08:25 AM)Firas™ Wrote: Awesome thread, I don't really code in Visual Basic something big, but I can learn this. thanks im glad i can help RE: {TUT} Key Finder vb.2008 - Marik™ - 11-04-2010 I needed a function that decrypts the digital key, and here I got it. Thanks. RE: {TUT} Key Finder vb.2008 - the_legend_nl - 11-04-2010 (11-04-2010, 05:57 AM)Marik™ Wrote: I needed a function that decrypts the digital key, and here I got it. Thanks. no thanks glad i could help RE: {TUT} Key Finder vb.2008 - Marik™ - 11-04-2010 Maybe you could make one for Office 2010? RE: {TUT} Key Finder vb.2008 - the_legend_nl - 11-04-2010 (11-04-2010, 11:26 AM)Marik™ Wrote: Maybe you could make one for Office 2010? yeah sure i will get right on it RE: {TUT} Key Finder vb.2008 - Marik™ - 11-04-2010 Alright, mind if you PM me right after you complete it? Thanks. RE: {TUT} Key Finder vb.2008 - the_legend_nl - 11-05-2010 (11-04-2010, 11:53 AM)Marik™ Wrote: Alright, mind if you PM me right after you complete it? yes ofcourse i will pm you after i finished. RE: {TUT} Key Finder vb.2008 - fas - 11-05-2010 Hi, This is FANTASTIC, thanks a lot for the code. would it be possbile to get the Office 2010 keys? thanks |