|
Center window on parent [VB.NET]
2 days ago
by Remus Rigo
How to center the About window in the parent window (main window) In the about window (frmAbout) set the StartPosition property to CenterParent In the main window (frmMain) set the on click event from the menu (mnuMain_Help_About): Private Sub mnuMain_Help_About_Click(ByVal sender As System.Object, ...
Remus Rigo's IT Blog - remusrigo.blogspot.com
|
|
URL Label [VB.NET]
2 days ago
by Remus Rigo
Private Sub lblAuthor_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles lblAuthor.Click 'here you can put your link to your site and it will open in the default browser System.Diagnostics.Process.Start("http://about.me/remusrigo") End Sub Private Sub lblAuthor_MouseHover(ByVa ...
Remus Rigo's IT Blog - remusrigo.blogspot.com
|
|
VB.net defeat simple padding obfuscation
3 days ago
by Y
There is an applicationthat obfuscates a serial number by padding each character. Here is a de-obfuscator I made. First: define the array with all the characters the algorithm uses: Public charArray() As Char = {"0", "1", "2", "3", "4", "5", "6", "7", "8", "9", _ "A", "B", "C", "D", "E", "F", "G", " ...
OMG - theyouri.blogspot.com
|
|