Encryption and Decryption in VB.NET

Imports System.Security.Cryptography Public Class Simple3Des     Private TripleDes As New TripleDESCryptoServiceProvider     Private Function TruncateHash(ByVal key As String, ByVal length As Integer) As Byte()         Dim sha1 As New SHA1CryptoServiceProvider         ' Hash the key.         Dim keyBytes() As Byte = System.Text.Encoding.Unicode.GetBytes(key) ...

Programmatically Change Monitor Display on Windows 7 or 8 using VB.Net

In order to change monitors, it is useful to know what process to be launched to switch displays, the path where the process to be called, and the parameters to pass to the command. First, we need to know what will be the process to be called. “DisplaySwitch.exe” is the application that runs as a process to change between monitors. It can be launched through several methods and usually can be found on the system folder. Next, we will get the parameters for our command: PC Screen Only – "/internal" Duplicate – "/clone" Extend – "/extended" Second...

Creating a Window Using JFrame in Java

Here's an example of a simple window in java: Java JFrame Window (JFrame size - 300x280) Here's the code: import javax.swing.JFrame;public class MyClass extends JFrame{        public MyClass(){        setSize(800,600);        setTitle("JavaJFrameWindow1");        setDefaultCloseOperation(EXIT_ON_CLOSE);       ...

Custom Cursor Using an Icon in Visual Basic 2012

Here's an example and some code options in using a custom cursor in an ".ico" format in Visual Basic 2012: Customized cursor in run-time Option 1: Dim myIcon As Icon Dim myCursor As Cursor myIcon = New Icon("C:\myIconFileName.ico") myCursor = New Cursor(myIcon.Handle) Me.Cursor = myCursor Option 2: Dim myIcon As New Icon("C:\myIconFileName.ico") Dim myCursor As New Cursor(myIcon.Handle) Me.Cursor = myCursor Option 3: Dim myIcon As...