Category Archives: Microsoft

Nokia Snake Game

This game is the VB version of the nokia Cellphone ‘Snake’Game…play it on your computer or just check out how a block inherits the direction of another block using the tag property to give the ‘Snaking effect ‘. Original Author: Brad Barnes Assumptions Use the arrow keys on the keyboard to control the snake.The help page explains the game…… Read More »

!!!!***Cool Roll***!!!!

This is a really cool effect that you can add to make it so that when you click a minimize button, the form slides off the screen and a little mini form appears in the bottom left hand corner. When you click this mini forms title bar, the form appears again. A Very cool effect that I just… Read More »

Internet Chess Game

This a great chess game playable over the net, ther you will find a good exemple of what isan internet Game data transfer, i use an OCX as the ChessBoard. The code is littlebitspagetti but its been a while from this creation, the most important is to learn, there is alsoa chat window and you connect by IP… Read More »

Poker Game

Create a POKER game in LESS THAN 10 LINES OF CODE !!!! 🙂Whit an OCX. This is good to integrate in a nice user intefaceand maybe a black jack game so it become a real CASINO !!!Please visit my new web site and see what you can do VB power !!!come and chat with me http://www.virtualgamer.t2u.com Original Author: HarveySolutions… Read More »

!Make the textbox Locked for inputs and NOT grey!

Let you lock your textbox for inputs and it will NOT be grey, but will be able to highlightning and scrolling. One line code is all you need! Original Author: Martin Tonek Inputs add a textbox named Text1.Thats IT!! Assumptions None, More simple then this it will never be!well if you cant see all text.. just change multiline to… Read More »

Disable Right Mouse Click in Webbrowser Control

Processes Mouse actions for Webbrowser Control enabling you to disable the action. This is an update due to requests from people that could not get it working. I have included a sample project to show it working. Original Author: Chris Bint Assumptions This example code places a HOOK into the message queue. When a new message is received it… Read More »

!!!*Hide the Mouse Pointer!! EASY!*!!!

This simple code hides the mouse pointer when you want to. (o: Original Author: SeeD Inputs Make a new project. Add a module. Add 2 Command Buttons. Code ‘put this in your moduleDeclare Function ShowCursor& Lib “user32” _(ByVal bShow As Long)’Add this code to Command1.Private Sub Command1_Click()ShowCursor (bShow = True)End Sub’Add this to Command2.Private Sub Command2_Click()ShowCursor (bShow = False)End… Read More »

The Most Simple CoolBar (no subclassing)

Create a Coolbar (like MS Office 97) from a normal VB toolbar.It’s not necessary to subclass the form or something like that, just a few lines of code, and that’s it. Original Author: Damian Janowski Attachments File Uploaded Size CODE_UPLOAD293.zip 9/3/2020 3:45:00 PM 4921

Form Trick

When your user closes your form, it shrinks and slowly drifts off the screen in the direction of YOUR choice! (o: A simple code! (o: Original Author: SeeD Assumptions OK, do this:1) Start up a new project in your Vb.2) Add a timer – set it’s interval to 23) Add the code below to the timer. (o: Code ‘Add… Read More »