Results for "Volume: ASP_Volume2"
Feeling stressed ? Watch the beautiful colors fly-by. :)P
An instant messenger similar to the style of AOL Instant Messenger. After going through this tutorial: http://www.vb-world.net/internet/winsock/index.html and coming across an ICQ Type instant messenger coded by Evan Sims (http://www.planetsourcecode.com/xq/ASP/txtCodeId.6520/lngWId.1/qx/vb/scripts/ShowCode.htm), I decided to build an AOL type instant messenger program in VB6. [INFO] Currently, there isn't a way for users to register a username/password, so If you want to test it out, you have to create a user in IMDB.mdb under the USERS table. After adding some users, you can test out the program by launching the server.exe and running 2 of the client.exe's. Enter the username/password, add the buddy to your buddy list, and start chatting :) If you want users over the internet to be able to use this program, change the RemoteHost IP address in Client.vbp to the IP where the server is running. [ERRORS] Currently, There are 2 known errors. 1. When adding a buddy to buddy list and you receive a message. 2. When deleting a buddy from buddy list and you receive a message. This is due to the fact that the popupbox is modal, I just haven't gotten around to fixing it. Also, Make sure you close your clients before you close your server, otherwise, you'll have to go in Manually and delete all entries from the ONLINE table. [DEFINITIONS and SPELLCHECK] I've always wanted a Instant Messenger that incorporated that! So I did it myself :) But, for it to work for you, you'll have to get the Definitions database, which is a hefty 37MB in size! Post a message here if you would like the database, I'll see what i can do. You should receive an error if you try to Define or Spellcheck a word without the database, duh! :P That should sum it up, I would appreciate your comments and suggestions, and post any questions you have as well. Thanks
I've noticed a lot of "Pic2HTML" programs lately that will turn an image file into an ASCII image of similar colors. While this is a good idea, I figured I'd spend an hour and code an algorithm that was lossless (IE: Final HTML picture is *EXACTLY* the same as the original image file). The algorithm is in the "Generate Code" button and even though it's fairly optimized, it still uses a lot of RAM and takes a while for large image files (it even has some "intelligence" to notice pixel clusters, but that didn't increase the speed: it only decreased the output size). Enjoy.
Removes extra spaces from given string. eg. Squeeze("^^too^^many^^^spaces^^")returns "too^many^spaces". NB.Read a carat ^ as a single space above. Planet Source code mangles multiple spaces in submitted text.
Edit & Combo...v #2,FONT / CELL FIXED
I have now fixed some bugs in it, you can now move the tool window's and the floodfill is fixed. A useful paint program for kids in all ages with all the tools you want from a paint program. You must download this code. And it´s almost totally free from bugs. Plz vote and make a comment.
This is just an update to the nice piece of code submitted by VF-fCRO on 1/12/2002. I simply added some small features (elapsed time, a different way to loop, minor text edits, etc). Doesn't really change the purpose of the original, just adds a few touches to it. the original is at http://www.planetsourcecode.com/vb/scripts/ShowCode.asp?txtCodeId=30734&lngWId=1 I wouldn't really entitle VF-fCRO's submission a "mistake"; he/she actually submitted a demonstration of a better way to handle concatenating strings with a far faster technique, and it doesn't use and API calls or weird, esoteric methods.
This activeX control enables you to create those stylish flat menus first seen in Office XP, easy to use but still needs finnishing. PLEASE VOTE.
Retrieves weather page from Weather.com and parses the info (temp, feels like temp, humidity, and current conditions). Puts it all in a nice little form. Self explanatory, dont email me cause you wont get a response.
XRen is a MUST SEE (at least i believe so) this is a couple-of-years work, I hope you find it usefull. Features: Serial Rename,Change Case, Add-Remove,Replace,Rename HTML,MP3,creates UNDO batch or VBScript file,.... FIXED COUPLA SMALL BUT ANNOYING BUGS to download the UPDATED plz version go to: http://www.geocities.com/mdsy_2000/
Flash TrayIcon Control is an Active-X Control that alows you to easily build system tray enabled Application. Just drop this control on your form and customize the menu and other properties. Fully documented and with sample project, you'll learn easily how to use it. This time source code is included. Features: - system tray icon menu - 3 levels of submenus - menu items with icons - caption bar on main menu Even it's a clean code there are side efects... and one of them is that you are going to like this very much. :))) Please send me feedback when you use my code and if I'm not asking too much: VOTE FOR ME. For further updates check the control's home page(http://cyprix.topcities.com) System Requirements: - Windows 98/2000 - Windows NT(>4) Not tested on Windows Xp or Windows ME. Try it yourself and send me a comment. 10x
This is an example of using DIBits transfers for images. This is MUCH faster than pset() and setPixelV(). This code shows brightness and other color manipulating effects. The image used is a screenshot from userdefined coords.
This code show how to use Windows API to change the bar color of the Windows ProgressBar. Draw percent value into the ProgressBar. ***** PLEASE, DON´T FORGET TO VOTE ***** Este código demonstra como utilizar as APIs do Windows p/ alterar as cores e escrever texto dentro da ProgressBar default do Windows. ***** POR FAVOR, NÃO SE ESQUEÇA DE VOTAR *****
This basic procedure will handle all parent and child Checkboxes in a TreeView control. If you check a child node it will automatically check the parent(s) and vise versa.
Easy to use module. Allows you to modify any file attributes, for example make a file hidden, read-only and archived.
Includes sample project, FIXED file!
Passing variant array between vb server and vc++ is noteasy task. I found a technique when i searched for a week on this matarial - how to return variant array from activeX exe(VB) to MFC(VC++).To make easy you , i submit not in exact form what i found on msdn and internet ,but what technique i used and got success.
Sample code which demonstrates how to copy items from a FlexGrid control to an Excel workbook.
This is a simple PID loop simulator. Proportional, Integral, Derivative algorithm used in the manufacturing industry to control machine processes ... in this example, a water tank with PID loop level control. View the included instructions for more detail. This is for educational use to teach students how computers are used for controlling physical processes. It is simplistic, and models the basic PID algorithm to it's simplest form. You can use this for examples on using sliders, timers, and doing real-time graphing ... of course, you can also learn about PID loop control. Have Fun!
This is another example of using Key Combinations to trigger code. It's pretty well commented to help beginners. Hope you like it.