Advertisement

Results for "Volume: 2002C"

2002C #9863
Access 97 Password's viewer

This simple program allows users to see the an Access 97 .mdb Password, to open it after.

2002C #9864
ECInet

This beta version of my networking component consists of two classes. The first "Email" sends email optionally with attachments encoded as base64 and compatible with the MIME 1.0 protocol. The other "Upload" allows for uploading of files through a web browser. Both were developed for use with Active Server Pages, but could be adapted for other uses as well.

2002C #9481
DirTreeView

This is Explorer-like drive/folder TreeView. No delay at startup (for the hell of read directory structure), because content of each folder is readed on "expand" event. You can also specify any path and this code automatically find the path in TreeView. Base for this code are taken from other submission on Planet-Source-Code. Thanks to all programmers for publish their codes on this excellent server.

2002C #9867
Desktop screenshot with internet send

This will stretchblt the desktop into a picturebox! Next, if you have two instances running with the correct IP's (use 127.0.0.1 if you only have one machine), a copy will be sent to the other (using winsock).

2002C #9868
LongToRGB

Converts Long values (used by getpixel and other low level color functions) into RGB values that you can use. Useful if you want to manually remap an image or make some kind of color effect.

2002C #9857
Access Table Tracking

This Application helps in tracking all the MSAccess databases and lists out the Tables in it along with the Fields in it.

2002C #9870
Mp3ID3TagEditor

This Code Get's The Mp3ID3 Tag. It Also lets you write to the Tag. It has perfect support for the Genre Part, and it's well commented. I know there already are code that does this, but they either dont let you write, or they dont support the Genre part. so here it is, email me for a .exe that demonstrates this module.(Now Includes Project for demo)

2002C #9881
UnRarControl

This control uncompresses rar files as welle as Sfx files !

2002C #17169
ASP Hit Counter

Add a simple counter to your website. This source code requires little to no setup, just cut and paste onto your ASP page.

2002C #9882
COwnMenu - Make Office-style picture menus

To create an "Office-style menu" (or owner-draw menu) you must register that menu item with Windows as MF_OWNERDRAW and then process the WM_MEASUREITEM and WM_DRAWITEM messages sent to the menu's parent window. The attached project file simplifies this process by encapsulating all menu drawing operations in a class called "COwnMenu" and hiding the details of working with Windows in a code module entitled "OMenu_h." With this mini-system in place, all you have to do to get owner-drawn menus in your program is call SetSubclass on the menu's owner form and RegisterMenu to set a menu item as owner drawn. The provided example project contains complete documentation.

2002C #9883
Address Book - Directorio Telefónico

This is an example of a DAO DATABASE CONNECTION PROGRAM Este es un ejemplo de un PROGRAMA DE CONECTIVIDAD A UN BASE DE DATOS POR DAO. This program contains an english part, for those that speak english. Este programa contiene un parte en español, para aquellos que hablan español.

2002C #9884
LoadImage() to Fit

It's a single function, without API's, that loads an image and puts it in a destination PictureBox. If the source image is bigger that the destination PictureBox, then it will resized to fit in (mantaining the ratio). In other words, the image loaded will nicely fit the destination, but will not be deformed. If the source is smaller, then it will remain that size... This function is an upgrade (in speed, error trapping and results) of Jason Monroe original post. Thanks Janson.

2002C #9739
A Dart board Game

The First Dart Game on Visual Basic made for your own pleasure........... Playing 301 and 501 Game's Using BitBlt and maths function

2002C #17170
ASP Search Engine

Updated: (Version 1.2) ASP Simple Search Engine. This search engine will scan your the directory and all sub directories from where the ASP file is based for occurances in files of the test string being searched for. It will them make a file with all matching files, just like a ssearch engine. This has added features. Argonaut (Scott A. Moss) - www.vbstuff.cjb.net

2002C #8710
a Server that allows multiple connections!

Since I posted the code that shows people how to use the winsock control everyone has asked how to allow multiple connections! Well, i've finally done it. This shows you how to accept multiple connections with one winsock control!!

2002C #8997
API Text Wrapper

Ever want a text box that only allows Number, Lowercase Letter or Uppercase Letters? With this wrapper the user won't even be able to type a Number, Uppercase or Lowercase letter! API Wrapper Module & Demo included! This is done with 100% API! Please send feedback :)

2002C #9154
Ini Functions(SIMPLE AND WITH SOURCE)

This code is used to read and write to a .ini file with 4 easy functions. The source included can be compiled as a ActiveX DLL. Source is Easyly Written Out. JUST LOAD AND COMPILE THE DLL

2002C #8830
Automatic Form Shaper

This code will shape a form based on it's .Picture property. It uses a transparent color and makes all areas of the form which is that color transparent. Extremely useful for programs to incorporate custom Themes. This code works best with smaller forms. The bigger the form, and the more complex of an image you use for the background, the slower the code will go. The image I provided in the example is rather complex (the logo for my company), so you will notice a slight delay when the form loads.

2002C #9873
bruteforce password cracker

This program essentially sends in a sequence of keys to the currently active window. So load your host program and this bruteforce cracker and you could soon be in. For Eg. If you have forgotten your WinZip password let this program repeatedly put in numerous passwords from a dictionary file or just a sequence of numbers to let you into the program

2002C #9891
Api Any Calls/Declarations

This is not really a code contribution, but a small tip on API parameter lists. Ever seen an Api Function which expects parameters of type 'Any' ? . For example domain/user maintenance calls in the Nt Networking Api or similar (Add Users/Groups etc..). These parameters usually (in the C/C++ base code) are probably expecting string pointers , an other example is in the case of the AddGroup Api call in the NetApi.Dll, where it expects the name of the server in one of the parameters in the list. How you actually pass the pointer is by:- eg. '### ' Api Function for example:- ' ApiFunction(sArgument as Any) As Long ' Dim strAnyString As String Dim strPass() As Byte Dim lRet As Long strAnyString = "String as argument" strPass = strAnyString lRet = ApiFunction(strPass(0)) '### What we're basically doing is getting the string to pass, assigning it to another variable array of type 'byte', then passing the first array segment to the Api function. Easy enough? Hope you understood all that ! Robert Dick

Languages
Top Categories
Global Discovery