Category Archives: Visual Basic 6 (VB6)

Add menu items at runtime! :)

This code adds allows you to add menu item’s on your form while you are running it(runtime :)… Original Author: Erik Tyldum Assumptions ‘Goto the menu Editor!‘Add a menu, and a submenu.‘Name the submenu: ‘mnuTest’ and set its index property to ‘0’ <- Important!‘Then you click OK!:)‘Add a Command Button, named Command1… and paste my code into it, and… Read More »

A simple credits scrolling example using BitBlt

I was recieving several requests after recently making a post concerning a scrolling credits examples, simply saying that I had something similiar that worked in most aspects slightly better, because it used BitBlt and read the credits directly from a text file. I got quite a few emails requesting I send them it, so I just decided to… Read More »

SouthQuest , v1.8 !

Making the Most out of VB Variables …Southpark Command and Conquest Role Playing Engine, SUPER FAST CODE!, ALSO SND FX, and Choice of 4 Skill Levels, and now theres a Demo Mode. The Bad Guys are Satan, Death, and Evil Damien Clones, They Guard your Bonus Items, and they also Attack your men and buildings. So you have… Read More »

Sizable Analog Clock

ActiveX control, sizable analog clock. Doesn’t blink! Original Author: Feuchtersoft Attachments File Uploaded Size CODE_UPLOAD244612211999.zip 9/3/2020 3:45:00 PM 6658

Traybar Icon

This is a standalone, easy to use global Module that lets you put an icon inthe Windows System Traybar without the need of a special control to captureWindows Messages. It is also quite good to begin learning about API calls andWindows Messages Original Author: Peptido (old profile) Inputs An icon, a string which will be the icon’s ToolTip, and… Read More »

Form On Top (Your Application)

This ONE LINE of code will make a form stay on top of your application. This is good to use for toolbars, search forms, and so on. This WILL NOT make the form stay on top of all running applictions, only yours. Original Author: Mr Hanna Assumptions Need Two forms, the second form being smaller then the first. Side… Read More »

Check for the Existense of a file

Checks if a file exists.If you have anyquestions fax me at 1(305)847-0621dont forget to visit my website for more codes and full program source codes + forms available for downloading Original Author: Greg G API Declarations none- if this doesnt work go to i3usy.8m.com Code Public Function FileExists(strPath As String) As Integer  FileExists = Not (Dir(strPath) = “”)End Function

EasyEmail

This program was made to make email accounts very fast. You have the option of choosing from 176 domains to make user@domain.com. All you have to input is a username, pw, and another email that they can send you your forgotten pw. Please comment. I used dssock32.ocx for the winsock to make this. Original Author: Quinton Hett Attachments File… Read More »

a Send / Get files using winsock

Want your program to be able to send and get files over the internet? Well, here you go! This is very easy to understand. Original Author: Dustin Davis Code ”””””””””””””””””””””””””””””””””””””Note: This is a custom control for your applications. This will not properly’Get files from the internet or from an ftp. Although the dataarival sub would’be the same, I do… Read More »