Advertisement

Results for "Volume: 2_2002-2004"

2_2002-2004 #119733
User Logon and Password with ADO and Access

Login and Password Security W/ Access and ADO These forms and modules can be placed in any VB 6.0 project and you add the rest of your forms and you have a secure application. Full functioning: add users, delete users, re-set user password, comments on users, password expire term, default password forced change, user Task levels that you can name. This consist of two modules, three forms, and one data environment. This is all done in VB 6.0 and in ADO format. All kind of validation.

2_2002-2004 #119734
High Security Encryption DLL (DES, Blowfish, Twofish, Gost, RC4, Skipjack, & CryptoAPI!)

This is an ActiveX DLL which allows you to use some of the most secure encryption algorithms avaliable - including Blowfish, Twofish, DES, and Skipjack (This code is not copyright by myself, however the creators of the algorithm(s) may)

2_2002-2004 #119735
Replace a file, now or later!! (Updated)

You can replace a file now or later. If you have apps that people use all day and if you make a change and have to replace the exe, but can't because someones in it, use this app. You enter the date and time for the replacement to happen. It'll tell you if it was successful or if there was a problem on screen. UPDATE - If a file is in use an the time goes past midnight the date will increment properly.

2_2002-2004 #119736
RexFormats.DLL - The most powerful music engine on the web - Beta #3

If you are a serious music lover and a developer of music application, then ... this is it. Create simply incredible playlists with more 150 tags for each file, powerful search engine, copy files from cd to disk drive, allow multiple users to rate songs within the same file, retrieve information on many formats. Most players like Winamp, Sonique etc. have playlists. Most of them only store 2 or 3 fields. When you have more than a 100 mp3's on your computer. Finding and organizing music can be hard. New in Beta #3 I have added some extra features to the driver, such as : - Register. Now you can register the .rex format with your application. You can include a description of the file type. - File exists. The driver can now determine if a file that you are going to save, move, copy, already exists. F.ex. if you copy a mp3 file from a CD to a drive. - Copy Files. The driver can now copy an entire directory structure or a single file to a desired location.

2_2002-2004 #119737
button cloning

If you ever wanted to know how to make buttons, labels, text fields, etc. to create them selves as new objects in your compiled vb project. Here is a little example of how to do this. Not hard, and could have many uses. Enjoy!

2_2002-2004 #119738
Listbox Reorder

A function that will allow you to move the selected item in any listbox up or down in the listbox.

2_2002-2004 #119739
Space Game

A nice shoot-all-the-meteors-you-see-game. This game proves two things: First: Its easy to make a game with VB. and second: anyone who can understand my code deserves the Nobel Prize...

2_2002-2004 #126211
AutoSize v1.1

AutoSize purpose is to help programmers maintain their forms without too much fuz. FormSizer makes the application remember the size and state of a window from time to time the program is run. (Code free!!!) ControlSizer lets you set up rules for how your controls should resize when the window resizes. The control takes care of the rest. (Coding is limited to two lines of code per control you want to be adaptive)

2_2002-2004 #126212
ProcessKiller

List all active processes ,select to kill (kill unknow trojans),simple but very useful.Ok!Enjoy it and vote for me !!!

2_2002-2004 #126213
ChessMASTER

ChessMASTER version 1 is a fully fuctional internet chess game. Offline you can play two player or the in-built artifiscal inteligence engine. The chess pieces are drawn with a variable translucency, including transparent backgrounds. Online you can chat and send popup messages in the Game or using the ChessMaster website. You can save the board at any time and reload it to view (& theorize) or to play the computer on. Three boards are included (one 'borrowed' from RJSoftChess) and are saved as resources.

2_2002-2004 #126214
DictionaryTree

Allows you to store data using a self describing method, much like XML minus Attributes. Ex: Dim AddressBook As VCollection AddressBook!Coworkers!John!Phone = "201-345-3456" That's the basics... Check out the module VShared, and you'll find a test procedure that will demonstrate some pretty cool hidden, yet inherant features.

