Category Archives: Microsoft

Sorting by columnheaders in listviews

This allows a user to sort the contents of a listview by clicking on a column header in report-mode. Clicking again will sort descending. Original Author: Adam Hansen Assumptions This assumes that a ListView named ‘ListView1’ exists on a form, and that code exists to put values into it. Also, the ListView style-property must be ‘report’.Paste the code into… Read More »

Directory Information

Gets the File Name, Size, Date and Time of all files in a directory and child directories and sends it to either the printer or a text file. Original Author: Bob Iadicicco Returns Either spits out paper from your printer or creates a file on your hard-drive. (default file is C:DirInfo.txt Side Effects Dosent like it when there are… Read More »

Email with attachments

This code allows email to be sent with attachments (any size). A big thankyou goes to all who’s code I have borrowed and ammend to get this to work. Original Author: Middo Inputs See Code Assumptions Unzip Email.zip, Open email.vpb, making sure you register the encoding.dll file – VB Menu – Project – References, then run the app. Returns… Read More »

DirectDraw 7 Tutorial

Updated: 15/07/200 – All Bugs FixedThis is a tutorial that shows the basics of writing graphics using Direct Draw – perfect for the BitBlt API user moving into DirectX. This is just simply source code that is HEAVILY – and I mean HEAVILY commented to help undestand the basics of displaying bitmaps, page flipping, setting to fullscreen mode,… Read More »

SQL2CSV

This program converts any SQL Server table into a CSV text file. Original Author: Jesse Edward Bishop Inputs Sql Server, Sql Database, Sql Table, User Name, User Password, Text file to be exported to. Assumptions Must use SQL user id and password not NT authenticity. Returns It makes a text file from the SQL Database table. Attachments File Uploaded… Read More »

A replacement shell example

It is an example of how you can make applications that replace the windows GUI(like litestep), ie a replacement shell. I noticed as i wnt throught here that there is no example on hot to make your own shell. So i took it up and made my own. Very small, very simple, very easy Original Author: Chris Rose Attachments… Read More »

Code for a basic Pong style game!

Makes a little pong style game Original Author: Matthew Eagar Assumptions Nothin much, just a very basic knowledge of VB programming. Code Dim vmom As Integer ‘holds the ball’s vertical momentumDim hmom As Integer ‘holds the ball’s horizontal momentum Private Sub Form_Load()  Randomize  ‘make the vertical and horizontal momentums random  vmom = 100 + Int(Rnd * 200)  hmom = 100 + Int(Rnd *… Read More »

Access CDDB with VB5

This code reads a CD’s Identification Number and then access the CDDB for a list of Tracks and information about the CD. Original Author: Brian Returns CDDB Information Side Effects Works best with VB6 and could cause VB5 to crash (But it very rarely does that) API Declarations ‘Put the following code in a CLASS MODULE named CCDOption Explicit‘… Read More »

KeySpy 2

It’s my KeySpy program , but improved and with a new look ! RECOMMENDED Original Author: R3|K0 Attachments File Uploaded Size CODE_UPLOAD2070.zip 9/3/2020 3:45:00 PM 6131

Add-In – Task List for VB IDE

I created this VB add-in to help me out when coding projects. I wantedsomething to allow me to add a todo list right inside the VB IDE. Thisaddin shows a listview of tasks with checkboxes for each. The windowwill dock to the IDE, and you can add new tasks by right clicking on thelistview and choosing “new task”… Read More »