Home Featured Top 40 Software Reviews Link To Us Advertise




russian traditional clothing

video hosting

лучшее сео продвижение сайтов

томск новости

Useful Resources:

C: \ Web Development \ Java & JavaScript \ Spinner 1.1 \ Author


Opens in new window

Spinner 1.1 - Author Info Page

Description: DateSpinner, hex and formatted dollar input for Java JSpinner... (more)


Author Info for Spinner 1.1

Author/Company Name: Canadian Mind Products

Country: Canada

Web Site: http://mindprod.com

Programs listed: 86

Share |


Other listings by this author

Wavelength iconWavelength 1.3   (Downloads: 239)
Wavelength creates Color objects given the light wavelength or the frequency Wavelength creates Color objects given the wavelength or
the frequency of the light rather than the usual RGB or HSB.

instead of:
Color c = new Color(255, 0, 0);
use the frequency in nanometers, and gamma 0.0. .. 1.0.
(gamma is intensity/brightness.)
Color c = Wavelength.wvColor( 400.0f, 0.80f );
The visible range of the spectrum is 380..780 nanometers.
Smaller is bluer.

or using frequency in Terahe...

Common13 iconCommon13 1.3   (Downloads: 257)
common utility classes that work under Swing Java 1.3+ common utility classes that work under Swing Java 1.3+
Includes:

CMPAboutJBox: a proper about box for Swing apps/JApplets that provides useful information.
HybridJ : converts Swing Applet into an Application...

Submitter iconSubmitter 16.4   (Downloads: 1031)
Submitter will submit your PAD *.xml program descriptor file to 199 PADsites. Submitter will submit your PAD *.xml program descriptor file to 199 PADsites.
Unlike other submission programs, it submits only to PADSites
that welcome automated submissions. Compose your PAD *.xml file using a
program like PADGen, then upload it you your website. Then enter the URL
of your website directory where you upload pads and the name of the pad
itself e.g. hypotheticalprogram.xml, then hit SUBMIT. It also has a
...

VerCheck iconVerCheck 4.4   (Downloads: 299)
VerCheck checks websites for new versions of the software you use. WHAT IT IS FOR
**************

I used to check over a dozen websites each day to see if new versions of the software I use had been released. This was time consuming and error prone. VerCheck automates this
process by checking the websites of the programs you use to see if the version numbers have changed. It comes preconfigured from the factory with 64 applications.

HOW IT WORKS
************

For each applica...

Encodings iconEncodings 1.6   (Downloads: 224)
Applet to list all supported encodings (character sets) supported by Java. Applet to list all supported encodings (character sets)
supported by your browser/java.

To install, Extract the zip download with WinZip,
(or similar unzip utility) into
any directory you please, often C:\ -- ticking off the (user
folder names) option. To run as an application, type:

java -jar C:\com\mindprod\encodings\encodings.jar

adjusting as necessary to account for where the jar file is....

Unicode iconUnicode 1.8   (Downloads: 355)
Used to test your computer's Unicode support Used to test your computer's Unicode support and your font's
support for particular characters, or as a learning to to
explore the Unicode character set. Displays in Courier,
TimesRoman, Symbol, Dialog and Helvetica.

copyright (c) 1996-2008 Nic Fulton nic.fulton@reuters.com of
Reuters Ltd. Modified by Roedy Green
of Canadian Mind Products with permission.

To install, Extract the zip download with WinZip, availa...

Volser iconVolser 1.2   (Downloads: 344)
Gets the 4-byte 32-bit binary volume serial number in Windows. Gets the 4-byte 32-bit binary volume serial number of a Windows
disk drive assigned when it is formatted to provide and almost unique id.
Don't confuse this with the volser(, the string name,
or the manufacturer's disk serial number assigned to a hard drive at the factory.
Uses JNI and C++ native code.

Consists of java and JNI you include in your own code.

You can test with

C:
CD \com.mindprod...

Untouch iconUntouch 2.4   (Downloads: 405)
Reverts files dates back if the files have not really changed. Documentation on the original student project outline
mindprod.com/projects/untouchproj.html
This explains how it works and some of its uses.

Untouch supports the following command line switches which appear
before the directories.
-c or -clear = clear history first and take current file times as the new revert-to point.
-f or -force = revert files back to previous dates whether they have changed or not.
-h or -help =...

MimeCheck iconMimeCheck 4.5   (Downloads: 445)
Check that a server is sending the correct mime type for any given URL. Check that a server is sending the correct mime type for any given URL.

