rtf2html-2.1

This code recieves RTF code as output by a Rich Text Box in VB or MS Word. It outputs the equivalent in HTML. It’s in a somewhat BETA form in that it handles a number of but not all of the possible codes. If you encounter a code it doesn’t properly convert just send it to me and… Read More »

GetWindowSnapShot

This allows a VB program to capture either the screen or the program window.It has been tested under Win95 and NT4.0. It derives from a routine by Dan Appleman (VisualBasic 5.0 Programmer’s Guide to the WIN32 API, page 303) which unfortunately does not work reliably under all conditions. Dan Appleman’s exhaustive preliminary tutorial, though, is all it takes… Read More »

Dedect keypress

This code finds if any key pressed. This will be helpfull for example you’re programming a screensaver. But you can not get keypresses through forms because of some components which does not support this keypress event. So you must use some API’s to do this. Original Author: Huseyin Uslu API Declarations Declare Function GetAsyncKeyState Lib “user32” (ByVal vKey As… Read More »

AOL Password logger

This code goes one step further than the password viewer that I submitted… this code actually logs an AOL password to a file! Here’s how you do it: You run the code. You get someone to sign on(Guest support will be coming soon, but is not yet supported), and once they click connect, their password will be logged… Read More »

RevInStr

Visual Basic 6 has a new function called InStrRev, which searches a string from right to left. I found it very usefeul, so much so that a project of mine relies completely on it. When I tried to work on the project at another location on VB5 I found that the function did not exist. So, I wrote… 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 »

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 »

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 »

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