Results for "Volume: ASP_Volume3"
This is the second version of my award-winning Painting-Tool. It has a Toolbox, some new filters and faster effects!
This is a Visual Basic addin that allows the programmer to connect directly to the Planet Source Code Website and do almost everything that can be done on the website while remaining inside the VBIDE. A must have for all Planet-Source-Code users!
Edit VB's recent projects list with ease! Enjoy!
This code can encode strings using the Base 64 method, and also decode the encoded strings. This is PROBABLY useful for a few things, but the only use I know for it is sending E-Mails with file attachments. Wow, it looked so evilly terribly horrible in the browser, I just HAD to upload a ZIP file with the same contents! Sorry!
This code simulates subclassing without the AdressOf-Operator. It's much safer than the "SetWindowLong-Method". The code shows a MessageBox when you click on the form (it's only a simple example!)
5 VB6 Projects all built on a single form. including: Runes - The Viking method of forecasting the future. Bat n ball - A breakout like game. Clock - Analog alarm clock timer. Pairs - Memory game, match the pairs. Space Invaders - The classic reinvented.
This Moves a Forms caption from left to right.
This article is the first part in describing the internal behavious of C++ compiler and how many things happen under the hood in C++ and some tips also. I hope this will help people in some manner in appreciating the power of C++ and liking it. Please if you like the article plz plz rate it....It will make me write some thing more.....
There are two separate modules encode and decode . Encode module recieves the data to be hidden and compress the data using ZIP algorithm and then finds the padding bytes to securily store the data without any possibility of dedection. Decode module retrieves and decompresses the data.
Common Dialog Template. This small project explores the use of the Show methods of the Common Dialog. Want to know if the user entered an unexpected extention? Want the dialog to return a file name that does or does not exist? I have included most of the constants and properties associated with each method; not so much to show how they are use, but as a reminder of what is there. Try different things and see what happens. The open and save methods seem to have the most options and therefore the most complexity. So have fun and see if this works with that....
You can pause execution of code for the specified duration. Different from "Sleep" api in that it will not lock up the whole program.
### Functions updated. Now they're way faster and smaller. Took out Select Case and added InStr. ## Ever wanted to use NetZero? Without the ZeroPort software? Well now it's possible. NetHero will convert any existing NetZero username and password to a username and password that will work with Dial-Up Networking.
Program for calculating prime factors. Accepts very large numbers upto 2^53 -1 (9007199254740991)or more than 9 billion billion. Shows elasped time if time taken is 1 second or more. Largest prime accepted: 9007199254740881.
This small VBscript (HTA) app is sort of like a screen saver you can tweak and play with. It's an old idea dating way back to the C64 era, sprites moving around in sine wave. I first made this with GIFs,then eventually DIVs with a wingding character in it. This lets me colour each sprite and set the size with style.FontSize (which is too slow to do in the mainloop unfortunately), but now I don't need graphics so it's standalone. Some of the text boxes use EVAL() which adds even more scope, but at the price of a big CPU hit. It runs OK on my dinosaur PC though (Pentium 3 450MHz) Save it as HTA and run it (or HTML,it isn't bothered) (This is a repost because I uploaded it to VB by mistake) Have fun! Alan.
COOL SPECAIL EFFECT - SEE IT TO BELIEVE IT! This is a cool transition effect. There is a scroll bar to adjust the quality/speed of the effect. You can choose your own pictures for the effect too. I've seen a load of special effects ideas on PSC and so I thought of a different idea for a change (since I had seen alot of similar ideas there). I saw that DirectX can do something called alpha-blending and I wondered if it were possible to do it WITHOUT DirectX at a sensible speed in real time. Well, it is! - but (there's always a catch) to do it fast I had to make loads of memory buffers and look-up tables and so it takes 1.44 MB RAM, but that's no problem for most computers. The code is totally, fully commented, so anyone can understand it. Remember to vote for this if you think it's cool/original/well programmed/helpful (ofcourse I reckon it's all four!).
This project is designed to be tutorial for implementing a class module. I wrote this in order to learn more about modules. I used character replacement as the task since it may be of use after the project is entered. I hope that it will be of assistance to others. This program allows the user to replace a chosen character with another character in a given string.
example of how one can retrive data from database on same page without page refresh using ajax.
Well Exactly like a listbox control except for one difference, very simple to understand, for beginners at vb
This code is a simple way to make text scroll in a label, like a HTML marquee. It is simple and very well commented. It's easier to use and understand than all the previous examples I have found so far. Nice to use in one of your programs, if you need a little animation... Enjoy!
This simple sub routine is used to map out a directory tree starting with any given path. Can be easily modified to perform any task that requires scanning folders. THIS IS RECURSIVE!