Category Archives: Visual Basic 6 (VB6)

Place an Object in the Center of your Screen

This will take an object on a form, and place it in the center of the screen. Good for password protection programs that take up the whole screen, this will ensure that an object that you want in the middle of the screen, will remain there for any resolution. Original Author: Jeffrey C. Tatum Code ‘Place this in a… Read More »

ScrollKeys

This is a simple demo on how to implement the use of the keyboard’s arrows keys to scroll a picture box.It also shows how to set the Max property of the scrollbars in order to work properly. Original Author: Raul Lopez Attachments File Uploaded Size CODE_UPLOAD6420642000.zip 9/3/2020 3:45:00 PM 43119

EzColorCode – Html Syntax Highlighting

This is an example application that demonstrates Html Syntax Highlighting. It currently Color Codes Html Tags, Html Attributes, Comments, and ASP Tags in different colors. It highlights when a file is opened, when a user types, and when tags are inserted. It also maintains color coding as a user moves the cursor in and out of a tag… Read More »

File Copy Class with Buffer Support (HOT)

Well, i saw all the submissions on FILE copy, and i decided to share my buffered copy class. Worth a look if you are looking for a screamming fast file copy (excells on large files and floppy disk access – physical reasons:), oh, and before i forget… it has PERCENTAGEREADY support… u can update a label or a… Read More »

CDO E-mail

Purpose: “shows how to …send an e-mail message using Collaboration Data Objects (CDO).” from MS KB Article: Q200150. I created a VB project and a class from the provide code. You will need the Microsoft CDO 1.2 library referenced. Original Author: Pete Sral Attachments File Uploaded Size CODE_UPLOAD34382172000.zip 9/3/2020 3:45:00 PM 4046

FindPhoneNo

This function searches a text string for possible phone numbers and returns an array of those numbers. It allows you to specify a default area code, too. (If you know an easier or more elegant way to do this, let me know!) Doesn’t work for international numbers. Original Author: Brett A. Paul Inputs Text – Text to be searched… Read More »

Visual Net Send

This allows a user to send an instant message to other users on a network. It includes storable “mailing list” capabilties, customizable message “macro” buttons, and an optional customizable message header. Original Author: Donald Olson Inputs Once the program is set up, a user simply selects a predefined recipient from a pull-down box, types in a message, and presses… Read More »

A ‘Dummy’ File Generator

generates a ‘dummy’ file which can be any type and any number of kilobytes. 110% commented just like my code ‘A+ Secure Delete’. purpose is to generate files, so not much of a purpose. i just saw it in a couple of hacking/security programs and thought i’d try it. Original Author: Im_[B]0ReD Code Function GenerateDummyFile(Path As String, LengthInKB As… Read More »

A substitute ‘FileCopy’

i’d imagine this has been done before, but if it has i haven’t seen it. all it is is a substitute for the FileCopy statement. copies a file byte-for-byte to a new destination. 110% commented just like ‘A+ Secure Delete’ And ‘A “Dummy” File Generator’ (both by me). well hope you like this. Original Author: Im_[B]0ReD Code Function CopyFile(srcFile… Read More »