2_2002-2004 #119740
Replace color in a picture! (uppdated)

Select a color and a color to replace with and the program replaces all pixles with the selected color! (uppdated! Now using API calls that is much faster)

2_2002-2004 #119741
System Monitor 2k - View CPU Usage, kb/s in Internet connections, etc.

Similar to the System Monitor application found in Windows, this ActiveX DLL (source included) lets you include a CPU Usage monitor, lets you see the amount of bytes sent/received per second over the Internet, the amount of bytes read/written per second on a drive, or anything else that you see in Windows' System Monitor! Usage: Dim SysMon As New SysMon CPUUsage=SysMon("KERNEL")("CPUUsage") NetKBReadPerSec=SysMon("Dial-Up Adapter")("BytesRecvd") NetKBTransmitPerSec=SysMon("Dial-Up Adapter")("BytesXmit") It's that simple! Not too commented but it's VERY easy to use. Also, IT MAY NOT WORK IN WINDOWS NT, because NT uses a HKEY_PERFORMANCE_DATA key instead of HKEY_DYN_DATA, and I don't have NT to see the structure of it, if anyone makes modifications for it to run in NT please post them here. Enjoy!

2_2002-2004 #119742
iBBS tcp client/server

This is a multi purpose tcp/ip client server program. This will be the last open source version. This version has a huge amount of new stuff. Read the readme.txt for info. It now supports chat(with channels), file download, instant messaging, private mailbox, and public message board. The image below is of the Server. This is a good look into using the winsock control. Also uses collections and the split function, so it will only work with vb6. For lack of any other way to explain what this is, if you have seen Hotline before, you will have some idea of what iBBS is. If you like it, please vote.

2_2002-2004 #119743
csLogo

A control to create a sidebarlogo. It is based on code i found at http://www.vbaccelerator.com. I was tired to remember the settings of the picturebox so I created this little Custom Control.

2_2002-2004 #119744
Make Txt List of Files

Make Text List of Files any folder using the FileSystemObject. Cool for collections of mp3 or other files

2_2002-2004 #119745
Authenticate

Authenticate(project1.vbp) and Authenticate Generator(AuthenticateGenerator.vbp) separate projects. I have seen many types of encryption protection, password protection programs to defeat the end users attempts at getting your software for free. One major problem with this type of protection is that users can copy and distribute to whomever they please. I created this program to overcome this problem. Authenticate requires to end user to call for an authentication number. (Note: This could be accomplished on the internet also if you have an internet site.) Once the user calls they give you a 20 character string which you type into the authentication generator, which in turn gives you a 20 character authentication string to provide the user. The user then enters that authentication number and he is registered. This number will only be valid for that particular computer. How does the program do this you ask? First the program reads the Serial Number from the hard drive. When a hard drive is formatted the operating system saves a random 32 bit number onto the disk as a serial number. This makes the serial number unique, or unique enough to prevent the software which you worked so hard to create from being distributed illegally. The program encrypts this serial number with 5 sophisticated algorithms. Any questions will be answered promptly. Don't forget to rate this program. All feedback welcome. Enjoy--

2_2002-2004 #119746
LED Display

It's a LED Display to show numbers simply by loading small icons. It also consider 2 decimal digits. You can use this as an example to show numbers in your program in a more "electronical" way.

2_2002-2004 #119747
ImageDownLoader

Want to download the images alone from a webpage? How long you'll righ click the image and save the image... Leave that boring task to this application. It downloads all the images from the webpage to your local directory. It also gives you an option to select the links in the page which might be interesting to you.

2_2002-2004 #119748
Server Report

You must make sure you have ADSI 2.5 installed. This is free from microsoft. This program is for Windows NT and 2000 all versions. This will get some information on the server like users, groups, print queues, services, disabled accounts, and file shares. This code can be easily modified to get so much informtation that it could be one of the best out there. But right now it is basic. It also has a PRINT option to print out the report. Please vote.

Languages
Top Categories
Global Discovery