class files
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 44069
Class Viewer 2.0b
View classes with this utility more>>
Class Viewer 2.0b is an effective utility which is created to help you get constructor, field, method information with free search for methods and option to view javadocs at method.
Requirements: Java
Download (70KB)
Added: 2009-07-01 License: GPL Price: FREE
14 downloads
Java Class Finder 1.0
Java Class Finder - Java utility tool to search a given class from all jar files that in a selected directory more>>
Java Class Finder is a small Java program designed to search a given class from all jar files that in a selected directory (and subdirectories).
<<less Download (80KB)
Added: 2007-01-29 License: Freeware Price:
1169 downloads
ClassVista 1.0
A Win32 application written using MFC which allows easy viewing of the contents of Java class files. It displays allattributes of Java classes using a convenient tree view, and provides a disassembly more>>
A Win32 application written using MFC which allows easy viewing of the contents of Java class files. It displays allattributes of Java classes using a convenient tree view, and provides a disassembly of method byte code similar to that of javap. Italso allows easy browsing of classes stored incompressed or uncompressed zip and jar files.
<<less Download (68K)
Added: 1998-11-16 License: Freeware Price:
4011 downloads
Split Files 1.2
Split Files - Split and combine files more>>
Split Files - Split and combine files Split Files is a free, small and easy to use application which helps you to split and combine files.
<<less Download (296KB)
Added: 2006-09-20 License: Freeware Price:
1212 downloads
jclasslib 3.0
jclasslib bytecode viewer is a tool that visualizes all aspects of compiled Java class files and the contained bytecode more>> jclasslib bytecode viewer is a tool that visualizes all aspects of compiled Java class files and the contained bytecode. In addition, it contains a library that enables developers to read, modify and write Java class files and bytecode.<<less
Download (list)
Added: 2008-11-08 License: Freeware Price:
354 downloads
MLP-Class 1.0
MLP-Class - Sourcecode for fast training and application of multilayer perceptron classifier more>>
MLP-Class contains the source code for fast training of multilayer perceptron classifier.
Example training and validation data files included. Source code for applying the trained network. Resulting networks can be pruned by NuClass7.06. The training algorithm can be modified to be substantially better than BP. A readme file is provided.
The approximation/regression version of this software, called MLP-Map, is also available. MLP-Class was developed by the Image Processing and Neural Networks Lab of Univ. of Texas at Arlington, and by Neural Decision Lab LLC.
For winzip password, go to:
http://www-ee.uta.edu/eeweb/ip/Software/Software.htm
<<lessExample training and validation data files included. Source code for applying the trained network. Resulting networks can be pruned by NuClass7.06. The training algorithm can be modified to be substantially better than BP. A readme file is provided.
The approximation/regression version of this software, called MLP-Map, is also available. MLP-Class was developed by the Image Processing and Neural Networks Lab of Univ. of Texas at Arlington, and by Neural Decision Lab LLC.
For winzip password, go to:
http://www-ee.uta.edu/eeweb/ip/Software/Software.htm
Download (167MB)
Added: 2006-11-18 License: Freeware Price:
1097 downloads
BS File System 2.0
Quick and easy way to use the System.IO, System.Text, and System References. more>> The BurnSoft File System Class was designed to create a quick and easy way to use the System.IO, System.Text, and System References. This document will give you a brief overview of what is available from the class.
Microsoft?????s .NET Framework has already simplified a lot of the functions and API?????s that we had to use back in the VB days, this class is just a simpler version to reduce the line of coding needed for your application. NOTE: This Class was mostly used and test on VB.NET applications, you can try to use it in your C#, C++ or ASP.NET application if you wish, but we have not tested it using those languages.<<less
Download (448KB)
Added: 2008-06-09 License: Freeware Price: Free
525 downloads
Java Class Runner 1.0
Can be used to run the Java class Files directly without giving command as Java more>>
Can be used to run the Java class Files directly without giving command as Java Java Class Runner can be used to run the Java class Files directly without giving command as Java .
This can run the java class file which is Framed Application or Applets or Shell Applications.
<<lessThis can run the java class file which is Framed Application or Applets or Shell Applications.
Download (54KB)
Added: 2007-11-27 License: Freeware Price:
440 downloads
JCL - Java Class Loader 1.0
Enables the user to load Java applications like executables. more>>
Java class file loader enables the user to load Java applications like executables - double click class files from Windows. Loading and running java class files with paths in JDK is not possible. Java class file loader overcomes this problem.
<<less Download (33k)
Added: 1999-07-20 License: Freeware Price: $0.00
3823 downloads
Superfile 1.0
Small Win32 C++ library with full source. Superfile is a class that encapsulates big virtual files. It emulates a really big file, but only parts of it are actually written to disk (only the parts use more>>
Small Win32 C++ library with full source. Superfile is a class that encapsulates big virtual files. It emulates a really big file, but only parts of it are actually written to disk (only the parts used) Superfile spans multiple filesystem-files. Maybe u could see it a little bit like a swapped memoryblock. It is made for Win32 with or without MFC. Currently a not-so-debugged version 0.1.
<<less Download (7K)
Added: 1999-05-18 License: Freeware Price:
3815 downloads
C++ sets class 1.0
C++ sets class can be used to perform set operations in your programs more>>
You can use the sets class to perform set operations in your programs. It represents set elements as bits in a private array of unsigned long integers. The array size is a defined constant which can be changed to suit your application.
The sets class supports the following set operations by means of C++ operator overloading:
union
The union of two sets A, B is the set of all elements which belong to either A or B. In the sets class, the symbol + is the binary union operator:
A + B = {x: x is in A -or- x is in B }
intersection
The intersection of two sets A, B is the set of all elements which belong to both A and B. The symbol * is the binary intersection operator:
A * B = {x: x is in A -and- x is in B }
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
A + B = {1, 2, 3, 4, 5, 6}
A * B = {3, 4}
complement
In set theory, sets are subsets of a fixed universal set U. In the sets class, U is the set of elements numbered from 1 to MAX_WORDS * WORD_SIZE. In the class declaration file below, the following definitions are made:
#define MAX_WORDS 2
#define WORD_SIZE ( 8 * sizeof( unsigned long ) )
These parameters make the range of U, 1 to 64 in sets. To increase or decrease the size of U, change the defined value of MAX_WORDS.
The complement of set A is the set of elements belonging to U but not belonging to A. The symbol ~ is the unary complement operator:
~A = {x: x is in U, x is not in A }
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
~A = {5, 6, 7, . . .}
~B = {1, 2, 7, 8, 9, . . .}
difference
The difference of two sets A, B is the set of all elements which belong to A less those in B. The symbol - is the binary difference operator:
A - B = {x: x is in A, x is not in B}
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
A - B = {1, 2}
It can be shown that A - B = A * ~B.
symmetric difference
The symmetric difference of two sets A, B is the set of all elements which belong to A or to B, but not both.
<<lessThe sets class supports the following set operations by means of C++ operator overloading:
union
The union of two sets A, B is the set of all elements which belong to either A or B. In the sets class, the symbol + is the binary union operator:
A + B = {x: x is in A -or- x is in B }
intersection
The intersection of two sets A, B is the set of all elements which belong to both A and B. The symbol * is the binary intersection operator:
A * B = {x: x is in A -and- x is in B }
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
A + B = {1, 2, 3, 4, 5, 6}
A * B = {3, 4}
complement
In set theory, sets are subsets of a fixed universal set U. In the sets class, U is the set of elements numbered from 1 to MAX_WORDS * WORD_SIZE. In the class declaration file below, the following definitions are made:
#define MAX_WORDS 2
#define WORD_SIZE ( 8 * sizeof( unsigned long ) )
These parameters make the range of U, 1 to 64 in sets. To increase or decrease the size of U, change the defined value of MAX_WORDS.
The complement of set A is the set of elements belonging to U but not belonging to A. The symbol ~ is the unary complement operator:
~A = {x: x is in U, x is not in A }
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
~A = {5, 6, 7, . . .}
~B = {1, 2, 7, 8, 9, . . .}
difference
The difference of two sets A, B is the set of all elements which belong to A less those in B. The symbol - is the binary difference operator:
A - B = {x: x is in A, x is not in B}
example
Let A = {1, 2, 3, 4} and B = {3, 4, 5, 6}. Then
A - B = {1, 2}
It can be shown that A - B = A * ~B.
symmetric difference
The symmetric difference of two sets A, B is the set of all elements which belong to A or to B, but not both.
Download (13.6KB)
Added: 2006-11-11 License: Freeware Price:
1083 downloads

ClassRoom GradeBook 8.0
ClassRoom GradeBook 8 (Windows 9x/XP and Vista) is a sophisticated freeware grading and record keeping program to help classroom teachers from elementary thru grad school easily keep track of their cl more>>
ClassRoom GradeBook (former ClassRoom Windows) is a Windows 9x/XP and Vista Freeware program for teachers. It is designed to make your record keeping and grading much easier. Version 8 features a new active main screen from which many program functions can be easily performed. In the program, you can create your class files with an unlimited number of students, and optionally password protect your files; edit your class roster, including ID, comments and home-contact information; enter/edit grades and attendance; view/print students records, by name and/or ID, in many ways; compute/print student averages and final grades by using many options supplied by the program (i.e., by assigning weights to individual testing instruments or to types of testing instruments, or by using points); save the options you chose when making up grades; save 3 sets of rounding modification values; and view/print statistics. A roadmap and wizard are included to assist new users, along with a PDF documentation file and context-sensitive help. All of these fully functional grade book features are yours to use for free.
Included within the Freeware package is an optional resource for those seeking some additional bells and whistles: a 45-day evaluation of ClassRoom GradeBooks Pro edition. This edition makes it possible to append student info from a variety of text files; import/export names/grades for a full class; transfer names/grades for an entire class from one file to another; open more than one file at a time; set up printer options; view/print color graphs of student performance; produce seating charts; use a built-in word processor/mail merge to communicate with parents; save reports as text or HTML files for editing, printing and/or e-mailing to parents through the program; keep daily attendance records; compare grades among several classes and produce statistics; change the order of your grade titles; and edit the titles of type categories.
<<lessIncluded within the Freeware package is an optional resource for those seeking some additional bells and whistles: a 45-day evaluation of ClassRoom GradeBooks Pro edition. This edition makes it possible to append student info from a variety of text files; import/export names/grades for a full class; transfer names/grades for an entire class from one file to another; open more than one file at a time; set up printer options; view/print color graphs of student performance; produce seating charts; use a built-in word processor/mail merge to communicate with parents; save reports as text or HTML files for editing, printing and/or e-mailing to parents through the program; keep daily attendance records; compare grades among several classes and produce statistics; change the order of your grade titles; and edit the titles of type categories.
Download (7374K)
Added: 2007-04-10 License: Freeware Price: $0.00
4261 downloads
ODBC Class Generator 2.0
Generates Object code for database table access usingODBC SDK. Features bulk row fetch and provides easymethods to add/update/delete data from any odbccompatible database. more>>
Generates Object code for database table access usingODBC SDK. Features bulk row fetch and provides easymethods to add/update/delete data from any odbccompatible database.
<<less Download (500K)
Added: 1999-08-20 License: Freeware Price:
1954 downloads

Class Rent Manager 2.0.3
Class Rent Manager is an application for printing the car lease contract quickly. more>>
Class Rent Manager 2.0.3 is an application for printing the car lease contract quickly. Stop wasting time writing contracts and remembering car details. Even inexperienced employees can make accurate contract. It's like having a dedicated, sharp, hardworking employee who works for free. Reminders lets Car Rent remind you about important maintenance dates and car return dates. To login to the software after installation use admin/class.
Download (42.7MB)
Added: 2005-10-02 License: Freeware Price: $0.00
downloads
Send Mail Class Library AwSmtpLE 1.21
This is the class library for sending mail. Sends mail messages by using the SMTP protocol. Can use this library in a program of C# or VB. more>>
Requirements: Microsoft .NET Framework
<<less Download (18.00KB)
Added: 2008-09-07 License: Freeware Price: $0
414 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above class files search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed