Category Archives: Microsoft

HTTP OLE Server

This code provides the basic framework for HTTP services. There is NO functionality built in to transfer files – that’s really not the point of this DLL. If you want to create an HTTP service (for remote function calls, database access, customized web server) you can use this DLL to do it.What’s the differenece between this and ASP?… Read More »

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 »

Winsock

You Ever Want To Do A Program That Connect You With Your Friend, Chat With Them Or Send Them Files, Here’s The Key For You!Just Connect Them In The Server Client And Have Fun! Original Author: Gadi Elishayov Assumptions Put The Patch File To The Friend You Want To Connect And Develop A New Options Attachments File Uploaded Size… Read More »

Sourcecode Notebook

This code is a Sourcecode Notebook. I needed someplace to save all the little snippits of code that I’ve gotten from PSC and others that Ive written myself, so here is the result. Saves the code snippit along with notes about it. Both the code window and the notes window support drag and drop of both files and… Read More »