Send SMTP E-mail using winsock
Send E-mail without borrowing another programs interface……Even send it in the background with one line of code. Original Author: dcroft Attachments File Uploaded Size CODE_UPLOAD1084.zip 9/3/2020 3:45:00 PM 4979
Send E-mail without borrowing another programs interface……Even send it in the background with one line of code. Original Author: dcroft Attachments File Uploaded Size CODE_UPLOAD1084.zip 9/3/2020 3:45:00 PM 4979
Toxetris is a version of the classical game, TETRIS. The difference is that, the pieces are sliding, not jumping to the next square. Also you can pull down faster. It is a one week project.All the files are accesible. You can change them.The sliding pieces bring some problems: Most of the time, I have to check more positions… Read More »
Here is somethig to make you smile!This program consists in TWO MOVING EYES THAT FOLLOW THE MOUSE CURSOR on the screen, telling you what window is under the cursor.The animation IS SO COOL THAT THE EYES EVEN BLINK! Original Author: Pedro Lamas Attachments File Uploaded Size CODE_UPLOAD1090.zip 9/3/2020 3:45:00 PM 15066
Populates a collection of installed Windows NT services, based upon type of service requested. Can be used to enumerate the services on a workstation or server. Requires Windows NT and administrator rights. Original Author: Matthew Ruffell Inputs SVC [output collection] = the collection to polulate, DisplayName [boolean] = return display names or service names. Assumptions Requires Windows NT and… Read More »
Returns the time of day from a Windows NT workstation or server. Accounts for time zones. Requires Windows NT. Original Author: Matthew Ruffell Inputs ServerName [string] = name of target server. Assumptions Requires Windows NT. Returns Return the time of day. Side Effects Noen. API Declarations Private Type TIME_OF_DAYt_elapsedt As Longt_msecs As Longt_hours As Longt_mins As Longt_secs As Longt_hunds… Read More »
Have you ever worried about a trojan running on your machine and hiding itself from the Ctrl Alt Delete window. I have created a program that acts like the Ctrl ALT Delete BUT you can’t hide an EXE process from it. The app includes: Listing all active process, shows the path to the EXE, is it responding, and… Read More »
Takes a roman number and convert into decimal. Original Author: Francesco Meani Inputs Inputs a roman number. Returns Returns a decimal number. API Declarations Code Option Explicit’Valid roman numerals and their valuesPrivate Const M = 1000Private Const D = 500Private Const C = 100Private Const L = 50Private Const X = 10Private Const V = 5Private Const I =… Read More »
An OCX that Resizes controls on a form that is resized. This OCX also has a property to change fontsizes. You can also (through a controls TAG) tell the OCX to NOT resize certain controls… Original Author: Timothy J. Ward Attachments File Uploaded Size Resizer_OC14590910142002.zip 9/3/2020 3:45:00 PM 8865
Takes a string array and sorts it alphabetically. This can be used to sort a listbox without the sorted property set to true. The code is heavily commented. Original Author: Joseph Huntley Inputs strArray()strOne, strTwo Returns A string array that was edited by reference1 or 2 Side Effects n/a Attachments File Uploaded Size CODE_UPLOAD1065.zip 9/3/2020 3:45:00 PM 3799
This code demonstrates some techniques you can use to create a demo or shareware version of your app, based on the installation date and/or how many times the program has run.It features a copy protection: the user sends you a code, and you pass him a registration code to unlock the app, making it a “full” version. Original… Read More »