Results for "Volume: 2002C"
This class can be included in any project to start up another application, wait for it to end, and/or terminate the application. The class is an easy to use "wrapper" around tricky Win API functions. The sample application included gives documentation/comments on how to use the class. This is a much cleaner alternative to the Shell command.
A very cool VB space simulation game. This project is for everyone that claims VB can't be used as a game engine. Using home-made buffering methods, I re-wrote the Raptor game engine in VB. Your ship shoots, the bad guys shoot, ships explode, music is played (mp3 format) - this engine has everything. If you've liked the little arcade games people have posted (pong, etc.), you'll be blown away by this full-scale game using hundreds of blits simultaneously. Everything you need is included (including the ocx for playing mp3's), and the code is very concise, clever, and fast. One thing - it's not quite commented fully and the user interface needs some work. I had to rush and finish it for a school project, so there is much left to be done. I am looking for someone to do custom graphics (I am using the ones from Raptor for now) and I will revamp the game to be entirely like Raptor (level editors, weapon upgrades, etc.) for commercial distribution. Contact me (tannerhelland@hotmail.com) if interested. BTW - use the arrow keys to move and the space bar to shoot.
This is a message umm center hehe, Let your users send messages to other uses, NOT a CHAT it is more of an email client but sends them to other members your site, This version is very basic and will need to be modified in order to work properly, view the readme.txt file for more info. The next version will be great, I figured gotta have a simple basic one for the first version and then come out with a better more advanced version next time around right? yeah ok.. View it here http://65.4.131.57/Justin/messageCenter/Script/message_center.asp
Ever wanted a survey on your site? But don't have a database? Well, by using ASP and XML you can! Features single voting, survey expiry, past survey results, and many nore...
Acts as a Custom Internet Browser. Include Customizations as well!!!
Functionality: This macro creates an Outlook appointment for the eBay auction you are currently looking at in your browser (IE). It extracts the auction's end date and sets the reminder accordingly. The macro supports www.ebay.com and www.ebay.de. You can also use it to create appoinments for other Web pages but without setting the date automatically. New: Now supports the latest eBay page layout and automatically transforms the auctions end time to your machine's time zone. Prerequisites: You need Microsoft Outlook 2000 for this function because only this supports VBA. You also need IE 4 or later. Installation: The ZIP file you get from the download contains two VBA files. These must both be added to your VBA project. Additionally you have to add the references for "Microsoft HTML Object Library" and "Microsoft Internet Controls". For more details see http://www.schmidks.de/klemens/install_vba.htm
Building a ASP Forum using the simplest ASP code. Simple ASP code to build a working ASP forum. Plz vote for my code :P
This is my update to 'A Pak File Creator'. The code is fixed but still may have file size limits. I haven't checked anything above 1.2 megs. This code could definitely be worked on to be made better. I hope someone out there will post a better way to do this. Please rate this code and leave me some comments or drop me an email. Hopefully this code can be used as an external resource file once we can get the access speed pumped up. Enjoy it folks!
The most comprehensive, user friendly, and effective file transfer method using MS Winsock (Ver6.0) available. Well commented code and a descriptive user interface. Seperate project in zip for both client and server, including exe's. Feedback welcome. If you find this code useful please take a second to vote for it!
Draws various paterns with simple line techniques.Just thought it might save someone some coding.
Polls Admin is back. Custom number of questions, customizable layout, emailing, printing.
Dynamic Surveysystem v1 Just take a look at the best: -Simply administration functions (like all of my programs) -Premade grafics -Totally dynamic: You only have to edit ONE file and my program modifies all the others automatically. -Cookie based voting: To prevent one user voting several times. Just download it and enjoy this great Surveysystem coded by Guo Xu. You won't be dissappointed. And by the way, don't forget to vote for a 15 years old asp programmer ;) This code was tested on Win 98 SE/PWS and Win2K Server/IIS5. To create or edit a survey just load setup.asp from your browser once setup.asp is uploaded to your server. Of course you can change the grafics of the surveybars. The easiest way is to open the default grafic in the grafix folder and modify them in an Editor like Photoshop, Photo Impact, Fireworks. NOTE: You better dont modify the size of the grafix. If you do some errors may occur.
This code is based upon the ONLY other VB uuencode/uudecode source code available (it's here). I put this together as part of a larger project that I'm in the middle of (a USENET binary downloader) and I wanted a uudecode routine that would decode on-the-fly. This does. It also encodes and decodes files, like a normal encoder/decoder. I spent a lot of time optimizing it, and I think it'll now decode fast enough to handle most DSL/Cable accounts on the fly (480-590 kb/s). Error checking is sparse, hopefully there's no glaring bugs. Hope it's helpful, and let me know if there's any more optimizations that you can find! [Update] I fixed the problems described below, and also replaced the static filenumbers with dynamically generated ones. Doh! [Update] Another bug found and fixed. There were null characters at the end of each line of files encoded with UUEncodeFile. They're gone now...
Securing Your IIS Web & Content With Access MDB Based User Security (Simple Yet Comprehensive) This past week, I sat down to tackle the chore of securing my personal IIS web server... specifically, my web app I previously posted here (MP3Tool.Web). It was a learning experience to say the least, and so I thought I'd zip up my work and share that experience with the rest of you. The Chore: secure an IIS web or entire server via user logins. The Solution: the magic of my security approach is achieved by making use of the Global.ASA file and sessions. As it's name implies, it functions as something of a global over all the other asp pages on a web site. You can find documentation on the global.asa posted here on psc, so I won't repeat those details here (and the rest of this assumes you know what global.asa is). My security approach makes use of the Session_OnStart on event. It is triggered the first time a user tries to hit an ASP page on your site... and occurs BEFORE the target asp page is served up by the server. This is key to making this approach work. When a session is first started, a number of activities take place. 1) a connection to the database is established (held as an object in the session at the top of the page) 2) the "hit" is logged in the database by IP # and date 3) we test to see if the IP # has been "banned". If it has, I came up with a pretty slick way to implement the ban. Attached in this zip is a VB project for my ResponseHelper com object (my solution to my problem expressed in my previous post, MP3Tool.web, about streaming back binary data back directly on the asp response). In this case, we're not streaming back a binary persay, but an HTML page that looks and works exactly (with 1 smiling exception) to the Server Not Found page IE serves up. Because I use the com object to stream the file back, rather than a .Redirect, the end user is none the wiser (their browser location never changes). =) 4) this part is probably optional, but then I put in a browser check to ensure that IE is being used by the client. =) 5) we test to see if a specifically named cookie exists on the client. This cookie is used to "persist" a user's login... much the same way your developer login is persisted (if you so choose for it to be) here on psc. 6) if no cookie was detected, then we test to see if the Login.htm form is being posted. While the "target" of the Login.htm page is the Login.ASP page, we actually intercept and process all logins in the Global.asa file. Login.asp file theoritically should never actually be hit.
A class library with one public array sorting function and four supporting private functions. The primary work done by the library is done by the recursively called function MultiSortRecur, which sorts any two dimensional array, given the array to be sorted and the order over which the array's second dimension will be sorted. It uses a divide and conquer type algorithm (similar to a QuickSort). An example of usage would be where a two dimensional array is seen as a type of recordset where the first dimension describes the rows and the second dimension describes the fields collection. The recordset (array) can then be multisorted according to column order in ascending or descending order. (i.e. have the the array sorted by 4th column as ascending and upon those which items match, then 2nd column as descending, etc.
Web-based WYSIWYG Content Authoring & Editing Tool. This version gives you a different look & feel from my previous version. Note : This submission is different with the version published on my site : http://www.YusASP.com
if you have to determine if the remote computer visitor is local or external of your site and according to the case, for exemple redirect the user to the correct page...
This button is cool for you that using graphics on form. If you move your mouse over the button, the button come with highlight picture base on form pictures. Click it, and the button move down still with the background. This is looks like IE title bar with skin. For more information, you can email me: ddayandri@asuransi.astra.co.id
This code (by DoS, not me) sub-classes VB menus to produce differend fonts, mousemove colors, etc... Pretty cool.
** UPDATED ** SUPER easy all-in-one Web page hit counter using ASP, takes seconds to paste into any ASP page, tracks hits, site statistics for as many pages as you have, multiple sites on one server etc. Free and so simple to use...WOW!