Category Archives: Visual Basic 6 (VB6)

A GOOD WAY TO: Save&Load a Rich Text Box contents!

This code is VERY usefull! It can load a files contents into a Rich Text Box and also save the contents! Original Author: ThUgGy Code ‘Add a Rich Text Box to your project first. Then read below.’To save a rich text box:RichTextBox1.savefile “file.txt”‘To load a rich text box:RichTextBox1.loadfile “file.txt”

Add Wav Files To Your App.

Add Wav Files To Your App. This sample is in .zip formatYou need a versio of Winzip to open it. You can download it @winzip.com Original Author: Mike-Ejeet 9t9 Attachments File Uploaded Size CODE_UPLOAD236312161999.zip 9/3/2020 3:45:00 PM 1438

Spell Checker (uses MS Word)

This code uses OLE Automation to allow VB to open an instance of MS Word if the user has it on their system and spell check the contents of a text box. It could easily be modified to work with any control that has text on it. I would recommend better error control than the On Error statement… Read More »

Create and save into .txt files.

This will create and write into a *.txt file of your choice. Put this code in a timer and you have yourself a keystroke logger. You can save the contents of a textbox into a file also. Original Author: Abdul Kudrath Assumptions Put this code in a button and it will save the contents of a textbox. Code ‘… Read More »

Net-Messenger

This cool little program allows you to send message boxes to a remote computer over a network or the internet. You can change the message type (i.e. exclamation, question, information), the buttons that will be displayed (i.e. OkOnly, YesNo, AbortRetryIgnore). And finally, the result of the button that the remote computer clicks will be sent back to you,… Read More »

Visual Basic Screen Saver Tutorial

Visual Basic Screen Saver walks you through the process of building a screen saver in VB as well as explaining why. From setting up the project to knowing what parameters are passed to a screensaver at run time. Includes the tutorial in windows .hlp format as well as complete screensaver source code. Original Author: Quixotix Software Assumptions This is… Read More »

Slot Poker

Basically, it uses a random number generator to display 3 different cards in the form window. The name says it all “SlotPoker”… I have not programmed any bells or whistles, you can do that if you wish. Original Author: Scott Rosetta Inputs NONE! Assumptions Nothing. This is really simple stuff. Returns A little enjoyment. Maybe! Side Effects NONE! Attachments… Read More »

a simple DataBase Search project for Newbies

This sample project will show you how to easily structure a query to a DataBase.The sample uses the NWND.MDB that ship by default with VB5 and 6 and demonstrates on a searchform how to search on a text from a textBox and use the different comparison operators like =,>,LIKE, etc.NOTE: This is for total newbies that have a… Read More »

FTP Server using the Winsock control

This is a simple FTP server I developed using the Winsock control. Its got a few bugs in it that need to be solved as well as some missing features. But I think you will find this useful. It is more complete than any other FTP servers posted here. Its got plenty of comments so I hope it… Read More »

Count number of lines/returns in a textbox

Simply counts the number of lines in a textbox (the textbox should be multiline=true, otherwise it is pretty useless). Put this in a module so it can be reused. Original Author: Jono Spiro Inputs USAGE–countLines(the textbox)EXAMPLE–countLines(text1) Returns Returns the number of lines in a textbox. Code Public Function countLines(textBox As textBox) As LongDim A%, B$A% = 1B$ = textBox.textDo… Read More »