Comprehensive Microsoft Agent Example!

Well, you wanna know how to do almost everything in Agent? Well download this, have a read, and you will! This example project I’ve written shows you how to run through set scripts, use multiple characters, accept speech input, use speech output, use sound files for Agent speech, use Liguistically Enhanced files, hehe or get them to fight!… Read More »

IP Grabber with NO Winsocks

An extremely simple, fast, and efficient way to get your current IP Address without using either the WinSock control, or the Internet Transfer Control. I hope you guys don’t mind a girl submitting code… and I LOVE mail, so please visit my web page for even more VB applications and a pic of me, too… 🙂 Original Author: Vicki… Read More »

Page designer

This code is very good,it is a wysiwyg web page designer,you can add your text,images,lines or html code on any part on the page and the the page on the program format or export it to html,I ‘ve use the wysiwyg code that someone ‘ve alreay posted to save html but all the other code is mine it… Read More »

Disable ‘X’ on Forms (Including MDI Child Forms)

This is shorter way to disable the ‘X’ or close button on a form. It also works on MDI Child forms also which I have found most other code does not. Original Author: Mark Troutwine Inputs None. Assumptions Just copy and paste it as stated below! Returns None. Side Effects None. API Declarations ‘ Place this in a module:Public… Read More »

Multi-Search Engine Application

This application will allow users to search 4 Search Engines at one time for the search criteria which they have entered in the Search String. This source uses Yahoo!, Lycos, Alta Vista, and Infoseek but the code can be easily adjusted to work for any engine. MSINET.OCX and Common Controls Required. Original Author: unknown Returns The code will return… 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 »

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 »

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 »

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 »

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 »