Results for "Volume: ASP_Volume3"
This is a tutorial in PASSING PARAMETERS to both applet and applications. Complete and easy to understand! Sample programs contain simple codes with a clear explanation.
Lightwheight roll-overs, made with CSS and only one image... with NO pre-load wait times, like those based on image replacement! There is also Tabbed user interface, based on that technique (the tabs) :)
The encode program allows you to type in a message and it will scramble it to a char file and a key file. The decode program takes the two files and decodes your message.
This is the 3rd version of my RPG game. I've added a lot of stuff to make it look better, but nothing much in the way of game play. It has a cool menu, sort of like halflife's, a lot of graphics, characer classes (sort of) and I redrew the character so it looks more realistic. It only has the wizard character so far though... Also have the resolution changing to 640x480x16 for much faster game speeds.
My ParticleEffect/Particle classes can be used to easily create particle effects for games in java. Options include: resizing, color changing, multiple/single graphics, velocity, acceleration, lifetime, and more. It is easy to use, just create a ParticleEffect object and set these various attributes and it takes care of all the drawing and everything. The screen shot on the left is the program which is included, it is just a utility for creating test effects. The screen on the right is another game I am writing which uses this program. Just look at the code inside TestDriver.java to see how it is used (It's very simple). If anyone needs further documentation, just let me know and I will supply it. This program is ready to use although I am still considering add some more features such as collision detection. If anyone would be interested in this, let me know. The .zip file is also an executable jar file so just change the extension to .jar if you would like to double click to run. To get to the source just leave it as a zip and you will find it inside.
conversion of decimal to hexadecimal
Create XP Style Controls. Add this bas module to your project and call it with one line of code. The subs will check the user's operating system version to see if there running XP or not. Check to see if a manifest file is already created or not. If one has already been created, it will go through the controls on your form and change the flatstyle property to flatstyle.system if needed. If the maifest file has not already been created, it will create it and then prompt the user to restart the program. Well commented and easy to follow along and understand. Form_Load XpStyle(Me) End Sub
Will locate a file on any type of drive. I use it for lots of things with little modification. Very useful for looping through all your drives, folders, sub-folders, etc. Perfect for finding files, folders, types of drives, etc. Should be "readable" enough for newbies and ideal for experts as well. Uses File System Object (FSO). Works with VB 5 as long as you've installed VB Scripting support. Can be implemented in ASP's with very little effort.
Here is what I did to make my PC speaker beep at the frequency and length of time I want, using hardware direct control. It works fine in Win95 and Win98. Not in WinNT.
This is a beta version of the GUI for the NuclearMedia 2.1 SDK.
Displays an animated gif file WITHOUT any ocx or dll.
This code allows you to have an autocomplete function on any text boxes by creating an instance of the class module below and setting a text control on a form to is CompleteTextbox property. Ideal for those situations when you have multiple autocompletes. (Visual Basic 6 Only - Can easily be modified for 5.0 users)
This code enables you to have an MDI Child form "dock" with the MDI form like the toolbar found in the VB5/6 IDE and in various other applications. It can dock to any of the four sides of the form. Currently only support for one toolbar is there (i.e. the toolbar in VB as opposed to the project explorer and properties on the right side). This functionality may come soon.. If you find any bugs, please let me know via email or post the solution here.. An executable is also included. This code is a variation of the post found here: http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=3843 It *REQUIRES* the MsgHook32 OCX found here: http://www.mvps.org/vb/code/msghook.zip
You can get many kinds of codes about paint applications like pencil tool, line, eraser, picker, gradation, open files, and more. You can configure options. And more! You can also get filters! Enjoy it!
This is a single document interface (SDI) application that allows the user to view any bmp file. This is a little slicker than most of the versions I have seen here.
The purpose of this code is show how 3D graphics work. This program shows how to do 3D rotations, Backface removal, and shading.
Displays animated GIFs without any ocx or dll.
Small function that will return from windows the users FULL name and not just there login id.
An update to my award winning Sniffer.Net which use my Sniffer.Net Library. I have included support for viewwing the contents of the packet by double clicking any packet from the list view. PackMon was my very first attempt of making a Network Packet Capturing tool in .NET i have created similar tools in vb6 using winpcap library. but this time i have created my own library in .NET which can monitor all network traffic. PackMon.NET is a .NET library is inspired by a similar code from http://www.mentalis.org/ their code was a great help for me i have converted some parts exactly the same from C#.Net to VB.Net but most of the code is entirely written by me. please give me Globes if you really like this code. you can use the library and provided sample application that use the library but please do give me credit for the same. This is still a beta version and i thought that together we can make it a really big and powerful project. This time also i need support from you guys to help make this a really big success. i want to make it plugin based so that as one of user suggested we might use it as Firewall or bandwidth monitoring tool... there is so much that can be done with this but the next big update would be general purpose plugins plus editing the contents of the packet before sending to the target machine.
At one point or another, we all come in contact with a project where we need (or want) to play media files. There are 2 main ways you can go about this, you can either use the MS MediaPlayer control and deal with interop and alot of issues. Or you can implement mci using the API. This project is an implementation of the mciSendString API, so you can just include the class into your project and use it on your form, no need to reference Media Player. This plays all know formats (mp3, mpeg, avi, wmv, divx,...) except midi files and cda (audio cd's). (the play statement, and maybe other statements as well, use arguments not supported by the midi and cda devices) The code is well documented and very clear, even a beginner will find it's way in it. Please leave a comment, and do vote if you like it. Thanks !!