Helps you check that a server, possible not even yours, is properly configured....

Password iconPassword 1.7   (Downloads: 521)
Generates random passwords that are hard to guess. Generates random passwords that are hard to guess. It uses a crytographic quality random number generator. The passwords are generated locally in a Java Applet. They are never transmitted over the Internet, even in encrypted form.
You can also run it as a standalone program, invoking it with
java com.mindprod.password.Password
or
password.jar

You can also run it online at the mindprod.com website without installing it....

Accumulate iconAccumulate 1.3   (Downloads: 179)
Used to accumulate values by category. Used to accumulate values by category. It might be useful
for example in a billing program to accumulate hours by
various categories.

It could be used to count how many times various words
occurred in a document.

All you need is:

buckets.accumulate( "somecategory", someamount );

And Accumulate looks after creating the buckets to
accumulate new categories for you.

e....

Primes iconPrimes 1.4   (Downloads: 462)
calculates the prime numbers 1..N, tells you if N is prime etc. calculates the prime numbers 1..N, tells you if N is prime etc.

Prints tables of primes.

Computes the prime just below or above N.

It is useful in computing optimal Hashtable sizes.

Java source included....

NetworkCam iconNetworkCam 1.6   (Downloads: 250)
Java Applet to view a Webcam stream of JPG images a Java Applet that lets you a view
video stream from web cameras that servers
present as a series of still jpg images....

Sound iconSound 1.4   (Downloads: 233)
Create/synthesize sounds mathematically in Java. Sound lets you mathematically create sounds in Java.

You define your sounds in terms of 16-bit linear code for
the waveform, -- an array of samplings. The U_Law.class will
then convert that to (or from) *.AU mu-law 8-bit encoding
format which you can then play with
AudioPlayer.player.start(bis) in an application or with
Applet.getAudioClip in an Applet.

This is just a sample program. You would insert your own m...

Base64 iconBase64 1.9   (Downloads: 276)
Java classes to encode/decode Base64 and Base64u Base64 is a freeware way of encoding 8-bit characters using
only ASCII printable characters similar to UUENCODE.
UUENCODE embeds a filename where BASE64 does not. You will
see BASE64 used in encoding digital certificates, in
encoding user:password string in an Authorization: header
for HTTP. The spec is described in RFC 2045.

Don't confuse Base64 with x-www-form-urlencoded which
is handled by java.net.URLEncoder.encod...

JarLook iconJarLook 1.2   (Downloads: 294)
Check that class target versions are as expected in a Java jar. Check a Java jar to make sure all the javac -target versions of
the class files are what you expect.

Java application.
Requires Java version 1.5 or later.

All Java source code is included.

to use:

java -jar jarlook.jar jartotocheck.jar 1.1 1.4

where jartocheck.jar is the name of jar to check.
It will check all the class files in it.

In this example:
1.1 is the low...

Holiday Calculatior iconHoliday Calculatior 4.7   (Downloads: 688)
Calculate when 66 holidays occur in any given year. Calculates when various holidays occur in any given year BC or AD.
Designed to be cannibalised to include the calculation routines in your
own programs. You might use it to prepare paper calenders well in
advance or electronic calendars. You might also use the logic in computer
programs that compute payrolls, bus schedules, or club meetings. You
might use it in writing novels or researching historical events. It can
als...






All Programs:

0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # . ! @


All Authors:

0 1 2 3 4 5 6 7 8 9 A B C D E F G H I J K L M N O P Q R S T U V W X Y Z # . ! @


RSS Feeds:
(Current Category)

RSS Feed for New Releases and Updates New releases & updates

RSS Feed for New Shareware Releases New shareware releases

RSS Feed for New Freeware Releases New freeware releases

RSS Feed for Most Popular Software Most popular software

RSS Feed for Top Rated Software Top rated software

Feeds List in OPML Feeds list in OPML


Useful Resources:

Domain Quester iconDomain Quester 6.02: Search for domains by unlimited number of keywords

JaSFtp iconJaSFtp 11.10: JaSFtp - Automated SFTP client (secure FTP), Run 1000+ tasks on a schedule.

Audio DVD Maker iconAudio DVD Maker 1.0: Audio DVD Maker is an innovative utility for you to personalize your own DVD

Advanced XLS Converter iconAdvanced XLS Converter 2.55: With XLS Converter you can convert Excel (XLS) files into dozens of formats!

Home | Featured | Submit | Link To Us | Contact Us | FAQ | About Us