* Make Your Own *WAV* Player! *

This is the code to *PLAY*, *STOP*, and *LOOP* WAV files. Its really easy! even for a beginner! You can make your own WAV Player! Original Author: Matt Evans API Declarations Declare Function sndPlaySound Lib “winmm.dll” Alias “sndPlaySoundA” (ByVal lpszSoundName As String, ByVal uFlags As Long) As Public Const SND_SYNC = &H0Public Const SND_ASYNC = &H1Public Const SND_NODEFAULT =… Read More »

* Make your own Active X Binary Control!!! *

* This is the code to put in the General place of you UserControl. By Doing this you can make a Active-X control that Makes Text to Binary, Binary to Text, and to see if a string is Binary! * Original Author: Matt Evans Inputs Text to change Assumptions none!!! easy for beginners! Returns Changed text Code ‘enjoy! ;D… Read More »

DAOTableToHTML

Convert a database table to HTML Original Author: Vincent Zack Inputs DAO Recordset Object Assumptions A reference to DAO x.x Object Library Returns String Code Const T1 = vbTabConst T2 = T1 & T1Const TR = T1 & “”Const TD = “”Const TDEND = “”Const TABLESTART = “”Const TABLEEND = ” “Function HTMLTable(dbRecord As Recordset) As StringDim strReturn As… Read More »

Animated Glass Cube Effect using StretchBlt

This code animates a glass cube moving on a picture in real-time. Almost the same as that Windows 95 screen saver (the moving glass boll). I though this code can help make a screen-saver like that. (You have to e-mail me a copy of that screen-saver please) Original Author: Riaan Aspeling Inputs Create a new form. Place to picture… Read More »

TextCode

Open/Save/Undo/Cut/Copy/Paste/Delete/Clear/Find/Find NextI write this code becouse i know there is some beginer who nead help whit Text manipulatin, like I do when i start programing (1996)… so I write this … Original Author: Josip Habjan Attachments File Uploaded Size CODE_UPLOAD3293282000.zip 9/3/2020 3:45:00 PM 5276

mAboutDialog

How would you like to have your own About menu option on the little system menu on the top left-hand corner of your form. I whould , so I wrote a module to do it with one line of code from the Load event on my form. For this code to work you have to create a About… Read More »

Coolbutton

It’s a coolbutton. 🙂 Those flat things that MS uses now.This one supports setting images for mouse over, mouse down, mouse up, drawing bevels for those 3 states, setting the colours of the bevel, automatically generating the mousedown and mouseup images by varying the brightness of the original, setting text positioning… lots of stuff. Original Author: Dave Hng Assumptions… Read More »

Lan Chat 32 v2.0 w/Source & Working Prog

Here is the Updated version of my ooriginal submission Lan Chat 32 *Complete* With updates such as Compact View, IP list, Better GUI, Listen on Load, and others. I am currently working on adding Bold, Italic and Underlined text as well as being able to send colors and a multiple connection interface. (Removed last submission, upped the wrong… Read More »

Stored Procedure Generator

Stored Procedure Generator for SQL Server 7.0 Original Author: Rodrigo Prenstteter Assumptions Stored Procedure Generator for SQL Server 7.0Program is self explanatory Returns Text generated Attachments File Uploaded Size CODE_UPLOAD3288282000.zip 9/3/2020 3:45:00 PM 24620

Capture Screen or Active Window

This function capture the screen or the active window of your computerProgrammatically and save it to a .bmp file. This may allows you to get another machine’sscreen through network!!! Fully tested in VB5. Original Author: Dalin Nie Code ‘1: Declare’ This should be in the form’s heneral declaration area.’ If you do it in a module, omit the word… Read More »