Category Archives: Visual Basic 6 (VB6)

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 »

Expression Evaluator (that is – STRING CALCULATOR)

Ever wanted to have a program, that will calculate the value of a given expression? (like you give it “2*3^sin(2)+23/(2*Abs(-8.5)” and it returns the value). Well HERE IT IS – My ‘EVALUATOR’ class. You may search all over, noone will give you such source (at least I didn’t find). 🙂 (‘Eat MY code…’:)—Also, read the README.TXT File in… Read More »

Address Book Update

Heres the update to my Address Book Example that pulls it information from anAccess Database. I finally added the search and delete functions because I got tired of getting email from people asking me to write the update. 🙂 Sorry it took so long but I’ve been busy opening up my office… Email any questions you have or… Read More »

Simple Email Send

While browsing through the files on this site, I noticed that most listings that dealt with sending e-mail using VB used the Winsock Control. I recently wrote a small demo for a customer that reads a database file, and then sends it to an email address. This code requires that you use the MAPISession Control as well the… Read More »

A huge tip: Visual Basic Scripting Host

This tip is the most powerful bit of code I’ve ever come across. It will act as an exe but with no need to compile. However you must have either Win 98 or IE5 for it to work Original Author: Tmess Code First open up notepad and simply write:Msgbox “HI”Now save the text file. In windows explorerfind that text… Read More »

*Improved* GoAway Screen Wipe

I just quickly improved this screen wipe function written by Jesse Foster.It runs a bit smoother and is usable as a function for any form. Just drop it into a module. Also, I made it work so that it is ‘public’ not private. Original Author: Jono Spiro Inputs ‘Screenwipe form to wipe, speed‘example: screenwipe form1,100 Code Public Function screenWipe(Form… Read More »

Smooth scrolling marquee text (without API)

With this code you can scroll text smoothly in any direction without needing any API calls. All you need is a PictureBox control, a Label control, and a timer.The code is fully commented and has examples for scrolling in the four main directions. Original Author: Russ Suter Assumptions Create a new project. On the main form create a PictureBox… Read More »