Results for "Volume: 4_2005-2006"
The Ferrari of blit routines .. (update 4) better comments, more simplification + 1 type var rename
Hello everybody, this is my first source code here, i hope you will enjoy it ;-) This source code list the processes running on you're computer and list their individual CPU usage. I mean that for each process, you get his % of processor time, exactly like in the windows task manager.
Address book using MS access and ability to generate barcode and print preview it. Printing is just for sample. Ability to import Excel file and write it to access database. Ability to go into any access database. don't know what to describe, it's just an address book that need to capture data from excel and generate barcode for each of the name inside the database.
As I move closer to acquiring XP and also moving towards .Net, I came across these two pages on MSDN. One page is a free, softcopy book converting VB6 to .Net & the other actually pertains to VB6 and Vista. I found them worthwhile, and you might too.
This is a usercontrol written in vb6 that enables you to create your own dynamic popup menus. For example, instead of creating hidden menu's in the menu editor, giving each one a name, or, creating an array of holders for dynamic entries, you can simply do this: UserChoice = popMenu.Popup("item1,item2,item3") A seemingly simply thing, but has been quite useful for my projects, so I thought I would pass it on. It started off as a class, but I turned it into a user control so it would be easier to use for beginners. Hope you find it useful -
Free Windows Software
A simple puzzle game in Visual Basic, you can choose default picture or enter your favorite pictures in run time, puzzle parts are from 2 to 30 for each side (X-Y). This game contains something about MDI forms, User Controls, Drag and Drop, ADO and API Sounds. It uses an Access MDB File as database. __________________________________________________________ September.30... Added Difficulty Mode and Solve Menu.
Whenever I download something that interests me from PSC, I drop the unzipped folder into a folder called D:\MyPscDownloads (this can be changed in the code). This program enables me to easily view and search the titles and descriptions in what are often unintelligible folder names, link to the project and to the PSC web page. This is my first submission. Thanks to all those who submit to PSC and help beginners like me to learn. I hope I've given credit to everybody who's code I've used. Suggestions for improvement would be appreciated.
This program is useful to create database,modify database,add table into database and etc without Microsoft Visual data manager.
This is my first attempt to deal with Unicode. Please remember that the code isn't intend to fully duplicate MS Combobox.It just fulfill my application.The purpose of this posting is to bring your attention how important Unicode is and to show you how to develop Unicode control based on MS ComCTL32.DLL. Tested on XP (EN) SP2 and VB6/SP6. Update 1:Add cImageList Class;Correct Paul's Self-Subclasser Unicode issue;A good Example is here. Update 2:Revised Demo Update 3:Heavily rewrite to 'almost' simulate MS Combo Update 4:Fixed 'Overflow' error when apply Font with Unicode Font name;Add FindItem_Unicode property (28/may/2007) Update 5:Removed Compilation condition 'Unicode=1' with auto detection of Windows Update 6: CreateWindowEx may fail if applied XP Theme with a MANIFEST file. (20/June/2007) Update 7: Use Paul's Updated Self-Subclass and LaVolpe's more robust Version to solve possible UserControl Terminate error. (20/April/2008)
Now support Winamp DSP,Winamp Vis plugins, Language.Allow you write new plugins for this (Vis like M3P_vis* or genaral plugin like M3P_gen*).Rewrite library database for faster (load 507 files in 0.72 sec). Support graphic menu for skin and rating . Code inlucde 2 Example Vis plugins, 1 gen plugin. See screen shot and please vote for me.
Think 3D ! Sometimes in programming, the current loop statements such as for...next or do...while can't help us and we need more. This is a simple and funny program that shows you how a function can refer to itself and make a loop. I use this function to make a tree, because I like trees, but you can use it for making virus growth simulation!, if you like. This program may help beginners learn more about graphics, mathematical algorithms, fractals, API, recursive functions, sounds and some VB controls. I'd like to hear from you, so please leave me a note. __________________________________________________________ August 15... First release. __________________________________________________________ August 17... Added "Leaf Level" & "Width". __________________________________________________________ August 21... Added "Change Background" & a few small changes in source code. __________________________________________________________ August 26... Added "Wind Direction" & "OnTop" & improved for using higher values of "Branches per Step". __________________________________________________________ August 30... Added "Width Scale".
This Program is an example how to call and use multiple Web Services from http://www.webservicex.net/WS/default.aspx I designed the program so I can cut and paste the code I need into other programs. This is my first submission, so please be kind. The program is not fully completed and good use some improvements and updates. Please give feed back.
This is a very basic intro into custom texture mapping. It shows the small differences between drawing a simple triangle to a trapezoid to a 3d texture. It also features a simple 3d texture animation. A form was missing, I've added it and re-uploaded the zip. Enjoy!
An application that allows you to open a Microsoft Access or Foxpro Database and then run/execute sql queries through them. uses ADO,datagrid and common dialog box. Please vote! tnX! =)
Using datareport without data environment its only a adodc connection
I created this control because i was sick of putting a command button in a couple picture boxes to get the effect of the button being part of the combo box control. The button click event and most of the combo box properties and events can called from the single new control. It's pretty slick. I use the control to list differnt names and categories. When i need to add a name or category i use the click event from the command button to launch a new form which i can enter the new data. At the end of the click event i refresh the data in the combo box. Hope someone else can get some use out of it. I know it's simple... i looked for something like it, but found nothing... granted i didnt search too long since i knew i could create it in only a few minutes. I should have done it a while ago... LOL. Oh well... vote for me please. Thanks!
|Updated| - There was an error starting up "Path not found", and it had been fixed now! Include musicplayer and skin package maker! This music player has it all, ripping you're cd's, playlist that supports cd-audio and normal media types, skin support and save the playlist! This music player is made by forms, with api I made a kind like active X controls, but it uses less memory! Give comments or vote if you like it!
This is a simple radar simulation. The radar sweeps around in a circle looking for aircraft using the 'Dot Product'. Once it finds the aircraft it remembers it's location and plots it on the scope. The aircrafts last known location will then gradually fade until the next time it gets hit. If you swing the radar too fast you will miss an aircraft (just like a real radar unit). This radar demo was inspired by the following two submissions: 1) Title: Air Traffic Control Simulator Author: seyi Ogunbanjo http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=66211&lngWId=1 2) Title: A Radar Screen Author: Kenneth Foster http://www.planet-source-code.com/vb/scripts/ShowCode.asp?txtCodeId=66278&lngWId=1
This is an improved version of the spell checker from Shelz's COTM "A Comprehensive Spell Checker" at txtCodeId=65992. It includes a modified Russell Soundex phonetic algorithm and the Levenshtein Distance algorithm. It is now a *very* fast and effective spell checker solution... It impressed me with its most effective and concise spell checking algorithms, a perfect demo project, and the smart way it provided a complete database of words in a 1.3 MB download... But like many other spell checkers it had a common limitation... The basic aim of the Soundex algorithm is for names with the same pronunciation to be encoded the same so that matching can occur despite minor differences in spelling. The Soundex for a word consists of a letter followed by three numbers: the letter is the first letter of the name, and the numbers encode the remaining consonants. Therefore, only words beginning with the same first letter are compared for similar pronunciation using the standard algorithm... This version of the Russell Soundex algorithm has been modified to allow the matching of words that start with differing first letters so as not to assume that the first letter is always known. In this version the encoding always begins with the first letter of the word... The Levenshtein Distance algo marries perfectly with the results to identify the correct spelling for the given (mis-spelt) word every time! A search on the word "apolstry" with the minimum successful Levenshtein Distance returns just four words where one of these is "upholstery"... [Version 2] - Removed the dependence on the DAO library and is contained in a single text file. The Soundex encoding has been extended to include a 'reverse soundex' of all words (encoding from the end of the words backwards as well). On my 866MHz PC the access database took minutes to create the words database and was quite slow processing the lookup query, particularly after adding the reverse soundex to the query. Creating the database now takes 25 seconds and the lookups are now fast enough to be in real time (updated with every text entry change event)... [Update 18 Feb 09] - Improved speed of data loading at form load from 1.2 to 0.9 seconds on 866MHz PC. On my Athlon 4000+ the database builds in under 10 seconds and the data loads at form load in well under 0.5 seconds. On your average PC this would be fast enough to unload the form every use and re-load it when needed without the user experiencing any delay... [Update 21 Feb 09] - Added code to normalise words file to expected format (removes empty lines and converts comma delimited files)... [Version 3] - Considerably improved speed of both Soundex and Levenshtein Distance algos by eliminating Mid$(s,i,1) creating a temp string for every character and comparing chars, to using copymemory to grab the unicode value and comparing int's instead. I think the MidI code used was authored by Bruce McKinney, but if it is yours let me know and I will give you credit... [Version 4] - Injected some asm machine code into the database creation sub and now builds the database in a blink! Big thanks to Robert Rayment for your generous help with as$embler Happy coding, Rd :)