Results for "Volume: 2_2002-2004"
This is the full source code for one of my programs, web shelf 5. it is used to generate tables of web images, either for your computer or the web. You are free to use this code to produce your own programs. see the archive for more details...
I looked high and low for some type of code snip that showed how to create a barcode (none where available except the ones for sale). So here is one way to print a code 39 barcode in VB. It has worked for me, although very little testing was done.
This is to make your program start up when you reboot your computer just like other programs you see do. **Must See** Please Vote for me!
I use this to Ftp Upload all my files to my angelfire web site I find this very use full so I don't have to use there online web editors!! this works very well and I think you will like it!
Displays a Tree Menu navigation system on your website. The 'folders' and 'sub-folders' information is stored in a database. The tree menu is diplayed and clicks made in the menu are all actioned with JavaScript (client-side), so your visitor does not need to wait for the menu to retrieve info from the server everytime the click on an item. Also, a link to a new page is clicked, the menu will open on the new page to show the link that was clicked. manageFolders.asp is a form/listing of folders already in the database This file also allows to you add new folders, edit existing folders, and delete existing folders The Delete option is only available for folders which have NO sub-folders _config.inc contains the connection string to the database. You will probably need to edit this if you are using a physical path. eg: Brinkster Premium Memberships _config.inc also also contains the following lines: 4 If Session("UserID") "" Then 5 varUserID = Session("UserID") 6 Else 7 varUserID = 0 8 End If This menu system can be used with membership logins, allowing members to manage there own folders. To activate this feature, replace you session variable name where it already has Session("UserID") to be your session variable name (It is a number). This feature would be used for smething like a web-based email system.
Monitor mouse movement and key presses globel wide. This code will check for mouse movement or keyboard presses. Works like a screen saver. It is globel wide. Not window dependent. You could use it to monitor input or to detect whats keys have been pressed. You could use it as a independent screensaver. You could use it to shutdown your computer after certain amount of time has passed without any key or mouse movement. I can think of lots of things it could be used for.
Warn users about Session Timeout 5 minutes before it happens.
Allows 100% remote administration of a computer with a terminal interface. Everything from registry access to running process control, hard drive access, network access, etc...Includes login security, please read the documentation before compiling and running r.a.d. so you are informed of how r.a.d. works, and how to use it with your system or your remote system.(uses winsock)
Displays a list of all the drives and folder s in a tree view control just like Explorer. Please note: I did not write this code, it has just been compiled into a usercontrol so it is easier to use. Thanks to Marek Letosnik for the base to this code. You can customise this code easily to get it looking how you want it. I have changed some stuff to make it look better as well.
This is a snakes and ladders game. Not all of the squares are on there, but I may update it soon if people like it. I haven't seen any other board games on here as of yet, I think this is the first.
When searching online for "How to prevent a form to be submitted by hitting enter" you'll find many (mostly unsatisfying) creative solutions. I think that my solution will work for most of the cases. Just follow the neccessary steps in the following article. If you like it please vote! ;)
This script will check your IIS for installed components. At the moment, more than 600 components are supported and the list is still growing. Note that you don't have to update the script because it dynamically gets the list of known components from one central server, always providing you with the up-to-date list of supported components. As default, the script will check the the server for all supported components, but you can always check for your own, too. It's free software under the GPL. But I require to give credits to me. Check out the live demo and the most up-to-date version at http://www.bier-voting.de/objcheck/ New: Descriptions and links
Sending Password through through Email(Using CDONTS)
QUIZ
Encryption / Decryption. Update from Sentinel v2.x which had a weaker key schedule. Incorporated here is a CRC32 and Timediff function to determine SKeys. This is a much stronger enevelope. Does any type of file and single or multiple files with or without compression (PKZIP2.5). Very fast and very secure! Enjoy
This is a complete program to perform the university information system. This program also include graphics and sound.
A long time I hesitated about submitting this or not. Finally I made up my mind. The CodeLib V2 is a database-kind of program that stores codesnippets,functions and subs to make programming easier. There's taken care of the layout of the forms, and it uses my award winning T3D-function a lot, together with other stuff I developped, such as my MBox (alternative messagebox) and IBox (alternative InputBox). The result is very good, I might say. Anyway, to make a long story short: Select a code, function or sub, put it on the clipboard (with a button !), go to your VB-project and paste (ctrl/V) the code where you want it. Created a new reusable code ? Start up the CodeLib V2 and add it to the database. Want to replace a certain code with a better one ? Want to rename a code ? Want to move a code to a different category ? Want to delete a code ? Want to add a help-file ? Want to add some notes to a code ? Want to EDIT a code ? Want to print the code ? Want to print the helpfile ? Want to ... As you can see, this is a fully working program that I use a lot when I'm coding. The CodeLib V2 (zip) is about 223 kb, but it has it all: the source, CodeLibV2.exe, data (about 70 different codes, all tested and working fine). I hope you're as thrilled about this as I am. And I don't want to receive mail like "this sucks" or "the worst thing I ever seen", etc... This is GOOD CODE ! It works fine for me (VB6 enterprise edition) and I didn't found any bugs so far. The helpfile can be read with notepad, but will also be loaded in the program. In the helpfile, you have a small button "send mail". This will start up your e-mail prog and link directly to me. Do it ! A final note: this isn't a database prog like acces, or works with ADO, all code is stored in a sequential file, wich is loaded directly into memory. This works very fast. Extract the zip to C:\ or any folder of your choice and voila ! Happy coding...
This will introduce beginners to the FileSystem and TextStream object. The code will read and output whatever is in the text file on to a asp page. Feel free to experiment and add to the text file provided.
This vbscript class interfaces fileuploading by a HTML-form to a ASP server. Saving a binary files is not supported with ASP scripting, and saving to a textstream object may take some time. (depends on the filesize)
The following code provides the means of adding a Centralized Error Handler to an application. I keep the Public Function in a Module named ErrorHandling to keep things simple.