Results for "Volume: 6_2008-2009"
Fast API based file/folder scanner. Single File solution with no dependencies to add file processing to any Utility Project in single step. Scans a path (applying optional Attribute, Mask, Date and Size filters + multiple file extensions and simple pattern matching). Can also optionally scan nested sub-folders and/or sort results. Returns the files & folders by raising events. I originally created this a few years ago when I was creating many File Utilities. Hope it may be useful as example of API file handling and WithEvents. I welcome feedback (votes always appreciated)! UPDATE: Fixed a resource leak and simplified the use of extended file details.
Read the text on the picture
VB has good event handling functions. The great WithEvents and VBControlExtender. The bad thing about them is, WithEvents can only be used for early binding, and the VBControlExtender is only for controls. So what to do in case you have an object like "InternetExplorer.Application" and want to catch its "Stop" event? Right, you guessed it: grapple with some nasty COM interfaces :) In this last part of my low level COM project I want to show you how to use IConnectionPoint to recieve events from objects. Oh, and you may see some equalities between this submission and the event collection by Edanmo. Edanmo has some functions in there I really was frightened to code. ;)
Introduction: EngineAAK Ver 1.1 Create Fire Explode Smoke use Direct 3D
I searched online, and downloaded every spell checker I could find.. Most of them hooked into M$ Office libraries, and were not suitable for a finished product, the others were just too slow or inaccurate to be usefull.. So, I took the best ideas from the projects I did see, and made this.. The Ultimate Spell Checker!! Check it out.. Context menu suggestion and replacement options, suggestions returned with configurable tolerance filters, and sorted ascending/descending by relevance, (matches profiled with api driven routine), - api compression, three different dictionaries, and even with the largest, (270,000 entries!), search returns, and suggestion queries are near instantaneous! Multiple concurrent wildcard matching, punctuation filters, highlight mistakes and corrections.. etc Addendum: Added a auto correct feature, still needs some work, particularly the api timer, I will update again in a day or so.. Tell me what you think.. If you like it Vote! Added an update: Oct 17th. Now has automated checking with three modes, timed, by word/sentence/new line. Update Oct 18: Added an OS check and a Huffman compression class as an alternative compression scheme for 9x/Me users, and a manifest for xp users.. Working on a translation and reference dictionary now. Oct. 19: Added some filters, word auto highlights now when right clicked. Definition dictionary should be done in a day or so. Update!!! Added the 'Penultimate Dictionary' 221 thousand word definitions, lightning fast lookups, word filters, tooltip definitions, and many updates.. Check it out. _________________________________________________ Final Update!!! The last update is here! Now with three sample translation dictionaries, English to French/Spanish/Italian. Added more comments and some fixes/optimizations, and instructions/sample code to add any dictionary/thesaurus to the program. Enjoy.. Thanks to everyone who voted..
This is a very fun tank game that allows you to shot and move in any direction. Code is very well documented and I’m sure that anyone can learn a lot about how to use Sin and Cos with VB for rotation and movement. Please leave me comments and vote. If you have any questions please leave me a comment and I will be quick to leave you a response. Thanks to all who check out my game-MadGamer
This code helps to remove some of the more annoying things about designing a GUI in VB. All of the classes here do so by subclassing controls. The classes included are as follows: - CAnchor: Mimics the behaviour of anchored controls in .NET, so that you aren't forever adding code to the Resize event of a form. - CMinMaxSize: Allows you to set the minimum and maximum sizes for a form. - CMouseEvents: Gives you access to the mouse events in Windows that VB does not expose - i.e. hover and leave events, and mouse wheel events. - CRTBLinks: Makes light work of automatic URL detection in the RichTextBox. - CScrollbar: Gives you access to the 'proper' API scrollbars as opposed to VB's ones. The project group includes a test project for you to see it all in action. NOTE: You may have to make the whole project group before it is usable as the test project depends on the library.
Your GUI dream come true. 20 usercontrols to replace MS common controls 1, 2, and 3, the richedit and masked edit libraries, plus nice looking popup menus and a CC 6.0 friendly replacement for VB.Frame. Lots of goodies here. UPDATE: major refactoring done. vbBase.dll is history. now there is only the ocx and the test project. All api declares have been moved to a tlb, which allows for simply toggling overriding those declares using a compiler switch. This means that every singe allocated resource is tracked to ensure zero leakage. (See screen shot) Serious optimizations for size and speed. Eight bottleneck functions written in pure assembly. This is a veritable mountain of useful code, whether you want to take the time to figure out how it works for yourself or just remove the parts you need for your app. Recommended highlights: pcIntegerMap & pcStringMap for hash tables, mSubclass for asm subclassing (not Paul's, even better!), and mDebug for some techniques you could use to track all allocated resources in other projects.
Simple RSS reader, reads the most comon feeds. Not tested with all.
This code demonstrates two things: firstly, it shows you how to get a list of network adapters, and secondly, it shows you how to bind to one of them that the user selects and connect through it. This is useful for users who have a separate internet and LAN connection, or two LAN connections, or whatever else. To test it, just run the program, and listen on a port and adapter, then type your IP followed by a colon and the port you selected into your browser's address bar and the program will return the headers the browser sent to the browser. Enjoy!
A little control: I'm not sure whether 'ucComboTrackbar' is the most appropriate name, but, which one? Quite basic, though it supports 3 appearance styles plus themed one (when available). And not much more... Try it yourself :-) (Last version: 1.2.5 - ~25KB zip)
VBShare will format your VB6 code (and probably lower, but I coded it with VB6 in mind, and used it as a reference) with HTML to make sharing your code easier. VBShare will highlight both forms of comments and most, if not all, keywords, and shouldnt return any false positives for either. Default colors for the HTML are the same as in VB, green for comments (#008000), blue for keywords (#000080), black for normal text, and white for background. All colors, including program font colors (and program fonts), are customizable in the preferences section. HTML format includes a 'water-mark', which you can edit in the preferences section, as well. The water-mark is just a block of customizable text, which can have HTML tags in it. The program also features a preview window, where you can view the current state of the HTML, so you can make changes before saving the final product. Also included is a print function which will allow you to print either the raw VB code or the HTML formatted code. This project is not quite finished, but I sort of lost interest in working on it, in the end, hence the release of the source. As you might be able to tell, I was planning on making it quite extensive and selling copies, but my lack of interest squashed all hopes of finacial gain, from this project. You'll see the list of serials, and Serial BAS (modSerial.bas), and the prompt for a serial on the splash screen; all of which are remanents of such hopes. When you run the project, or exe, just pick a serial off the list and put it in the text box, either that or remove the serials all-together. Feed-back and comments are always appriciated, and thanks for any positive comments made. I'd also appriciate it if you'd take a minute or two and visit my site, http://unsticky.net. - unsticky unsticky programming unsticky.net
It saves your screen with a magical, flying toaster and its side-kick: toast! DUH!
Hi, This is some code I made about 30 min ago that will phase in the commandline Arguments. A little like what you see in C++, supports command line Arguments with spaces, quotes, find out the number of Arguments. I also included a small example Hope you may find it usfll.
To show you how to talk to MySQL easily. This makes it too easy.
to download a file to your computer from the internet, or anywhere else. You could even use this to copy files on your computer, or on a network. it works in anyway you can think of, even FTP. Give it a try ;)
Dissecting table data from HTML, and putting it into a ListView Control. You can do anything you want with this data, and you can setup the screen to automated many different web pages, to harvest data directly into your ListView control. Saving the data is another thing, I didn't set it up, but it's very easy to figure out.
Yahoo YMSG Protocol Example. Shows how to login to the service,and send/recieve messages. Needs a dll which you can get here: http://www.arubs.net/YMSG12ENCRYPT.dll
Intellisense for DataEnvironments Recordset Commands It adds the intellisense feature for the DataEnvironment commands that return a recordset. It identifies the DataEnvironment and the Command name as you type. It works both cu "!" and with ".fields(" (ex. DataEnvironment1.rsCommand1!FieldName and DataEnvironment1.rsCommand1.Fields("FieldName"). It ain't perfect but it can be made better (if you can, please do so).Anyway, this is the kind of feature that I was looking for a long time. Couldn't find it so I've made it. I hope it proves useful to you too. Large portions of this code were adapted from grigri's addin: http://www.Planet-Source-Code.com/vb/scripts/ShowCode.asp?txtCodeId=53146&lngWId=1 I've tried to combine the two addins, but the outcome was too unstable. Enjoy!
Don't just judge its cool or not!!!Its really amazing application with professional touch. Learn VB with database also including impressive interface design. See screenshot for more and download applications... and ya don't forget to give your feedback to me at my mail address. Visite : http://geocities/priyank_modi/