Results for "Volume: 5_2007-2008"
Make your textbox auto complete, by simply using this control
Encrypts and Decrypts Texts and Files with Capicom 2.1. Now i've added on the fly an app sample (xml involved). If u like it plz vote !
This usercontrol uses by default the system's Regional settings, but you can change these values to suit your needs. This usercontrol comes with a nice demo program allowing you to experiment. Extensively documented. In my view a must for those interested in local settings but who never investigated the issue or got discouraged by the documentation ;) Inspired by PSC submission: Euro / Dollar input box without the use of Maskedit by Coder86 (ID 61011). Zip 11KB. (Paul Turcksin)
With this Code you can teach a Neural Net (=NN) , how the A-B-C looks like and make it recognize them! For every Letter there is 'Picture' (=5x5-"Pixels")! You teach your NN this Picture to the Letter you want it to! (What means: you can even tell your NN that a 'F' looks like a 'W' or whatever) After teaching the NN the Letters, you can make (f.e.) a 'Picture' (= Letter-Code) that looks NOT EXACLTY the same as an "F" an the Neural Net will tell you that your NOT-EXACLTY-the-same-"F" looks mostly like an "F" ! =) Modify pre-Definded-Letter-Codes in ... "\Data\Letter_Codes.txt" Credits: This code is based on 'Paras Chopra' Neural-Net Tutorial ! you also find it here on planet-source-code.com
This is User-Friendly, CPU-Friendly, NON-BLOCKING Standard Input-Output code to grab output of a command line interface program, AND, for the first time ever (in open source in VB), to send input to it as well. For example, when you go to start -> run -> cmd, you will notice that it opens up and you can type stuff in it like ping www.google.com. Now that was done before (by me and a few others on the net in vb) that we can grab the output of the ping www.google.com, and then we would lose the console, but in this one, we run the console, and we send it ping www.google.com and it returns to normal so we can send it another command! This can be used with ANY program that can output to DOS (except a few that use direct CON output). Also, as I mentioned earlier, this is NON-Blocking. With ALL the examples of STDIO that are out, C/C++/VB (except those that use PeekNamedPipe API, not really non-blocking but it does the job), this is the first to have true Non-Blocking with Pipes (may have been done but I have not seen it yet). Let me quickly explain why Non-Blocking is important. Let's say you run a C++ program that waits for input, and you are constantly calling ReadFile() to get its output, and ReadFile() is (by default) blocking, how can you send it input when ReadFile() doesn't go to the next line until it has gotten output? Only possible way is Non-Blocking methods. The code is very simple, take a look at it. I have included a very simple use for this, and it is to lookup MX Servers of certain domains (MX Servers are hosts that let you connect to them on port 25 so you can send an email to someone, hosts like 'hotmail.com', 'gmail.com', etc.). Notice I didn't put no www.hotmail.com, because the www is a subdomain, and not the main domain (your email would be [email protected] not [email protected]). This will launch NSLookup (built in windows), change the type to MX Lookup and perform the query. It took me a few days (with the help of two friends Zak and Espen w/ debugging and C++ testing, etc) to code this, and I am sharing it with coders of PlanetSourceCode, so I would appreciate if you took the time to look at it, and vote for it, and maybe a comment or two :P Thank you -Amine Haddad
This user control extends a portion of the standard ListBox ActiveX control, adding a graphical button that "opens" and "closes" to left or right.
This a simple memory monitor that tracks your physical memory, page file memory, and virtual memory. Sure, there are many similar submissions that does a lot more tasks like a task manager, but mine is small but yet informative, without taking up much of desktop space. *New version released: Please refer to submission on Memory Bar 1.3 at http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=61310&lngWId=1
If you want to control devices with a parallel port, such as a case fan or a LED or whatever, this article is for you. Every case fan on my computer at home is hooked up to my parallel port so I can switch them on and off whenever I feel like it. I've tried to keed it as simple as possible without leaving out any important information. If you find any bit hard to understand, give us some feedback and I'll try my best to explain it in more detail asap. I hope you enjoy the Article...
Steganography, is the art of covered or hidden writing. The purpose of steganography is covert communication to hide a message from a third party. This differs from cryptography, the art of secret writing, which is intended to make a message unreadable by a third party but does not hide the existence of the secret communication. Source: www.fbi.gov So, this proyect can do this. I was working for 2 week, very hard(fulltime) to finish it. This 1st version only can work with bmp files(I going to try add support to more files), and you can "attach" only file type plaintext(.txt) or image type(.gif,.jpg,.bmp,.png) im working to add .exe and other types. To end my note, i just wants to say, keep my credits, and if you like my code, you know what to do, VOTE, VOTE, VOTE and VOTE !! =) have i nice day
Did you ever want Pikachu as a pet? Now you can! Feed him, wash him, dry him! With 32 * 32 graphics adapted for gray background. Sorry, no comments.
This is an improved version of the "small, neat and simple Memory Bar" app i submitted several days back. I have squeezed the app size 50% smaller than the previous version. full details of each bar is only displayed in the tooltiptext of each respective label. since windows time is already in the system tray, i chose to added a date caption to complement it. same as before, double click to close it, u can resize it however you want, and it stays on top of your apps. if there's any request to add more stuffs to it, i might consider an upgrade for further version. Codes on cpu usage comes from:- http://www.pscode.com/vb/scripts/ShowCode.asp?txtCodeId=27505&lngWId=1 *Version 1.4: Fixed the picHook visible to false. *Version 1.5: Added minimize to tray function (source comes from allapi.net) *Version 1.5b: Some ppl complained that the program crashed (runtime error) after running for a prolonged period (division by zero?), so i added a 'on error resume next' for the timer. i know it isnt good practice but some ppl actually wanted to run this on their desktop for a long time.
MSN style alert now in windows form with title bar, it neither requires activeX control nor any DLL file. You can even change sound of Alert Window, just by changing 'PlaySoundResource' in FormLoad event form 101 to 103. You can also add your own sound, just add wave file in the resource file under the heading 'WAVE'. Gradient effect is now included in the version of Alert Window in prior version you could use only one color of heading area but in this version you can use gradient effect of two colors of your desire. You can not only change the colors of gradient of your of desire but also change the angle of gradient. For example: 90 or -90. All you need to do just change color and angle in FormLoad Event as simple as that. Another upgrade version of Alert Window is now here, in this version of Alert Window Fade-In and Fade-Out effect of form is enhanced. You can set FadeIn and FadeOut duration as you like by adding 'Step' code in ForNext loop in FormLoad Event from 1 to 255 depends on your need. Moreover some builtin icons are added that has rang from 1 to 6 you can change icon just change the icon number in SetIcon from 1 to 6 in FormLoad Event.
To Fully Manual Edit Content in MSHFlexGrid You Will Not Need Any Other Special Control
A folder browser extension for the ucTreeView (Id=59769). Using pidls, COM interfaces (IShellFolder,IContextMenu3,IDataObject,IDropTarget,IDragSourceHelper ..), Shell Change Notifications. You won't get all of explorer's tree capabilities, but all the source. Caveat: Functional but experimental project.Read ReadMe.
Play mp3,wma,wav or midi files.Save playlist format m3u and load PLS,M3U playlist.Change skin and opacity.It's also tag ID3v1 editor.
It's cool Isometric simple for beginner.I use Dabooda Turbo 2D Engine.
This program is still being tested. I need as many people to test this out as possible and tell me how efficiently this scans for errors in the Windows registry. GIVE ME AS MANY COMMENTS AND IMPROVEMENTS AS YOU CAN! ALSO, GIVE ME A CATCHY NAME TO NAME THIS PROJECT! I DON'T SEEM TO BE GETTING MANY VIEWERS. Updated 6-30-05
DC3 is a complete but limited (because I've neither the time nor the will to enhance it) VB like compiler/interpreter that can be used for learning how to create a complete and fully functional compiler. It comes with its complete source code in Visual Basic 6. It compiles simple VB like programs and creates a byte code executed by a Virtual Machine, like Java and .NET languages. Please Vote for this code!
Hi this is a new update of my Color picker. yer I know you seem them all before but this ones got a thew extras, Load and save your own custom pallets, Mix colors with scrolls, pick color from dialogs, pick a color from the screen or form a picture, Use Websafe colors, Color output support for VB,Delphi,C++,Java,Photoshop, HTML,RGB. as an Extra you can also create and save web color scheams such as Text and Hyperlinks, Web Page header layouts, and even a Web Color scrollbar maker. that you can also copy the CSS code to patse into your HTML. Anyway project also comes with some same pallet and Web scheams and colored scrollbar examples. Hope you find is usfull please vote.
Very nice ability game in which you have to keep the ball floating inside a rectangle without touching its edges. As time passes, it gets smaller and smaller!! The game includes a background image and sound effects. Hope you like it.