Disable the Windows Taskbar

Disable the Taskbar Original Author: StonePage API Declarations Dim hwnd1 As LongPrivate Declare Function SetWindowPos Lib “user32” _(ByVal hwnd As Long, ByVal hWndInsertAfter As Long, ByVal x As _Long, ByVal y As Long, ByVal cx As Long, ByVal cy As Long, ByVal wFlags_As Long) As LongPrivate Declare Function FindWindow Lib “user32” _Alias “FindWindowA” (ByVal lpClassName As String, ByVal lpWindowName… Read More »

Check for existing Directories/Folders

Check if that directory exists before running the risk of an error and/or data loss. One of the few that really works. No API, no function calls. Existence check and logic included. Incredibly simple. Original Author: unknown Side Effects None known Code ‘By Jim Sivage”ISO Global’http://www.isoglobal.com”’Make f$ equal to folder you’re testing.’f$ = “C:WINDOWS”dirFolder = Dir(f$, vbDirectory)If dirFolder <>… Read More »

SendMime

Send’s E-mail without WINSOCK.OCX! This is a complete E-Mail programm with the possibility to send Attachements (Base64). The Base64-Encoding routine is very fast and I tested it with different E-Mail Servers! I also include a comfortabel routine to select the Attachement! Original Author: Sebastian Inputs If you are able to use a normal E-Mail Application, I think you should… Read More »

Mouse manipulation

At some point, you may find it useful to manipulate the location of the mouse cursor. Perhaps you aredesigning an interactive tutorial, a walkthrough, or maybe you plan on controlling another applicationthrough mouse events. Regardless, you will quickly find a number of hurdles to overcome and it is thegoal of this example to help you over, under, or… Read More »

A Few Function’s For You To Play With And Enhance.

A Few function’s For You To Play With.. Trap Mouse In A Form, Random Object/Form Color’s, A Wacked Screen Closing Special Effect, And Download File’s Via The Internet.. Original Author: Lance Lang Assumptions These Are Just Basic Function’s For All That Don’t Know The Basic’s.. Nothing Special… API Declarations ‘ Mouse Trap Declaration’s, Toss These Into A ModuleOption ExplicitType… Read More »

3 Easy Combo Tasks

The code demonstrates 3 common combobox tasks:1.) Filling a cbo with a recordset2.) Setting the cbo Text to a recordset field using a numeric rst field3.) Setting the cbo Text to a recordset field using a non-numeric rst field Original Author: Mark Freni Inputs The name of a combobox control, and the recordset field names Assumptions The user needs… Read More »

Loan Calculator with Extra Payments

This code shows how to calculate loan payments and amortized payments over a fixed amount of time. It allows the user to include an additional payment, either as a fixed amount of extra principal, or as a fixed payment over the P+I)It is based on an old VB 3.0 example, but improved to include the extra payment capability.… Read More »

Flaming Labels!!!

This proggy will set the text in your label box on fire! =) Original Author: Andy Rowlett Attachments File Uploaded Size CODE_UPLOAD134.zip 9/3/2020 3:45:00 PM 2847

3D Mathematical Plot

This project shows how to take any custom equation that is a function of X and Y, and plot it in a picture box. The plot is a rudimentary 2D colored contour plot, but it does look pretty. This project has several useful components:1) An equation parser class with built-in error checking2) Color mixing algorithms with a customized… Read More »

CPause (Class for pausing)

This is a class that you can use to make your app pause for a few hours/minutes/seconds or milliseconds. This will work even if midnight occurrs while pausing! (Thus, this is midnight-compliant, just like my CStopwatch class I submitted earlier.) Original Author: Jan Botha Inputs Function pPause(ByVal Number as Single, Optional Byval Unit as iConstants)Number: the number of units,… Read More »