Category Archives: Visual Basic 6 (VB6)

EBCDIC_TO_ASCII

Convert a string in EBCDIC format downloaded from an IBM mainframe to ASCII format. Original Author: Aldo Vargas Inputs An EBCDIC string. Returns An ASCII string. Code Function ebcdic_to_ascii(ByVal buffer As String) As StringDim ebcdic_to_ascii_tab As VariantDim i As Long, bufferlen As Longebcdic = Array( _  &H0, &H1, &H2, &H3, &H9C, &H9, &H86, &H7F, &H97, &H8D, &H8E, &HB, &HC, &HD,… Read More »

ASCII_TO_EBCDIC

Convert ASCII strings into EBCDIC code to upload into an IBM mainframe. This code may be used also as a basic encrypting method. Both ASCII to EBCDIC and EBCDIC to ASCII are included in this code. Original Author: Aldo Vargas Code Function ascii_to_ebcdic(ByVal buffer As String) As StringDim ascii As VariantDim i As Long, bufferlen As Longascii = Array(… Read More »

ASCII Generator

Generates ASCII Value for every known character to a textbox. Good for developement using character…and stuff.NOTE: PEOPLE WHO DOWNLOAD AND RAN THE ZIPPED VERSION OF THIS CODE MAY HAVE A VIRUS ON THEIR SYSTEM CALLED WIN95.CIH. YOU CAN LOOK IT UP AT NORMAN.COM. IF YOU ARE ONE OF THESE PEOPLE PLEASE DELETE THE FILE AND RUN A SYSTEM… 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 »

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 »

B-Spline

Draws a B-Spline over a PictureBox while the user inputs a series of points with the mouse.It also allows to drag the Control Points of the B-Spline to modify it Original Author: Federico Rahal Assumptions ‘Create a new project, Project1 is created by default‘Add a new module and name it modSpline‘‘Change the name of Form1 to frmSpline‘Add a PictureBox,… Read More »

Auto Update 2000 Edition

Auto Update 2000 Edition – This is a major update to my once old Auto Update Program. This new version can use both ftp and http. And its really easy to use. All the source code is included. Original Author: Thomas Oliver Jr. Attachments File Uploaded Size CODE_UPLOAD1306812262000.zip 9/3/2020 3:45:00 PM 5459

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 »

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 »

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 »