Category Archives: Microsoft

AutoMailer

A.K.A. The Spam-o-matic. This app uses the Microsoft MAPI Controls 6.0. You must be running Outlook for this code to work. I originally used it as an automatic remailer for a web site. It has been modified to use an Access database to store e-mail addresses of ‘recipients’. The program will only mail ONE message per user as… Read More »

Wordprocessor

Hey all –> This is the first beta of a wordprocessor called “SJOTS Perfect 5” I wrote…you can find the previous versions on my website, but this beta (well, it’s more freeware) works pretty good. It can do almost anything with Rich Text Files (RTF). Please leave any comments how you think about it! 🙂 Original Author: Swift Attachments… Read More »

Making A Splash Screen!!

Load any program and the first thing you see is a splash screen. Splash screens usually display the program’s name along with a graphic of some sort, such as a pen for the Microsoft Word splash screen or the company’s logo for the Procomm Plus splash screen. Original Author: DaMaStA Assumptions At the start of every project you create,… Read More »

A list of Api calls

A list a usefull api calls that i thought people might be able to use. Original Author: Aaron Chaffee Code How do I change the Double click time of the mouse?The double click time is the time between two consecutive mouse clicks that will cause a double click event. You can change the time from your VB Application by… Read More »

text object line info

The first function returns usefull information about text box objects. these include :[Line count] = 0[Cursor Position] = 1[Current Line Number] = 2[Current Line Start] = 3[Current Line End] = 4[Current Line Length] = 5[Current Line Cursor Position] = 6[Line Start] = 7[Line End] = 8[Line Length] = 9The next function returns the text of a given line… Read More »

CopyFileAny

This code allows you to copy any file, including your application to another destination at runtime.Note: This code has only been tested on Windows 98 using Visual Basic 6.0 Original Author: Mike Owens Inputs Input file, output file Assumptions Note: This sub is only useful for copying inaccessable files. For regular files, the “FileCopy” sub should be called. An… Read More »

Active Menu Help Control Version 1.00

Dear Brothers and Sisters,Have you ever dreamed of giving on line help about your menus in status bar as user moves mouse over menus. This feature is available by default in applications developed in VC++ with MFC.Here is a simple solution to all your menu help problems. This amazing Active Menu Help Control for VB 6.00 do all… Read More »

POP3 Mail Read

POP3 protocol client latest release. Usage and full source code. Original Author: Tair Abdurman Code ‘WS_POP3_Conn is winsock component variable’pop3 session state after send LIST command’full source code and usage paper you can find at’http://www.tair.freeservers.comCase 4WS_POP3_Conn.GetData inBuffer2, vbStringinBuffer = inBuffer & inBuffer2If def_mail = 0 Then’Answer on LIST commandIf Right(inBuffer, 5) = CRLF_CRLF Then’OK LIST response terminated  def_mail = def_mail… Read More »

WIN Functions

This is basically for all you prankers out there that want to scare your friends or play jokes on them..In this project I made a Module with Functions that will do many things to your Windows, but never harm it in anyway.Like: Hide/Show or Destroy the Windows ToolBar, Taskbar, Clock, Start Button, Icons in the Systray and more.… Read More »

ChangePrinterOrient

NEW NOTE: FROM VB6 SP4 MICROSOFT HAVE ADDED A NEW PROPERTY TO THE DATAREPORT (orientation) WHICH HAS THE SAME EFFECT. SO MY CODE MAY NOT BE REQUIRED.Using VB6 DataReport writer I hit a problem where it didn’t allow landscape reports unless the default printer was already set to landscape. I didn’t want my users to change there printers… Read More »