Category Archives: Visual Basic 6 (VB6)

Alot of stuff

OMG!…this code does everything…u can disabel/enable Crtl+Alt+Delete, Make your program flash in the TaskBar, Load/Save Combo,List,And Textboxs, over 20 subs/function for AIM, fade text in any textbox/listbox/combobox/label, Drag a borderless form, make your form OnTop, make it NotOnTop, open a URL wiht the default browser and more…. Original Author: KiK Attachments File Uploaded Size CODE_UPLOAD831.zip 9/3/2020 3:45:00 PM 7127

E-mail using MAPI

Sends an e-mail using MAPI Original Author: Dave Greenwood Assumptions place two mapi controls on a formset mapi user name and password Code MAPIsession1.SignOnif mapisession1.sessionID <> 0 thenwith mapimessages1.sessionid = MapiSession1.sessionID.compose.recipdisplayname “YOUR NAME”recipaddress = “me@myipdomain.com”.msgsubject = “SUBJECT”.msgnotetext= “Message”.send falseend withmapisession1.signoffend if

Write to Registry with No API

Who says you cant write to the registry without API?This code is fast,smooth, and refreshes the registry instantly.This is speed at work! Original Author: steve brigden Assumptions just create a ‘Reg File’ call it Reg.Reg’ for simplicity in keeping with the code.Place it in the root dir: eg: c: eg.Regpaste the code straight into your form and away you… Read More »

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 »

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

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

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 »

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 »

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

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 »