VB.NET Mouse Macro


This is a simple application that demonstrates how you can allow your application users a basic scripting language. This is a programmable mouse macro where you add commands such as “setx 120″ to the listbox and each line is executed one by one. This can be used for easy mouse movements and clicks. It demonstrates [...]

VB.NET – Slot Machine


Edit: Now a demo video! This is one of the first VB.NET projects I actually did back in 2006. It’s a slot machine that had to incorporate alot of different things as part of the assignment, such as use of the string classes (toUpperCase, .length, etc)

VB.NET – Mouse Events


I figured a little tutorial on mouse events in VB will be helpful! There are two methods, mouse down and mouse up. Mouse down handles clicking on the form, and basically doing things while the mouse button is being held down. Mouse up does the opposite, handles doing things when the mouse is not being [...]

VB.NET – Handling shape movements and collision


Edit: Now a video is up of the attached demo: In the previous post(Found here) I talked about creating shape objects at random positions and drawing them on the form. This tutorial will go over making them all move, and handling collisions. I made a Visual Basics project as a way to test “gravity.” You [...]