Main > Free Download Search >

Free 1.13 software for windows

1.13

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 156
J2M 1.13

J2M 1.13


This program will allow you to control the mouse with the joystick.. No VXDs or devices required just a Joystick.. thats all.. Check it out.. Rateing on other sites and friends is a perfect 10 outta 1 more>>
This program will allow you to control the mouse with the joystick.. No VXDs or devices required just a Joystick.. thats all.. Check it out.. Rateing on other sites and friends is a perfect 10 outta 10.. If its not usefull then e-mail me and tell me.. I will do what u want me to do with it.. to make it more better.. but probley not better then it is!
<<less
Download (1305K)
Added: 2000-08-10 License: Freeware Price:
3366 downloads
ICQ 1.13

ICQ 1.13


ICQ is an instant messaging computer program. more>> You can message people, exchange files, send SMS messages, do voice chat, and meet people. It also includes multilingual support, the ability to save your chat histories, and a typing indicator that shows when a contact is typing you a message. In addition to familiar features such as chat, SMS messaging, and file-transfer capabilities, ICQ also includes Xtraz, which allow you to send personalized greeting cards, apply custom icons to your buddies, play online games, and customize your shortcuts panel for one-click access to all your favorite features. The ICQ Xtraz platform enables ICQ to present users with a selection of new services as they are created, without the need for you to download a new client. Xtraz also supports the creation of new ICQ features that can be built separately from the core ICQ client and then delivered and automatically updated over time. The new interface also is clean and intuitive, so you can start chatting quickly and easily.<<less
Download (1.36MB)
Added: 2008-02-18 License: Freeware Price: Free
11369274 downloads
FaVz 1.13

FaVz 1.13


Easy applications and games management more>> This is a free and useful app that lets you manage your games and apps easily and free up some desktop and start menue space. FaVz allows to run programs with a trainer or with parameters to enable cheats in some games. Quickly launch a programs readme and setup file.
Features easy update checking and a nice professional look.
<<less
Download (3.5M)
Added: 2008-11-06 License: Freeware Price: null
351 downloads
Tixati 1.13

Tixati 1.13


Tixati is a free and easy to use bittorrent client featuring detailed views of all seed, peer, and file transfer properties. Also included are powerful bandwidth charting and throttling capabilities, and a full DHT implemenation. more>>

System Requirements: 1024x768 hicolor display

<<less
Download (2.36MB)
Added: 2009-07-11 License: Freeware Price:
13 downloads
PCalc 1.13

PCalc 1.13


PCalc is the ULTIMATE free programmers calculator more>>
PCalc is the ULTIMATE free programmers calculator... A must for anyone who develops algorithms or uses C/C++ on a regular basis!
If youre a programmer, youve probably downloaded a so-called programmers calculator at least once in your life, only to be sorely disappointed; Im sorry, but displaying the results in hex and/or binary doesnt make a calculator a programmers calculator, nor does making 42 a constant in it either! Someone should do something about this, and someone has...
Programmers around the world, your prayers have been answered - Behold AnalogX PCalc, the ULTIMATE programmers calculator. Forget putting up lame buttons with numbers on them; thats fine in the real world, but hardly useful in a GUI, lets instead focus on functionality, and thats just what I did.
AnalogX PCalc allows you to enter any equation in the EXACT same format as C/C++, and it will process it with the same precedence, giving you the results in a variety of formats! PCalc also supports the use of user-defined variables, and also has most of the common constants used already defined.
<<less
Download (224KB)
Added: 2006-10-01 License: Freeware Price:
1120 downloads
Ivcon 1.13

Ivcon 1.13


Ivcon is a command line program that can read, write and convert between 3D graphics file formats more>>
Ivcon is an executable, command line C++ program that can read, write and convert between numerous 3D graphics file formats
Ivcon is an extended version of John Burkardts great, but buggy tool. It Supports many 3D formats, and a lot of 3D scene elements.
Main features:
- 3DS AutoCAD 3D Studio Max binary files
- ASE AutoCAD ASCII export files
- BYU Movie.BYU surface geometry files
- DXF AutoCAD DXF files
- GMOD Golgotha GMOD files
- HRC SoftImage hierarchical files
- IV SGI Inventor files
- OBJ WaveFront Advanced Visualizer ASCII files
- OFF GEOMVIEW OFF files
- POV Persistence of Vision files (output only)
- SMF Michael Garlands format for his QSLIM program
- STL/STLA ASCII Stereolithography files
- STLB binary Stereolithography files
- TEC TECPLOT files (output only)
- TRI/TRIA a simple ASCII triangle format requested by Greg Hood
- TRIB a simple binary triangle format requested by Greg Hood
- TXT a text dump (output only)
- UCD Advanced Visual Systems (AVS) Unstructured Cell Data (output only)
- VLA Evans and Sutherland Digistar II VLA files for planetariums
- WRL WRL/VRML (Virtual Reality Modeling Language) files (output only).
- XGL the XGL format, based on the XML language and OpenGl graphics (output only)
<<less
Download (214KB)
Added: 2007-03-19 License: Freeware Price:
970 downloads
MTASC 1.13

MTASC 1.13


