Category Archives: Visual Basic 6 (VB6)

mAboutDialog

How would you like to have your own About menu option on the little system menu on the top left-hand corner of your form. I whould , so I wrote a module to do it with one line of code from the Load event on my form. For this code to work you have to create a About… Read More »

TextCode

Open/Save/Undo/Cut/Copy/Paste/Delete/Clear/Find/Find NextI write this code becouse i know there is some beginer who nead help whit Text manipulatin, like I do when i start programing (1996)… so I write this … Original Author: Josip Habjan Attachments File Uploaded Size CODE_UPLOAD3293282000.zip 9/3/2020 3:45:00 PM 5276

Make a Transparent Area (Any Size) in your Form

This function create a transparent area of dirrent shape (such as rectangle, Circle)in your form, you specify where and how big the hole is. Unlike most other trnsparantroutine, this one not only let you see trough it, but also allow you total accessaccess the things in the hole!!! Of course, You can make the entire form transparentor make… Read More »

Capture Screen or Active Window

This function capture the screen or the active window of your computerProgrammatically and save it to a .bmp file. This may allows you to get another machine’sscreen through network!!! Fully tested in VB5. Original Author: Dalin Nie Code ‘1: Declare’ This should be in the form’s heneral declaration area.’ If you do it in a module, omit the word… Read More »

Stored Procedure Generator

Stored Procedure Generator for SQL Server 7.0 Original Author: Rodrigo Prenstteter Assumptions Stored Procedure Generator for SQL Server 7.0Program is self explanatory Returns Text generated Attachments File Uploaded Size CODE_UPLOAD3288282000.zip 9/3/2020 3:45:00 PM 24620

Lan Chat 32 v2.0 w/Source & Working Prog

Here is the Updated version of my ooriginal submission Lan Chat 32 *Complete* With updates such as Compact View, IP list, Better GUI, Listen on Load, and others. I am currently working on adding Bold, Italic and Underlined text as well as being able to send colors and a multiple connection interface. (Removed last submission, upped the wrong… Read More »

Picture Commands

This includes the source code for Rotating a Picture 45 Degrees, Flipping a Picture Horizontally, and Flipping a Picture Vertically! Very usefull if your working on your own picture editing program.Questions: mikecanejo@Hotmail.com Original Author: Mike Canejo Assumptions ‘Please follow these simple steps. DONT SKIP ANYTHING!‘1.) Make a New Project in your 32bit Visual Basic‘2.) Add a New Module(Module1.Bas) to… Read More »

SQLDate

Dates in SQl queries often cause problems, as the date must be in the ANSI format whereas dates brought back can be in a different local format. This function simply returns the date in the required format and save having to type Format(DateString, “mm/dd/yy”) every time. Original Author: James Wilson Inputs The date to be processed as type DATE.… Read More »

UUencode/decode in VB (c) 2/5/2000 by Alien3333@ya

‘==================================================================================‘ UUencode/decode in VB (c) 2/5/2000 by Alien3333@yahoo.com‘ A small utility that uuencode and decode with a easy standard M$ GUI‘‘ Well, I put this together in my 2 day vacation to celebrate Chinese New Year !‘ All codes are standard as possible, ignore some of my clumsy C-style codes =)‘ This small application show how to use… Read More »

Drop Menu for icon in System Tray

Easy Code here: Place an icon in the System Tray and have a drop menu appear when you click the icon with the right-mouse button. If you already have code with bitmaps in your menu, just add this code to your project! This code DOES WORK, just be careful and follow the tips. Then slap yourself for other… Read More »