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 »

MaceNET – A fully functional Telnet Client!!

A fully functional Telnet Program designed to give you ease of use and solve your remote access problems. Original Author: Happy Lobster Assumptions ‘‘….—‘ HERE’S WHAT TO DO ‘—-….‘| it may seem long but its worth it |‘|___________________________________|‘‘Making MaceNET for yourself, sorted by ease of use:‘‘1. > Download the VB5 project from:‘‘ http:\www.geocities.comSiliconValleyHub3944‘‘ It couldn’t be simpler than that!‘‘or‘‘2.‘‘… Read More »

Getting the User Name

By calling this function you can retrieve the current user name on that computer. Enjoy! Original Author: Mike-Ejeet 9t9 Code Place the following code into a module:Private Declare Function GetUserName Lib “advapi32.dll” _      Alias “GetUserNameA” (ByVal lpBuffer As String, _      nSize As Long) As LongPublic Function UserName() As String  Dim llReturn As Long  Dim lsUserName As String  Dim lsBuffer As String    lsUserName = “”  lsBuffer =… Read More »

Base 2-36 conversion

Converts a number from base 2~36 to a number of base 2~36 Original Author: Joseph Wang Assumptions use all lower case if passed base 10 Code Option ExplicitPrivate Function dec2any(number As Long, convertb As Integer) As String  On Error Resume Next  Dim num As Long  Dim sum As String  Dim carry As Long    sum = “”  num = number    If convertb > 1 And convertb <… Read More »

Resize Controls

This will show you how to Resize Control on a Form Regardless of how many controls there areLimitations areMenus cannot be resized along with controls such as CommonDialog. Original Author: Anthony McLaughlin Attachments File Uploaded Size CODE_UPLOAD243012201999.zip 9/3/2020 3:45:00 PM 50191

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 »

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 »

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

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 »