Motion-Twin ActionScript 2 Compiler more>>
Motion-Twin ActionScript 2 Compiler The MTASC application was designed to be a command line compiler.. It can then be better integrated into [Your favorite editor] by configuring it to compile .as files with MTASC.
The general usage of mtasc tool is : mtasc (your .as class files) -swf (you project swf). Please note that if you have two classes Point and Line with Line.as using Point for its code, you dont need to ask MTASC to compile Point.as when compiling Line.as since it will do it automatically for you.
Then if you want to include the minimal set of classes needed by your program to run, you can simply compile using mtasc Main.as where Main.as is your "main" class, the entry point of your program (if you have any).
Now that you know how to call MTASC, lets have a look at how it works : MTASC takes the SWF file specified with the -swf flag, compile all .as specified files, and update the SWF file by replacing all classes that are present inside it by the newly compiled classes.
To use MTASC instead of Macromedia Flash Compiler, its simple. Open your project and publish it normally (for example project.swf). Now run MTASC using the published SWF as input : mtasc (your as files) -swf project.swf. This will compile your classes and update the SWF that you can use for your website. Please note that MTASC add the compiled classes to the SWF in replacement of ALL classes compiled by Flash.
If you have an error such as class not found, file not found, or class name mistake, you should use the -cp flag in order to add a ClassPath to MTASC (that means a directory where it will look for .as files). For example if your classes are in the /code directory, do not call mtasc code/Hello.as because it will look for the class code.Hello (with package code), but call instead mtasc -cp code Hello.as.
<<less
Download (339KB)
Added: 2007-11-19 License: Freeware Price:
457 downloads
HoeKey 1.13

HoeKey 1.13


HoeKey allows you assign most keys on your keyboard to many different actions more>>
HoeKey allows you assign most keys on your keyboard to many different actions HoeKey allows you assign most keys on your keyboard to many different actions.
You set this up in a config file.
To get started, run HoeKey, push Win-Q, click Edit Config.
<<less
Download (46.3KB)
Added: 2006-04-12 License: Freeware Price:
1294 downloads
Vectir 1.13

Vectir 1.13


remote control for media players more>> Vectir is an audio visual (AV) management application that lets you remotely control popular media or MP3 players such as Winamp, iTunes and Windows Media Player. It can also control other features of your operating system such as moving the mouse pointer, adjusting the master sound volume and shutting down your computer.
It works with USB infrared receiver devices such as the USB-UIRT and Tira-2. These devices pickup signals from most infrared (IR) remote controls and send them to your computer.
<<less
Download (1.5M)
Added: 2008-11-01 License: Freeware Price:
363 downloads
Reminder 1.13

Reminder 1.13


write notes to yourself for a particular hour or day more>> Reminder is a freeware which allows you, once activated, to remind you of one or more message that you have edited before, at either a specific hour or a particular day.<<less
Download (256k)
Added: 2008-11-10 License: Freeware Price:
366 downloads
PopNote 1.13

PopNote 1.13


PopNote is a lightweight yet robust peer to peer Instant Massaging communication client that operates over the Internet. more>>
PopNote is a lightweight yet robust peer to peer Instant Massaging communication client that works over the Internet.
PopNote can send an instant message that will pop up on the destinations Desktop on arrival; or allow more aggressive real time chatting.
The inherent beauty of a PopNote is it does not demand an immediate reply as is the case with real time chatting.
In other words, a received Pop Note can be minimized for later disposition, or answered and returned back to the sender immediately.
<<less
Download (63.9KB)
Added: 2006-03-27 License: Freeware Price:
1356 downloads
Ardoise 1.13

Ardoise 1.13


Write/draw/erase on a blackboard reminder more>> Write/draw/erase on a blackboard reminder

Ardoise (blackboard) allows you to write/draw/erase everything (useful reminder).At launch (and at start of Windows) Ardoise displays a transparent small version of your blackboard status "Hide mode" and in "Draw mode" you may use your blackboard like a real one, using chalks to draw/write and a sponge to erase! Includes a powerful automatic self-update mecanism when new versions are available.

Enhancements:
- About" content updated for 1.13
- Interface design XP/Vista compliant (better looking!)
- FTP sync system now also memorizing current Ardoise number (day of week)
- FTP user connection parameters encryption
- Fixes text mistakes during FTP transfer

<<less
Download (739KB)
Added: 2008-10-04 License: Freeware Price: FREE
402 downloads
aTunes 1.13.3

aTunes 1.13.3


aTunes is a program used to play and manage audio files and it has ripping and encoding tools. more>>

aTunes 1.13.3 is a program used to play and manage audio files and it has ripping and encoding tools. aTunes is coded in Java programming language (Java 5), using Swing, making it a highly portable piece of software.

<<less
Download (20.8MB)
Added: 2009-08-14 License: Freeware Price: Notavailable
downloads
 
Other version of aTunes
aTunes 1.13.1aTunes - Manage your large music collection with this iTunes alternative. aTunes. aTunes is a fully-featured audio player and manager, with ripping and encoding tools
License:Freeware
Download (21.1MB)
854 downloads
Added: 2009-05-11
VBrecent 1.13

VBrecent 1.13


VBrecent is made out of the need to occasionaly clean Visual Basic recent list more>>
VBrecent was developed for tneed of occasionaly cleaning the Visual Basic recent lists.
The program gives the option of automatic removal of not existing entries and manual remove of others. Works with Visual Basic 5.0, 6.0 and .NET.
<<less
Download (554KB)
Added: 2006-09-09 License: Freeware Price:
1141 downloads
nasSplit 1.13

nasSplit 1.13


nasSplit is an application that comes as a freeware file splitting and joining solution more>>
nasSplit is an application that comes as a freeware file splitting and joining solution nasSplit is an application that comes as a freeware file splitting and joining solution.
Main features:
- Easy to use.
- Small/Fast program.
- File splitting and joining
- File comparing
- File CRC32 calculator
<<less
Download (17.4KB)
Added: 2006-07-12 License: Freeware Price:
1205 downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5