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 »

Example with MS Agent, text-to-speech

Microsoft Agent will speak (computerized voice) the contents of a textbox or richtextbox to you! Original Author: Amir Malik Inputs the text to speak, or just paste it Assumptions components/objects:Microsoft Direct Text-to-Speech controlrich text box2 command buttonsthe sp is the DirectSS controltext box for the computer voice speed Returns sound! Code ‘ MSAGENT example by Amir Malik’ website: http://amir142.cjb.net’… Read More »

Encryption ActiveX DLL (Source Code)

Ever wondered in VB5/6 what the ActiveX DLL does; Ever thought that the MS tutorials were bloated and useless….. Look no further, here is a perfect working example. The complete sorce code to my other submission (Active X encryption DLL (Example)). Original Author: Jack Hoxley Attachments File Uploaded Size CODE_UPLOAD766.zip 9/3/2020 3:45:00 PM 2410