Results for "Volume: 5_2007-2008"
I created this project to learn how to make a WebControl and because I needed a Server-Side Hidden Input (HTML Hidden Input running as server wasn't good enough for me). In the IDE is shows itself gray to indicate its hidden version just another TextBox. It demonstrates how to build a WebControl, ControlDesigner, Assembly Prefix Attribute, Custom Toolbox Image, ViewState, IPostBackDataHandler and more. It renders a TextBox control in the IDE but a Hidden Input in the browser. There are both C# and VB.NET versions of the project included.
Here is a way to Encrypt/Decrypt a string, using the .net framework's enc/dec libs
This is a class module that performs regular expression searches in a string.
how to use a listview part one by me :p
This application consists of two parts, a client and a server. The client can connect to the server and reboot the computer running the server. There are local details on the server.
This is my example of a quick and simple menu. This is a good method of simple menus, better then telling someone to enter 1 or 2 or 3 then hit enter to do this and that and i also think thats so boring. All you gotta do is just press the button it tells you then the operation will execute
how to do a tray icon with a pop up menu don't forget to check out Mikes L33t chat thats going to take over the chatting industry some day coding in delphi www.voodoochat.com
This class can change size and location of contlols on your form if you 1. Resize form 2. Change screen resolution
A stack is a LIFO (Last in First out) collection. It can store any kind of data and has the possibility to extend its maximum number of objects. Comments would be greatly appreciated!
Takes a picturebox, and it's contents, and runs an animated mosaic transition through it
THIS IS THE "FASTEST" ALGORITHM FOR CONVERSION OF ROMAN NUMERALS INTO NUMBERS.IT WILL CONVERT ALL ROMAN NUMERALS INTO NUMBERS IN RECORD TIME.IF ANY ONE KNOWS ANY FASTER METHOD PLEASE LET ME KNOW.
WinKill destroys a window if you know its title bar caption.
This project shows how to combine treeview, listview & GDI+ classes in a picture browser application. Some of codes collected from the net & retouched and the others written by me. If you like do not forget to vote! Thanks in advance
Returns the current user name using a dll call
With this simple, and very fast, routine you can generate a series of non-repeating random numbers. You can select a series of 10 numbers, or a series of a million...It doesn't matter. Can be useful for image fades, deck shuffling, random tip of the day, etc. - It even tells you how long it took to generate the series.
This code, which was inspired by a similar snippet of code by Ian Ippolito, permits tiling an image onto a form's background. This variant, though, resides in a module and is called by a form instead of residing within the form's code itself. This permits using the feature project-wide without redundant code all over the place.
This code, which was inspired by a similar snippet of code by Ian Ippolito, permits tiling an image onto an MDI parent form's background. Getting an image onto an MDI parent is easy. Getting a tiled one is another story. We could try using a Clipboard operation, or build a big tiled background and save it and then laod it into the MDI parent's Picture property, but these are nasty, anal-retentive, and likely to simply not work. This code, however, works...
It was designed to help PHP programmers store commonly used code in a central repository. Code can be stored in categories for easy managment.It was decided to keep the interface as simple as possible as it will be used by PHP beginners. the use of encripted text files was also chosen over a database storage system to keep things nice and simple and easy to configure.
Resizes two text boxes AS a divider is dragged left or right. Maintains full bounds checking. The methods used can be applied to other controls as well. This is a form of splitter bar.
Want to sort 5,000 10-byte strings in about 1/10th of a second? This will do it (at least on my PII-233!). The insertion sort manages the same task in about 60 seconds (even when optimized it still took about 15 seconds on the same machine).