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 »

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

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 »

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 »

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 »

Advanced VB Based Toolbar ActiveX Control

This is a complete commericial quality toolbar control for use with VB6 (VB5 users will need to create replacements for Replace and Split functions). It is completly owner drawn, and has no requirements on Common Controls, IE or whatever. As much as possible, API is used to greatly enhance and optimise the control. Buttons can be standard buttons,… Read More »

Hyper_Map

Build image maps from .gif pictures for people to click on various areas of your picture and jump to different links. Original Author: Max Seim Assumptions Assumes you know HTML. The program outputs a text file that you cut and paste into your HTML code for your website. Attachments File Uploaded Size CODE_UPLOAD3207222000.zip 9/3/2020 3:45:00 PM 33826

Message Scroller Control (Text Marquee)

What? Another marquee? Yep. Put into 1 class and 1 usercontrol file. Can contain separate text “blocks” each with it own forecolor. Use the mouse to drag the display from left to right (or right to left) during the scrolling (just in case you missed out something that scrolled away). Continuous scrolling (does NOT wait if the last… Read More »

a The easiest way to send mail!

I have seen some e-mail stuff on this site, but all are so freakin complicated. This is simple and VERY easy to use! Original Author: Dustin Davis Code Dim sRes As StringPrivate Sub Command1_Click()Winsock1.RemotePort = 25Winsock1.RemoteHost = your_mail_server_here ‘use your mail serverWinsock1.ConnectDo Until Winsock1.State = 7 ‘7=connected  DoEventsLoopsRes = “0”Winsock1.SendData “MAIL FROM: ” & your_email_here & vbCrLfDo Until sRes =… Read More »

Recent Files accessed in a

In a Drop Menu in one of your programs, you can list the last eight files the user opened. This will allow the user to quickly access a recent file again. I literally copied a sample from the VB5.0 package and eliminated the uneeded code. Original Author: Patrick K. Bigley Attachments File Uploaded Size CODE_UPLOAD2769172000.zip 9/3/2020 3:45:00 PM 4083