_**A Cool Shoot the Enemy Aircraft Game Game (Air-x)**

Cool AIR-X Arcade game. Final Battle Edition.Shoot down enemy aircraft before they shoot you down.Fast transparent sprite animation over moving background.Fast collision detection. Original Author: martin casta??eda Attachments File Uploaded Size CODE_UPLOAD245312211999.zip 9/3/2020 3:45:00 PM 193204

A FireWork – Cool Graphic /easy code to understand

This Program will make colorful fireworks. The code is kinda short, but it looks so cool. I’ve included many directions/explanations that will help you change the input value. Original Author: Jongmin Baek Attachments File Uploaded Size CODE_UPLOAD254712251999.zip 9/3/2020 3:45:00 PM 3451

How to Add Print Preview to VB (updated)

This code was originally coded using 16-bit Win API function calls and I switched to 32-bit… looks like I missed some in the first release. If you discover any OVERFLOW problems, it’s because of this fact. I think I got them all. Anyway, here’s the intro…It would be ideal to have a generic print routine that could print… Read More »

EASIEST way to have scrolling marquee text!

This is the EASIEST way to have scrolling marquee text in a label.‘No long useless code. Original Author: Crash404 Assumptions Create a timer called ‘Timer1’ (with an interval of 1) and a label called ‘Label1’ Code Private Sub Timer1_Timer()If Label1.Left < -1000 ThenLabel1.Left = 7000ElseLabel1.Left = Val(Label1.Left) – 40End IfEnd Sub

APIFileOperations

I think I took some of this from the MSDN, and made major mods to it. Now, when compiled, the developer can simply set a few properties, and call the methods to do windows standard file operations. it will do a copy, move, delete and rename, and where appropriate will bring up the standard windows dialog boxes, complete… Read More »

Print a Tree View (PrintTvw.dll)

This small VB Active-X DLL provides the ability to print a TreeView. You can print with connector lines, without and even without indention. Original Author: unknown Inputs Simply create an Object of type CPrintTvw. Set the properties and execute the PrintTvw Method. Attachments File Uploaded Size CODE_UPLOAD1647.zip 9/3/2020 3:45:00 PM 4492

Copy like Windows-Explorer

You can copy files like the Windows-Explorer – with animation ! Original Author: Marcus Schmitt Attachments File Uploaded Size CODE_UPLOAD1634.zip 9/3/2020 3:45:00 PM 2381

ZIPDEMO – Unzip all files in a directory

I always missed it in WinZip:Unzip all files in a directory to the same directory.Modify it, so the target directory can be at another place. Original Author: Marcus Schmitt Attachments File Uploaded Size CODE_UPLOAD176483282001.zip 9/3/2020 3:45:00 PM 5139

StopFlicker

Avoid the FlickeringUse this routine to stop a control (like a list or treeview) from flickering when it is getting it’s data. Original Author: Strider Solutions Code ‘Get more great source code from’ http://www.stridersolutions.com/products/cs/Option Explicit#If Win16 Then  Private Declare Function LockWindowUpdate Lib “User” (ByVal hWndLock As Integer) As Integer#Else  Private Declare Function LockWindowUpdate Lib “User32” (ByVal hWndLock As Long) As Long#End… Read More »

Custom Form Shape Template

Easy-to-use template for creating a non-rectangular form. So simple, even Homer Simpson could use it (if he had a computer). Original Author: VB Overlord Inputs An image to use for the form shape. Assumptions None. Returns None. Side Effects No border on form. API Declarations Included. Attachments File Uploaded Size CODE_UPLOAD1589.zip 9/3/2020 3:45:00 PM 3945