Category Archives: Microsoft

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 »

CollectionPlus ! (See VERSION 2)

‘In replacement of existing Collection in VB‘SEE MY NEW VERSION ! Original Author: Rick Inputs ‘Same as Collection Assumptions ‘CollectionPlus his based on existing Collection, but you can ask question like‘ifKeyIsThere ou ifItemIsThere , returns True or False.‘A Public Event Error is available.‘It’s a very simple code but useful !‘In my next version i’m gonna handle Item,Key and Group‘so… Read More »

Fading backcolor

Make the backcolor property of a form acts like a VB-Setup Program Original Author: Henrik Jacob Udsen Code Option Explicit Private Sub Form_Paint()Dim lngY As LongDim lngScaleHeight As LongDim lngScaleWidth As LongDim WhatColor As String ScaleMode = vbPixelslngScaleHeight = ScaleHeightlngScaleWidth = ScaleWidthDrawStyle = vbInvisibleFillStyle = vbFSSolidFor lngY = 0 To lngScaleHeight  FillColor = RGB(0, 0, 255 – (lngY * 255)… 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 »