Main > Free Download Search >

Free in class software for windows

in class

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 2135
Krish Magic- Domain Classes to Database 1.0

Krish Magic- Domain Classes to Database 1.0


Krish Magic-Classes to Database is a tool, that helps user to create Database Script(DDL Script) from classes. This tool takes java classes as input. These class files can be generated from UML class more>>

Krish Magic-Classes to Database is a tool, that helps user to create Database Script(DDL Script) from classes. This tool takes java classes as input. These class files can be generated from UML class diagram or can be written manually. The tool considers each class file as a table and takes each attribute of a class as a field in a table. The user needs to set size of fields, set whether the field allows null or not for all the fields and choose the primary key for a table. Relationship among tables gets created according to the chosen primary key and the relationship of Java classes. The user can add indexes, database constraints , check declaration and generate script.For more information, please visit www.akcess.in

Requirements: JRE

Whats new in this version: nothing

<<less
Download (8.20KB)
Added: 2008-09-07 License: Freeware Price: $0
411 downloads
CCmdLine Class 1.0.0.1

CCmdLine Class 1.0.0.1


C++ class will help you get a handle on parameters passed to your application more>> The CCmdLine class will parse all of the parameters passed to your C++ Windows or Console application and make them available to you in a very convenient and usable array. Full working example included.<<less
Download (3KB)
Added: 2008-07-28 License: Freeware Price: Free
454 downloads
 
Other version of CCmdLine Class
CCmdLine Class 1.0.0.0CCmdLine Class is a useful C++ class that will help you to get a handle on ... CCmdLine Class is a useful C++ class that will help you to get a handle on parameters passed to
License:Freeware
Download (15.9KB)
1159 downloads
Added: 2006-08-22
SSuite Galaxy Class

SSuite Galaxy Class


Provides a more uncluttered desktop, cleaner looking application interfaces, and faster software interaction. more>>
Provides a more uncluttered desktop, cleaner looking application interfaces, and faster software interaction. SSuite Galaxy Class runs on all Windows platforms and all hardware systems. With its full 32-bit architecture and stability, it can improve your productivity and document format compatibility.
This office suite introduces some new innovative concepts in interface design and user-friendly application interaction. You get instant system access, top class application design and a cleaner desktop to name a few.
The graphical-user-interface has been made into a more iconic-toolbar, mouse centric type of interface. This increases user-interaction speed and user productivity.
So... if you are looking for a more uncluttered desktop, cleaner looking application interfaces, and faster software interaction, then this office suite is the solution!
Main features:
- Floating Clock
- Instant System Access
- Desktop Taskbar - Mac Dock for PC
- VOIP Communication Software - VOIP PC Phone
- Search Engine with Quick Default File Extension Searches - Search and Find.
System requirements:
- 8 MB RAM
- SVGA Screen
- Screen Colour - 64K/16bit or Higher
- Screen Resolution - 1024x768 or Higher
<<less
Download (23.4MB)
Added: 2007-11-02 License: Freeware Price:
721 downloads
MLP-Class 1.0

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
<<less
Download (167MB)
Added: 2006-11-18 License: Freeware Price:
1097 downloads
CIntegerStack Class 1.0.0.0

CIntegerStack Class 1.0.0.0


This is a simple FIFO integer stack that has been wrapped in a C++ class. more>> This is a simple FIFO integer stack that has been wrapped in a C++ class. You can easily Push and Pop items from the stack in a "First in First out" manor.
This download contains the following files:
CIntegerStack.Cpp
CIntegerStack.H
<<less
Download (4KB)
Added: 2008-07-28 License: Freeware Price: Free
454 downloads
C++ sets class 1.0

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.
<<less
Download (13.6KB)
Added: 2006-11-11 License: Freeware Price:
1083 downloads
CProcess Class 1.0.0.1

CProcess Class 1.0.0.1


Can also use as a drop in replacement for ShellExecute more>> The C++ class can be used when you would like to launch an external application as well as take the full control of its execution. if you are using ShellExecute, the C++ class can be used as a drop to replace with ShellExecute. You may have a look at the full working example included as following.
<<less
Download (4KB)
Added: 2008-12-16 License: Freeware Price: Free
341 downloads
 
Other version of CProcess Class
CProcess Class 1.0.0.0CProcess Class is a C++ class that lets you to execute external applications. CProcess Class 1.0 ... CProcess Class is a C++ class that lets you to execute external applications. Use as a
License:Freeware
Download (19.6KB)
1186 downloads
Added: 2006-08-22
List View Sort Class 1.10

List View Sort Class 1.10


This is a sample software that used the List View Sort Class that was developed by Asterworld. Can sort the items ( String, Numeric, Date ) of a list view. You can buy the source code ( C#2005, VB2005 more>>

Requirements: Microsoft .NET Framework

<<less
Download (66.75KB)
Added: 2008-09-07 License: Freeware Price: $0
422 downloads
Holding Pattern Coach Class 2

Holding Pattern Coach Class 2


Holding Pattern Coach Class screensaver displays 15 aerial views - a great way to try out screen saver cinema. more>>
Holding Pattern Coach Class screensaver displays 15 aerial views - a great way to try out screen saver cinema. Holding Pattern Coach Class screensaver displays 15 aerial views - a great way to try out screen saver cinema.
Holding Pattern is the only screen saver that celebrates the quiet beauty of the aerial view, as seen from an airplane window.
Realistic, gentle animation and superb photography make it the most distinctive screen saver on the market.
System requirements:
- 700MHz or better processor
- at least 256 megabytes of RAM.
<<less
Download (6.07MB)
Added: 2007-06-10 License: Freeware Price:
881 downloads
Java Class Finder 1.0

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
Class Viewer 2.0b

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

<<less
Download (70KB)
Added: 2009-07-01 License: GPL Price: FREE
14 downloads
Java Class Runner 1.0

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.
<<less
Download (54KB)
Added: 2007-11-27 License: Freeware Price:
440 downloads
CMemPool Class 1.0.0.2

CMemPool Class 1.0.0.2


CMemPool Class ensures that memory is allocated and freed correctly and eases the normally tedious task of tracing memory leaks more>>
CMemPool Class ensures that memory is allocated and freed correctly and eases the normally tedious task of tracing memory leaks.
<<less
Download (2.49KB)
Added: 2006-08-22 License: Freeware Price:
674 downloads
eBay Master Class 2.1

eBay Master Class 2.1


Learn the secrets of selling products on eBay. more>>

eBay Master Class 2.1 is designed to teach you the tips of selling products on eBay most ideally and effectively.The eBay Master Class is a series of 25 original articles by eBay expert Brian McGregor, publisher of the eBay Auction Newsletter which has thousands of readers world-wide. The eBay Master Class discloses what sells best on eBay, how to create compelling auctions, why great auction titles are vital, how to make money on eBay Motors, how to sell affiliate products on eBay, and many other secrets to improve your eBay sales.

<<less
Download (264.2KB)
Added: 2005-11-16 License: Freeware Price:
138 downloads
TextBoxBalloonTip class 1.0

TextBoxBalloonTip class 1.0


Display a balloon on a TextBox on Windows XP. more>> Turns out theres a really easy way to display a balloon on a TextBox on Windows XP. This class encapsulates it. (Note that Common Controls v6 must be used, so your EXE must either have the appropriate manifest file or call EnableVisualStyles in v1.1.)<<less
Download (1KB)
Added: 2008-10-21 License: Freeware Price:
374 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5