Advertisement

Results for "Volume: 2002C"

2002C #16648
Login and password

Provides your site with security. A login and password, with the ability for the user to change their own password. It uses a DSN-less Access database so that you do not need to set up a DSN on the server.

2002C #16666
WebVite (eVite rip-off)

This is a web that I banged out for a party. It took me a couple of days to write and I thought I would share it with the community. It does the very basics of notifying friends of a party, gathering responses from the users, question polling and result viewing. I left everything intact to see how it looked, but feel free (of course) to change stuff. **This is a complete plug-n-play webpage** This web-WebVite- contains these features... * Polling * Graphing * Invite a Friend * Email * dBase interaction * User Interaction Also included is a aspmail .dll called Smtpvsg.dll. Make sure you slap this in your system folder and regsvr32 it. Also, I have included two .mdb's. One is 2000 one is 97. Good luck! oh..and I would love to see any improvements..please Micah Nasarow www.gametrends.com micahn@gametrends.com mnasarow@comtex.net PLEASE NOTE!!! -Added-4-25-2000 Dudes..I am totally sorry, but the mail component I used was a licensed component. If you have it great if not, may I suggest usign the CDONTS.Mail component native to IIS4.0. You will have to make some changes to the code. If you need help..let me know or there is a good tutorial at www.asp101.com

2002C #16667
Connect 4

This code will enable you to, in ASP, play a game of connect 4 with 2 people sitting at the same PC.

2002C #16669
Simple Search

Search in the site for any word

2002C #10369
DX Anywhere

The code of DX Anywere retrieves the handle of the window/scrollbar/toolbar/textbox/clock/start button whatever under the mouse cursor. Now, with this handle you can start DirectX in that window/scrollbar/toolbar/textbox/clock/start button/whatever The DirectX window is automatically resized to match the required with and height. Really great code, to make an 'DirectX Accelerated Desktop"

2002C #17178
Monthly Calendar Generator

This Code Generates A Monthly Calendar Based On The Dates You Supply. I Developed This Originally For My Job And I Want To Make It Available To Anyone Else Who May Find It Usefull. It Originally Filled The Cells With Data From A Database Depending On The Date Informaton In The Database But I Removed That Function. It Is Very Easy To Add That Function Back In And If You Are Intrested In Help With Adding That Function Contact Me At: PlexXonic@SoftHome.net And I Will Be Glad To Help.

2002C #9980
A Windows 95/98/NT/2000 Parody - UPDATED!!!!

This is a cool parody of Windows 95/98/NT/2000 that looks just like the real thing. The difference lies in the details... This update of WinS*x 2000 WorkFrustration includes the following new features: a) lots of new graphical effects, including an improved Start Menu with MouseOver code, b) a FREE, off-line version of MicroSh*t's Homepage! Just click the Internet Explorer icon! c) a virus scanner that REALLY WORKS! Open the Find Bugs menu in the Start Menu, and click 'Scan for viruses'! d) NEW LOOK - actual wallpaper and icons from Windows 2000 Professional!!! e) a log-in screen. The ZIP file is 261 Kb but it's worth the download! (NOTE: This is an old version; download the new one at http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=34826&lngWId=1 )

2002C #10091
_SUPER FAST! Gradient Fills (Any Angle) (Updated)

(Updated - Even Faster Now) This class will fill any Form or PictureBox with a Gradient fill starting from Color1 and blending to Color2. Sure, I know you've seen that plenty of times, but this code allows you to select any angle 0º to 359.99999º and it does a perfect blend at all angles. Use any colors, even system colors. Create multiple special effects by setting PictureBoxes next to each other and filling them in different directions. Includes full source code and sample program. PLEASE VOTE FOR ME!

2002C #9746
Icon Extractor

This code extracts icons from Dll's and Exe's. The code is so simple any VB newbie should be able to understand it.

2002C #17158
A Beginner's Guide to HTML Part I: (a brief reference)

You can't get too far in ASP without an intimate knowledge of HTML, so this tutorial will take a newbie through the ABC's of HTML...one step at a time. It's also a great reference for pros who forget how to use little known tags! By pubs@ncsa.uiuc.edu

2002C #17159
A Beginner's Guide to HTML Part II: (a brief reference)

