Category Archives: Visual Basic 6 (VB6)

Chat application

Create a simple chat application betweenany two computers whose IP addresses you know. The DEMO here shows how to chat with your own computer .you can substitute your own IP with that of another person’s IP and create a seperate EXE running on his computer to chat with him /herCOOL! Original Author: Vikramjit Singh API Declarations Code ‘Open a… Read More »

Move Form without a Title Bar!

This code will allow you to move your Forms without even having to have a Title Bar! So this means if you choose to make your Form’s BroderStyle 0-None, which means no TitleBar, you will still be able to move the form with this code!You can do multiple things with this code also like: Clicking on the form… Read More »

Disable/Enable CTRL+ALT+DEL

‘ This code disables/enabled CTRL+ALT+DEL pressing‘ To disable CTRL+ALT+DEL, call the function Disable_CTRL_ALT_DEL‘ To enabled CTRL+ALT+DEL, call the function Enable_CTRL_ALT_DEL Original Author: King Patrik the Zerg API Declarations ‘***************************************************************‘Windows API/Global Declarations for :Dissable / Enable CTRL + AL‘ T + DEL‘*************************************************************** Declare Function SystemParametersInfo Lib “user32” Alias “SystemParametersInfoA” (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any,… Read More »

List View sample

What is possible to do with a list view? Original Author: Gino Lollita – Carta VBMan Attachments File Uploaded Size CODE_UPLOAD3233242000.zip 9/3/2020 3:45:00 PM 15146

Side bar logo

Create a side bar with your logo! Very easy to use and very cool! Original Author: Gino Lollita – Carta VBMan Attachments File Uploaded Size CODE_UPLOAD3234242000.zip 9/3/2020 3:45:00 PM 3997

ConvertBase+

Converts a number of any base into any other base. For example, itcan convert a binary number into decimal, octal, hexadecimal, etc. andback again. This is an improvement over the previous version as it can nowhandle the ‘double’ data-type. (Very Large Numbers). It is useful forconverting DWords from the registry, etc. Original Author: Aidan Inputs 1. A Number to… Read More »

DragDropFiles

This code shows the basics of dragging files from the Explorer and dropping it into a VB program. Original Author: Thomas Jung Attachments File Uploaded Size CODE_UPLOAD3225232000.zip 9/3/2020 3:45:00 PM 2090

Change the system menu 4 ur form!

Changes your forms system menu (visible when you right click on the forms titlebar or press [Alt] + [Space]) to what every you want, and does it really easily too! Original Author: MangaMorgan Code ‘~~~~~~~~~~~~~~~’~~~~~~~~~~~~~~~’~~~~~~~~~~~~~~~’ place a button on the form called “command1” and test’ run this project. Notice how BEFORE you click the button’ the forms system menu… Read More »

Gravity / Force Controlled Ball (s)

I posted a first version, but this is better so CHECK IT OUT ! You can create balls that bounce arond the screen interacting with each other. They take into acccount gravity and force. Each ball has its own force and when it hits another force is passed through to it. The balls bounce as if it is… Read More »

A Splitter Control

This is a splitter control with 2 panes. I found the initial code out on the web somewhere, but it had a few bugs and was missing a few features I wanted, so I added the ability to colorize the splitter bar and the code now fires an event when the splitter is resized to allow for controls… Read More »