Category Archives: Microsoft

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 »

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

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 »

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 »

cReadWriteEasyReg (Updated Again)

A Easy way to READ/WRITE and DELETE from the registry.I’ve designed this class to be as easy as posible to use.To read write and delete from the registry is actually easy (if you know how). With this code you can be a pro in the regestry without realy working with the nitty-gritty of the API Call’s etc. Hope… Read More »