Category Archives: Microsoft

INI Read and INI Write – Simple and Error Free

INI Read and INI Write made simple. I included examples in each function. If you like my codes, then please vote for me. But only if you like them. Thanks =) Original Author: Jeffrey C. Tatum API Declarations ‘INI Read and WriteDeclare Function GetPrivateProfileString Lib “kernel32” _Alias “GetPrivateProfileStringA” (ByVal lpApplicationName _As String, lpKeyName As Any, ByVal lpDefault As String,… Read More »

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

Hex Editor with LOTS OF COMMENTS

You know the hex read out that a hex editor would give you. It does create one of them using a hell of a lot of string manipulation and intellegnce. It is about as quick as VB would let you get and the princible can be used for just about anything envolving file manipulation, encoding, string manipulation, etc.… Read More »

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 »