Read INI

Opens a INI-file and Get the value of ex: “Screensaver=” without using any system calls!!! Original Author: Dan Einarsson Inputs x = ReadINI(“screensaver”, “c:windowssystem.ini”)‘or what ever Returns the value of the keynamein this ex it would be perhaps: screensav.exe API Declarations NONE that is why i posted it!!! Code Function ReadINI(keyname As String, filename As String) As StringOpen filename… Read More »

Faster encryption/decryption with CryptoAPI

This module provides encryption/decryption through the CryptoAPI. This is the standard API you can use regardless of the underlying dll used to do the encryption. These dlls are called Cryptographic Service Providers (CSPs) and you get one as standard from Microsoft called “Microsoft Base Cryptographic Provider v1.0” This module uses the standard CSP, but this can be changed… Read More »

A chart with windows API

Create a chart with windows API, very cool! Original Author: Gino Lollita – Carta VBMan Attachments File Uploaded Size CODE_UPLOAD3189212000.zip 9/3/2020 3:45:00 PM 7804

Flat ToolBar VB5

Flat toolbar with VB5? Now is possible Original Author: Gino Lollita – Carta VBMan Attachments File Uploaded Size CODE_UPLOAD3188212000.zip 9/3/2020 3:45:00 PM 14836

Joystick – Mouse – Thing

This Here chunk ‘o code makes it so you can use a joystick instead ‘o a mouse. up/down right/left do just that, and button 1 is leftclick , button 2 is rightclick. I couldn’t get middleclick to work. Please tell me what you think! Original Author: unknown Side Effects Ummm… about the menu in the traybar, dont hit stop… Read More »

coolbar component 2

like the first coolbar example i posted, this one has professional web browser buttons in a toolbar embedded in the coolbar along with the 2nd row with the URL address window(combobox) Original Author: slee Attachments File Uploaded Size CODE_UPLOAD31771312000.zip 9/3/2020 3:45:00 PM 5257

Error Dictionary

The code is for a program to look up error numbers and find a more easy to understand description of that error. Very good for debuging Original Author: TonysComp Attachments File Uploaded Size CODE_UPLOAD31761312000.zip 9/3/2020 3:45:00 PM 57977

Read DBF structure and Record count

Returns instant record count, structure of DBF files Original Author: Yves Allaire Inputs Fine lame Returns Record count, structure , number of fields Code Function dbfStru(file As String) As Double  Dim fileno As Integer, txtin As Variant, bit(0 To 31) As Double  Dim posRec As Single, recSize As Single, nmbFiel As Single, fieldName As String  Dim fieldlength As Single  Dim test As Single  fileno… Read More »

Simple 1d array bubble sort module

Simply sorts a 1 dimensional array using a bubble sort algorythm. Original Author: Colin Woor Inputs Array to be sorted Returns A sorted array Code ”Use:”Sort Array”to sort (A-Z / 1-10, Accending)’Pretty easy to update it to sort 2 or 3 dimensional arrays’Or to sort decending”Comments or any info email: col@woor.co.uk’Public Sub sort(tmparray)Dim SortedArray As BooleanDim start, Finish As… Read More »

Encryption/Decryption using CryptoAPI

This is a module that you can add to your project to encrypt/decrypt using the CryptoAPI. This is the standard API used regardless of who provides the dll which actually does the encryption. Microsoft give you one such dll as standard with windows or NT, but the API ensures that you have the same interface to anyone elses,… Read More »