You can't get too far in ASP without an intimate knowledge of HTML, so this tutorial will take a newbie through the ABC's of HTML...one step at a time. It's also a great reference for pros who forget how to use little known tags! By pubs@ncsa.uiuc.edu

2002C #16679
Anonymous Mailer

With this code, you can send mail thrugh the web with ASP, with the CDONTS object. it is very simple script, I wrote it in 10 minutes and I am just a beginner (one month).

2002C #17167
Database Basics: Part I

Since ASP is especially good at reading and writing to databases, let's start with a very simple database and scripts that we'll eventually build into a guestbook... Reprinted with permission from http://www.web-savant.com/users/kathi/asp

2002C #16671
Controlling the Height of HTML Tables that Contain Forms

When working with HTML forms and ASP the order of the tags CAN and WILL make a difference! This article details some traps that HTML newbies can run into when designing ASP pages.

2002C #16680
Resize and move browser window after opening

Resize and position the browser window

2002C #10383
Floating Menus

Gives you application the Windows 95 look of a floating menu. Right click any where on the form and the menu will appear.

2002C #16682
Intro to ASP syntax

Attention ASP newbies! Looking to create your first ASP page? Check out this tutorial!

2002C #16681
Intro to the ASP Object Model

A brief overview of the ASP object model. I will be submitting more tutorials on each object in future submissions.

2002C #10117
Enigma Encryption Example

Here is the concept behind this representation of the Enigma Machine: The program uses virtual "wheels" that contain all of the printable characters on the keyboard. Think of the first wheel as the keyboard you are typing on. All of the wheels contain the same characters, but in a random, non-repeating order. Each time a character is pressed, the location of that character on the one wheel is used to as the index to lift the character off of the next wheel. Then the new character is searched for in the next wheel, and the pattern repeats itself across each wheel. The character lifted off of the final wheel is the output. This step is repeated for each character in the message. Decryption simply sends the message backwards through a similar, but reversed process. What really makes this encryption effective is that like the real life machine, the wheels rotate either to the left or right after each character. So the relationship between each character shifts constantly. As a result, even repeating characters such as "AAAAAAAAAAAAA" are represented with garbage such as "@n~WPnHv(.)z#" Another great part about an encryption scheme like this is its flexibility. You can add more wheels, more characters per wheel, change the order of the wheels, the directions the wheels spin, and change the starting position of each wheel. So, unless somone can figure out: 1) How many wheels are being used... 2) How many characters are on each wheel... 3) The order of the wheels... 4) The direction they spin... 5) The initial position of each wheel... 6) The order of the characters on each wheel... It would be virtually impossible to look at the encrypted characters and determine their relationship to one another. There are so many possibilities and combinations of the above criteria, it would have to be solved through brute force. I am no mathmatician, so if anyone can tell me the possible combinations, I would appreciate it. When the Germans used this machine, it baffled the Allies, who frantically tried to break it with no success. It wasnt until a German U-Boat was forced to surface in a naval battle and was captured that the Allies got a huge break. An Enigma machine was captured along with a code book that showed the information needed to decrypt the messages. The U-Boat was scuttled and the crew was kept in a top secret location. The U-Boat was simply considered lost during battle and Germans continued the war not knowing the truth. When the war in the Atlantic turned for the worse, the Germans, who believed their code to be unbreakable, believed that there were spies in their top level officials. They never considered that the code was being decrypted through a captured machine, so as a result, they set up elaborate networks to try and find these "spies". Paranoia being what it was, many loyal German officers were tortured and murdered for treason, even though they had commited no such offense. This code is by no means complete. I will try and enhance its speed and toughen its encryption even further. Ill also try and build a better sample app with more features. If you find a problem or have a suggestion, I would love to hear it. This program has now been updated to reflect many of the suggestions posted here. Thanks for some great feedback and keep coding! =)

2002C #10343
AOL C-Chat (c-com) **ZIPPED UP WITH EVERYTHING**

This is a c-chat or c-com FOR aol ( America Online ) , whatever you call it..all you have to do is, type in the chat wahtever you want, and then it does it, like here is an example, .newmail ; this would open the new mail you have gotten for aol, THIS WILL HELP YOU!!! THIS IS THE FORM, .BAS, CHATSCAN ALL ZIPPED UP!!!!!!

Languages
Top Categories
Global Discovery