ButtonCollection.ocx

Found on the web: a collection of four different buttons. FREEWARE !experimented with them –> cool effects, nice controls. Original Author: stephan swertvaegher Assumptions Put the OCX in the windowssystem directory Attachments File Uploaded Size CODE_UPLOAD816.zip 9/3/2020 3:45:00 PM 3349

Amazing Programming Utility Browser

This is an Amazing Tool that do all that:1- Search for *.frm and *.bas on all your drives2- Store files info in an MSFlexGrid3- Retreive all the Functions/Subs from all the files4- Store Functions/Subs info in an MSFlexGrid5- Function, Sub and File Viewer6- Api utilization for search optimization7- Read/Write I/O files treatment8- Dynamic forms demonstration9- Lot more…. !!!Thanks… Read More »

FTP with progress bar

Simple example of an FTP GUI with progress bar indicating progress of thedownload. This is just an example so it may be extended and improved in numerious ways: adding ability to put files on remote server, improving error handling and reporting (practically unexistant now), etc. Original Author: Gilad Shulkin Assumptions Like always in FTP programs connecting without username and… Read More »

List All Active Processes (Class)

List All Active Processes (Class) Original Author: Chong Long Choo API Declarations Option Explicit‘ Name: List All Active Processes‘ Author: Chong Long Choo‘ Email: chonglongchoo@hotmail.com‘ Date: 09 September 1999‘<————————–Disclaimer——————————->‘‘This sample is free. You can use the sample in any form. Use this‘sample at your own risk! I have no warranty for this sample.‘‘<————————–Disclaimer——————————->‘———————————————————————————‘How to use‘———————————————————————————‘ Dim i As Integer‘… Read More »

Microsoft Word MailMerge using Visual Basic

This sample project demonstrates how to do MailMerge using VB and MS Word. Original Author: Drew Assumptions Assumes that you have VB and MS Word installed on your computer. Attachments File Uploaded Size CODE_UPLOAD806.zip 9/3/2020 3:45:00 PM 4548

Get NT User Info (FullName, Groups) using ADSI

Example code showing how one may extract NT Domain User information using ADSI (Active Directory Service Interfaces).This code simply extracts a user’s FullName and lists the Groups to which he/she belongs, given his username.This code will work across domains, provided the correct authentication values (username, password) are inserted. Original Author: Shannon Norrell Assumptions Uses ADSI (Active Directory Services) 2.0… Read More »

A Transparent 3D Sphere & Texture Sphere

This proyect has two parts: 1) 3D Transparent Sphere, and 2) Texture Sphere, WITHOUT OCX, DLL, API,…Enjoy it and I’m sure this will help you to understand 3D Programming.Good Luck. Original Author: Fabiana S. Palacios Attachments File Uploaded Size CODE_UPLOAD798.zip 9/3/2020 3:45:00 PM 2265

Access Stuff From Other Forms

This just shows how to access CommandButton’s, Label’s etc.. from another Command or label. So when you click Form1’s Command, you can actually be clicking Form2’s command. Very useful for shortcuts. Original Author: SeeD Inputs 1. make 2 forms2. make a command button on each form Returns returns the action of the other command button Code ‘So you have… Read More »

KillFiles

I received a request from someone on help with a problem in deletingtemporary files. It seems that they needed to delete all temporary filesexcept for those with the current date. This subroutine was the result, and Ithough it would be good for those of you struggling with how to use the Dir and GetAttrand SetAttr functions in VB… Read More »

A Quick and Easy Error Handler

In just a few easy lines you can a have a easy, error proof error handler for you apps! Plus, NO APIs! Original Author: Erik Hagendorn Code ””IN MODULE!””Sub ErrHandlerErrDesc = Err.DescriptionErrNum = Err.NumberBeepMsgBox “Error number ” & ErrNum & ” has occured because: ” &_ErrDesc, vbCritical, “Error”Exit Sub’Edit the msgbox all ya want to make it fit your… Read More »