Results for "Volume: 2002C"
Multiple POP email checking utility. Skinnable. Encrypts passwords. Right click on tray icon for popup menu, left click on tray icon for popup summary of your email accounts. I have been meaning to pull this together for awhile now, this is a mail control I wrote quite a while back. I wrote this program using my control to check mutliple accounts, then added Jeff Deaton's skin application. I ran out of time so the code is not very efficient or readable, so good luck working with it and have fun. =)
So many effects that I can't have a small enough picture for them all! Check it out for unlimited colors and 36 different effects(Including some you've never seen). Please Vote! I am working on turning this into an ActiveX control.
GoXML is a wrapper class for MSXML 2.0 / 2.6 / 3.0 / 4.0, offering access to some of the more basic elements in your xml documents. Use GoXML and easy-to-learn XPath to open, create, modify and save XML documents without a hassle. Don't worry about available MS XML Parser version, GoXML will autodetect it for you! The included code sample illustrates the use of all methods and properties. PLEASE VOTE OR COMMENT, THANKS!
It is method that delay time as much as time that designate. There is no problem even if use over midnight. With Sleep function, use and lowered CPU's use rate.
Hey !! This Program Will Shake Your Desktop Using Simple Tricks. Double Click To End.
Error trapping in API Functions? Remember Err.LastDLLError? No description was available for you. With this function (LastDLLErrorDescription()) you can get the description of an API error. Includes a tester and is FULLY(!!!) commented. Comments or suggestions r always welcomed. Thanks to all the people who voted :)
Envision 2d Engine BETA 2: Heaps of easy to use graphics functions -Animation in one line. -Easy sprite in one line. -Screenshots: Incremental file names. -ZOrder: Drawing objects in order. -Tiling: Some function incomplete Existing Functions: blending (by percentage), rotating, copying using a colourkey, creating masks, printing text with border/bg, and printing a custom bitmapped font. It also includes the "Envision" engine which has a few functions: validating paths, easy FPS counter, nice "stopwatch" style timer. To it use simply compile to a DLL and add a reference to it in your app. This app is a prelude to a pure VB 3D engine I am planning on. The engine will be based on the code I've already posted here - so have a look at my previous submissions I've spent a while on this so any feedback positive or negative (preferably positive) would be appretiated. PLEASE PLEASE vote!
As a lot of other people's reasons for posting source I post this because I couldn't find any help with the MS Data Environment. So after playing around with it I finally got it to do what I wanted it to. This Example is composed of basic ways to manipulate the Data environment. Add, Edit, Delete, Search, and pull report information. Use of ADO Transactions is also covered. Hope you enjoy it and learn something. The example uses the basic contact database concept. Please vote if this code is useful.
This code is great if you need to spice up your program with a bit of color. It is a cool looking menu which works like any normal one. By the way, please vote and leave comments!
Do you want to make your loops 100% faster? Here's how : Many of us have used several times DoEvents, to supply a bit of air to our App, on Heavy-Duty times such as loops for updates or inserts on recordsets etc. As we most know, DoEvents processes Windows messages currently in the message queue. But what if we wanted to execute DoEvents only in times, when we want to allow user (Keyboard and Mouse) input? ( A special "thank you" to all of you who rated this article)
This is an Home Inventory program that uses the cuecat that was given out by Radio Shack. It also show ADO connections Data Reports. You can keep track of your movies, what you have and who borrowed them as well if you sold any. You can scan or key in the UPC from movies as well as groceries. This still needs a little work, but I am on the right track.
Add professional look to your app with this easy splash screen code. Small code but nice output.
VBPScan documenter is a source code documentation generation program, originally submitted by kerlin, but in it’s original form even the author noted some deficiencies. With my own need for some source code documentation, I have taken the original program and expanded it’s scope, hopefully creating something that everyone might find useful. The program now reports on class properties and user controls; the HTML pages now use a stylesheet, to make global formatting changes changes easier; remarks entered in code that immediately follow a sub/function/property declaration will be shown as descriptions; additional class information is shown (like the instancing, MTS mode and persistance); all entries are sorted; function return value types are shown. Also, a few bugs were fixed. I’d appreciate some constructive comments about the code. Fixed bug: program now fully resolves file paths where a form/class/etc is not in the same folder as the project file. Fixed bug: program now correctly reports on projects where number of forms is greater than 10.
This tutorial is third in a series about Win32 API for graphics. In this tutorial, you will learn about functions that help draw various geometric shapes and how to use them in code, with a working example to download.
Well, my IGCSE mocks just finished yesterday so I was thinking what to do...so just to brush my skills (:D), I made this... We all know what the heck are INI files (if you don't, read their brief description at the bottom)...but did you know that these INI files have a size limit? YES! You see, when you call the Windows API, you will not be able to read files that are bigger than 10kb (on win 9.x i think...correct me if I am wrong) and 64kb on win me/nt/2k. So the next time you try to read a value that is held in position after the 64k/10k mark on a file, all u'll get is a blank (you can do the GetLastError API to see what error was, never tried it though). But HO HO! (look who comes to the rescue) During the past 1 and a half hours (or something), I just wrote a class that will read INI's all by opening them for input and output, and ofcourse, parsing them on their way. So now, throw away ur existing API INI classes and replace these. Features: 1. No more INI File size limit 2. Useful for writing file formats. Yes! For example, I previously wrote an INI script format(crazy idea, huh?) in which some values of keys were actually the names of other keys and in this way, a flow of data can be formed that doesn't have to follow hard-coded format. 3. As fast (well, almost....now, reading a teeny weeny value from a 500kb file that contained 50,000 items took 5 seconds or something on my computer...btw, the file was generated to test the class. Also, there is hardly any noticeable difference between the API and this class even if the file is smaller than 64k). 4. Other features that were included were: Read/Write value (basic INI I/O), Delete a key, Delete the whole darn Section, get all sections (only sectionsuseful for enumerating...file formats!), get all keys with their values all together (useful for enumerating...again file formats!), write values all at once from an array (instead of doing them one by one, which may get slow). 5. It's a drop-in class...just drop and use! very easy parameters to follow :) WHAT INIs ARE: INIs came along with the advent of Windows OSes. They were initially (and, well, still are) are used for storing settings of a program. You can say INI is a standard file format for saving settings (I say standard when I mean Windows standard). Windows supplies APIs that make it easy for us, the developers, to read and write values using just plain strings, which the Windows APIs organises into a format in a file. The format is: 1. There is a section that represents a number of keys (both of which you set) 2. There are keys that represent values (you set the values too) 3. Then there are other sections, 4. with other keys, 5. with other values. 6. blah blah and oh ya, I didn't do an example cuz I think almost everyone might have come across INI files (and anyway, it will take only 3 lines max to write a value to a file using this class) (vote if you like :D...I dont mind, nor do I bite...so criticism [not in a harsh way, mind you] may be appreciated.) Tata!
Demonstrates using GetDIBits and StretchDIBits to manipulate images, and also shows fast ways to do alpha/additive/subtractive blending, and a variety of effects.
Explains the basic technique used to achieve data encryption and get you on your way to understanding Cryptography in general.
WARNING: EDUCATION PURPOSES ONLY!! :) Okay, so there was a guy pesturing me on MSN Messenger, and since my Messenger is always on, it was even more of a pain (block him and he makes another address and pestures again...he is a friend tho, but just a real-@$$ pain)...so one day i thought let's be a pain to him. so i made a flooder...it had a very sucky GUI first and it was subclassed, but now it uses COM events, functions and props of messenger and does it's work. So what does it do? Well, it floods. :) It floods either by messaging or emailing (heck, it can undergo the firewall if the firewall has granted access for the messenger to access the internet, as the flooder uses messenger itself to send the messages and emails :) ) I also noticed before that the MSN servers blocked the messages if many of them were recieved at a very short time...well, now you can set automatic intervals between them. Features: 1. Unlimited flooding. 2. Upto 5 varied messages can be continuosly flooded. 3. Upto 5 varied intervals between each message (so that MSN servers think it's really you who's writing these messages :) ) 4. Select 1, 2, 3 or more (or all) of the online people to flood. 5. You can bomb emails also! Yes, all through the good ol' messenger (can select multiple people to bomb at once). 5 types of messages and 5 intervals also supported in this. 6. Looks pretty cool when someone is online and you bomb their mail, they get this thunderstorm of those messages that appear on the bottom-right of the screen. :) Again, this is for education purposes only (well, you can learn how to use the MSN's COM classes with this atleast a little). I WILL _NOT_ BE RESPONSIBLE FOR ANY DAMAGE, DESTRUCTION, CHAOS, HAVOC, BAD MCDONALDs BURGER OR DIRTY TOILET TOWEL ARISING FROM THE USE OF THIS PROGRAM. i don't mind votes...neither do I bite.
Are You Ready to unleash the power of your concentration..............Try this program HAHAHAHAHAHHOHOHOHOHOHEHEHEHEHE. Visit www.gauravcreations.cjb.net for cool programs
16 januari 2002 bmp to jpg compres with Ijl11.dll