Results for "Volume: Java_Volume1"
This zip file contains ASP codes for Accessing Microsoft Access Database, Microsoft Text driver, Cookies, CDO mail component and many ...
Time quiz with JavaScript. User cannot anser twice. Also the quiz time will be over after 1 minute. Very easy to modify. Good for online tests.
This screen saver simulates 4 particles with gravity, and draws color changing lines between them. Gravity, refresh, and number of color bars are fully configurable, and you end up with some VERY neat pictures. I used the screen saver template at vbhelper.com as a starting point.
help user type on screen. it is good specially if you have many controls (textboxes etc) on a page.
A Variant structure written in C#, ideal for VB.NET 2005 or C# 2002/2003/2005 developers who miss the old (and, in the eyes of many, ugly) VB6 Variant. A Variant is a type that contains any type of variable and can be worked with "automagically" without heavy typecasting procedures. (System.Object is not a variant equivalent because you cannot do things like addition with it.) One important difference about this structure: It becomes what you do to it. So if the value is a string and you add an integer of 12, the value becomes an integer. If you want it to remain the same, you should typecast first--for example, add "12" rather than (int)12. Changes for v2: - All type properties ("String", etc.) are now private. - Added implicit/explicit custom operators, so typecasts now work naturally. For example: string myString = (string)myVariant; // no longer myVariant.String ... float myFloat = (float)myVariant; // no longer myVariant.Float ... bool myBool = (bool)myVariant; // no longer myVariant.Boolean .... Changes for v3: Quite a few. Added DateTime support. Implemented IConvertible. Changed all the private type name properties to public "To[type]()" methods. Changed the naming convention to conform to IConvertible. Changes to v3.1: Removed many unnecessary if statements. Made some documentation updates. Changes to v4: Removed the "Type becomes what you do with it" rule for numeric operations. Example: adding an integer of 1 to a float of 1.1 results in a float of 2.1 rather than an integer of 2. Changed operator overloads to automatically adjust the type if the operation causes the resulting value to extend numerically beyond the value of the type. For example, if an integer (Int32) operation results in a value than can fit into an integer, the value is changed to a long (Int64). Changes to v5: Changed operator overloads so that if auto-converting to a compatible type, the new type is not smaller than the previous type; Made changes to CBln() to default to True if the object is a non-empty string; Added lots of documentation. Change to v5.1... it's IsNumberable, not IsNumerable. :) Also, To[Type]() should default to the specified type. And SmartMath() method name changed to VariantArithmetic(). Changes in v6... Added TimeSpan type support; added IsDate, IsTimeSpan; updated operator overloads, including equality (==).
This class makes using a tray icon a breeze. I made an example window, with icon and colored text. The system tray icon is created with NOTIFYICONDATA and the events are handled by the window.
I've been looking around for this code and no one could provide it. So finally I wrote it. It checks for duplicates in an array and returns true if there are any.
Your search for protecting your web content ends here. All in one scripts for (With Examples) protecting your web content. Simply download the file & try it yourself.
This code acts as a splash page and preloads images that the main site would need to provide lower loading time. It has a status bar indicator of the percent and number of images that it loaded. It also has a loading bar and option to skip the loading process. Its great code and you need to check it out!
Create a Coolbar (like MS Office 97) from a normal VB toolbar. It's not necessary to subclass the form or something like that, just a few lines of code, and that's it.
Explains how to download http with VB.NET, includes a simple example.
A simple hospital system. Can add, update, retrieve and delete records like patient, ward, employee... I think it's helpful for those who want to know about how to update and delete record. Please give your comment so that I can improve on it.
It can load a text file or take typed text and encrypt it using a very simple algorithm. More MFC stuff for school. Hope you like it
When your user closes your form, it shrinks and slowly drifts off the screen in the direction of YOUR choice! (o: A simple code! (o:
Cool, you can change backgroud betwen a couple of colors from an applet menu!!... bote for me! thanks
Change and freeze the moneyvalue in the game Stronghold
All kinds of stuff to an array, including: Read file; print array; print stats (average, range, mode, median); add to the file (multiple nums); delete from file (one num); sorting (bubble sort / replacement sort / insertion sort / quick sort); find a number using binary search *** Please rate this code and include any suggestions ***
It scans open ports on a system specified by the user. Adapted for developers who want to learn about the basics of socket programming.
a notepad developed in java
This code will make your form stay on top of any other windows running, just like winamp stays on top.