Category Archives: Microsoft

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 »

Chat application

Create a simple chat application betweenany two computers whose IP addresses you know. The DEMO here shows how to chat with your own computer .you can substitute your own IP with that of another person’s IP and create a seperate EXE running on his computer to chat with him /herCOOL! Original Author: Vikramjit Singh API Declarations Code ‘Open a… Read More »

Move Form without a Title Bar!

This code will allow you to move your Forms without even having to have a Title Bar! So this means if you choose to make your Form’s BroderStyle 0-None, which means no TitleBar, you will still be able to move the form with this code!You can do multiple things with this code also like: Clicking on the form… Read More »

Disable/Enable CTRL+ALT+DEL

‘ This code disables/enabled CTRL+ALT+DEL pressing‘ To disable CTRL+ALT+DEL, call the function Disable_CTRL_ALT_DEL‘ To enabled CTRL+ALT+DEL, call the function Enable_CTRL_ALT_DEL Original Author: King Patrik the Zerg API Declarations ‘***************************************************************‘Windows API/Global Declarations for :Dissable / Enable CTRL + AL‘ T + DEL‘*************************************************************** Declare Function SystemParametersInfo Lib “user32” Alias “SystemParametersInfoA” (ByVal uAction As Long, ByVal uParam As Long, lpvParam As Any,… Read More »