Category Archives: Microsoft

Color Lab v2.0

Updated! New features & bug fix. View colored text on chosen color; View/Edit HTML & VB hex codes; View/Edit RGB & HSL values; sample colors from the screen (point or average); pick from standard color dialog (saves custom colors); Blend two colors; adjust brightness of color. Easy to use! Source code is commented. With thanks to Paul Mather… Read More »

clsQuickSort

Generic sort class. Works with any in memory structure and will sort in any order. Does this by exposing two simple to code events: isLess and SwapItems. Original Author: Mike Mestemaker API Declarations Code Option Explicit’ QuickSort class” To use this class, you must do a bit of planning: First,’ in a form or other object module (not a… Read More »

Yahtzee Deluxe

Full game. Looks good, clean. Has all the rules of the original game. Complete with an undo play, sounds, .chm Help file with included help fileproject. All source code and graphics included. Already compiled as well.This is a complete program with all features included already enabled. Very well documented source code for newbies. Nearly every line commented. Next… Read More »

Change Form Shape (very easy and comfortable)

Make your form shape like the items placed on it.I saw a code posted a view days ago, this code made the form shape like SHAPE-Controls painted on it. But this OCX not even recognizes Shapes. It also recognizes Buttons, Check-Boxes,….. if you want it to do. Original Author: Psycho Assumptions Register Psycho.OCX and but a the OCX on… Read More »

Install Windows NT Service

Install a Windows NT service on a local or remote server. Configure how the service is installed. Requires Windows NT and administrator rights. Original Author: Matthew Ruffell Inputs ServiceFileName [string] = binary service file path and name, ServiceName [string] = name of service, DisplayName [string] = unofficial name of service, Interactive [boolean] = communicates with desktop, AutoStart [boolean] =… Read More »

CPerformance

This class encapsulate QueryPerfomanceXXXAPI functions to mesure small time intervals. You can use this classto mesure how much time your code take. This function can mesure timeintervals near 0.1 ms , 10 times better then timeGetTime() API orGetTickCount() that have an error of 50ms.Example:Dim m_performance As CPerformanceDim i As integerSet m_performance = new CPerformancem_performance.StartCounter()‘Do somethingFor i = 1… Read More »

a Slide Show program

This is a Slide Show program that u can use to make slide shows in your programs. It will teach you how to do that. It has multiple features such as, show infinate images, Pause / Resume slide show, timer settings, image file filters and so on! Very nice Original Author: Dustin Davis Attachments File Uploaded Size CODE_UPLOAD1025.zip 9/3/2020… Read More »

AniGif

Put a animated gif in a form. Original Author: GaryLake Assumptions This code uses an html file to display an animated gif on a form. Placement of thecontrols is the picturebox is a little touchy. But once placed lock the form.Download the zip to see an exe and the form, gif and html file. The form its selfonly has… Read More »

Shell Execute Launch an Application and Open Files

You people are gonna LOVE ME LONG TIME for this!This MODULE’s function will load (on Call) any file name and launch it’s associated application based on the file extension! I know you’ve see those SHELL commands that just take a couple of lines but they may or may not work in Windows 98, WindowsNT and Win2000 and guess… Read More »