Control Arrays Demo
This is just a short example of how to create and use control arrays Original Author: Chris Rose Attachments File Uploaded Size CODE_UPLOAD21601271999.zip 9/3/2020 3:45:00 PM 3215
This is just a short example of how to create and use control arrays Original Author: Chris Rose Attachments File Uploaded Size CODE_UPLOAD21601271999.zip 9/3/2020 3:45:00 PM 3215
Your own homemade picture viewer in ONE minute, supports at least jpg, gif, bmp, pcx & many others Original Author: Happy Coder Inputs nothing Assumptions nothing Returns nothing Code ‘add following code to your formVERSION 4.00Begin VB.Form Form1Caption = “Very simple picture viewer”ClientHeight = 9450ClientLeft = 1140ClientTop = 1515ClientWidth = 11460Height = 9855Left = 1080LinkTopic = “Form1″ScaleHeight = 9450ScaleWidth = 11460Top = 1170Width =… Read More »
Basic winsock connection (TCP/IP) with cool and easy-to-use interface Original Author: Daniel Errante Attachments File Uploaded Size CODE_UPLOAD35.zip 9/3/2020 3:45:00 PM 14949
Working with control arrays in VB3 was frustrating, but with VB4 you can pass a control array as an argument to a function. Simply specify the parameter type as Variant: Original Author: VB Pro Code Private Sub Command1_Click(Index As Integer)GetControls Command1()End SubPublic Sub GetControls(CArray As Variant)Dim C As ControlFor Each C In CArrayMsgBox C.IndexNextEnd Sub Also, VB4’s control arrays… Read More »
This incredible program shows how to create totally realistic fire without using any palettes to create the right color effects! A simple bit of mathematical color manipulation creates a perfectly colored fire effect more realistic and faster then palettes, making for real-time fire animation. The included .exe demonstrates the current max speed of this program, and it will… Read More »
This code allows the user to find the area of circle by clicking a command button and then typing in the radius of the circle. It is very helpful to anyone working on a calculator project. I am also coming out with area of triangle and square. Original Author: Brady Botkin Code ‘ Step 1. Place a command button… Read More »
If you have to add your username or initals tag to each change you make in code, this lets you select a block of text and add it to the end of each line. Original Author: UstesGreenridge Assumptions add this code to the mnuHandler_Click Side Effects It doesn’t delete any old comments that were there. Code ‘this event fires… Read More »
This sample program calls the Windows API to ShellExecute to a file you select. Then it opens the file with it’s associated program, waits for the program to end, and identifies if the file has been changed. Rock ON! Original Author: Drew Attachments File Uploaded Size CODE_UPLOAD3198212000.zip 9/3/2020 3:45:00 PM 9640
Post-it is a desktop notepad the designed to look like the famous stickys. It is drag-drop, transparent, and the choice of always on top (.exe provided is on top). Good for whatever ya want i guess.. Original Author: Josh Banks Attachments File Uploaded Size CODE_UPLOAD3218222000.zip 9/3/2020 3:45:00 PM 4734
This module provides encryption/decryption through the CryptoAPI. This is the standard API you can use regardless of the underlying dll used to do the encryption. These dlls are called Cryptographic Service Providers (CSPs) and you get one as standard from Microsoft called “Microsoft Base Cryptographic Provider v1.0” This module uses the standard CSP, but this can be changed… Read More »