Category Archives: Visual Basic 6 (VB6)

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 »

Puke Invaders: Second Mission

The worst game in the world is back! Puke Invaders: Second Mission features new, faster and stronger enemies, a new power-up, and a whole new mission to play (you need to complete the first one before you can access the second mission). Original Author: Benny Rossaer Attachments File Uploaded Size CODE_UPLOAD226512131999.zip 9/3/2020 3:45:00 PM 108786

OptiDraw

‘OptiDraw’ is actually a pretty descent drawing program. It’s not as good as Microsoft’s Paint, but I like to think it comes pretty close. You can load, save and print images, draw free-hand, draw lines, circles, rectacles, filled rectacles, and more. There are also some tools and filters. I integrated Sneechy’s ‘Instant Art’ program and some other stuff… Read More »

Sort a ListView by Number or Date (Updated)

This code allows a ListView control to be sorted by Number or Date without having to use APIs (except to lock the screen) Original Author: Pete Cozens Inputs N/A Returns N/A Side Effects No known side-effects at this time. Does not mess-up theListItems collection like a Custom API-implemented sort. Code ‘****************************************************************’ ListView1_ColumnClick’ Called when a column header is clicked… Read More »

Address Book by Nagalla Anil Chouary

Hi folks this application haven’t used any databases. You can store images of the concerned easy navigation, sorting, finding with respect to any field, its really nice to maintain your friends and business addresses. Entire source code is available in ZIP format can store web, email, phone, fax numbers also sorting acording to any field and field entry… Read More »

Jumper – The Ultimate in REAL Fireworks.

The purpose of this application is to simulate fireworks in a realistic mannerusing gravity and direction vectors. It can be used as an EXE or a Screensaver.Single click to expode your own firework, double click to quit.The code is not very clear, as it was a quick test. I may comment it andresubit if people require explanation.Andre Powell.… Read More »

CopyFile

Copy a file in binary mode. You can easily implement a prograssbar with the value of the variable “iPercent”. Change the buffer size for various use:SMAPLE: 10240 for normal mode; 2048 for network; … Original Author: Christian Leh Inputs Sourcefile and Destinationfile Returns Return True or False and internal the var “iPercent” for an optional progressbar Attachments File Uploaded… Read More »