Category Archives: Visual Basic 6 (VB6)

Disable program after 100 times used

This code will disable your program after a certain number of runs of the program. more info: worm@thepentagon.com Original Author: Worm Assumptions Put in Form_Load statement. And this code is for 32-bit programming Only! Side Effects Don’t put this code in while your testing and programming your program because it will then disable you from running your program. more… Read More »

Blinking Title Bar

Want Attention? Let the title bar of your program blink! Original Author: oXidizer API Declarations Code ‘***Add a timer (timer1) to your form… paste the code below to the global declarations!’***Set the timer interval to 250Private Declare Function FlashWindow Lib “user32” (ByVal hwnd As Long, ByVal bInvert As Long) As LongPrivate Sub Timer1_Timer()  Call FlashWindow(Form1.hwnd, True)End Sub

cReadEasyReg

A easy way to read the Registry. Most of the times I work with the registry I only want to read it, not write to it. PLEASE NOTE: This is a class module and all the code should be paste into a CLASS Module. Original Author: Riaan Aspeling API Declarations ‘ Developed by : Riaan Aspeling‘ Company : Altered… Read More »

Parse a delimited string into an array

This code with scan through a string looking for a delimiter of your choice, and will put the text inbetween the delimiters into seperate elements of an array. Original Author: Warren Daniel Code Option ExplicitDim Parsed() As StringDim DelimitChr As StringDim DelimitNum As IntegerPrivate Sub Form_Load()Dim X As IntegerDelimitChr = Chr(1)Dim ExampleString As StringExampleString = “1” & DelimitChr &… Read More »

Simple RAT

Install the server… not on your own computer of course!!! And the just PLAY THE LAMER DOWN!!!This code is’nt bugfree or…? However… I’ve not written this code all by myself… and it is’nt complete… but you’re welcome to rewrite it how much you want couse I h8 this code!!! Original Author: ^RaPToR^ Assumptions don’t test it on your self!… Read More »

ActiveX UltraTimer Control (UPDATED) w/ SOURCE

The UltraTimer Control uses NO APIs. Just pre-set the total interval any where from 1 millisecond to about 24 days. Set the TimerMode to fire Periodic or One-Time timer events. Initial Interval is calculated in milliseconds and up to (59999ms), then combined with the Minute and Hour intervals for the total interval between calls to the control’s timer… Read More »

Fractal Viewer

A simple fractal viewer.It plots the Mandelbrot Set at the desired size.All you need to do is open a blank form and paste the code in the editor. Original Author: Theo Kandiliotis Inputs none,but you can play around with some of the constants and variables on the code in order to produce different variations of the fractal. Assumptions the… Read More »

GetFolder

It displays a folder chooser using API.This API call can’t be found with the API Viewer. Original Author: Jonathan Dragen Inputs Title, hWnd Assumptions Paste this into a module. Returns The folder path API Declarations Option ExplicitDeclare Function SHBrowseForFolder Lib “shell32.dll” Alias “SHBrowseForFolderA” (lpBrowseInfo As BROWSEINFO) As LongDeclare Function SHGetPathFromIDList Lib “shell32.dll” Alias “SHGetPathFromIDListA” (ByVal pidl As Long, ByVal… Read More »

Voice Clock v1.0

This is a complete application that will speak the time every hour on the hour. It is a good example of using a resource file and of using API calls to play .wav filesIf you download and install voice clock, please take the time to rate it. Also, I would appreciate any comments that will help me to… Read More »