Category Archives: Microsoft

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 »

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 »