Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.472.123 Times

Imei Tk Tr Option Com Svmap software
Filter: All | Freeware | Demo
 

Imei Tk Tr Option Com Svmap

< 1 2 3 4 5 > 
Added: August 04, 2010 | Visits: 748

Tk::JComboBox Tk::JComboBox is a Perl module that can create and manipulate JComboBox widgets. SYNOPSIS $jcb = $parent->JComboBox(?options); JComboBox is a composite widget that contains a text Label or Entry, a Button, and a popup Listbox. It performs the same sort of tasks that can be accomplished by...



Platforms: *nix

License: Freeware Size: 64.51 KB Download (89): Tk::JComboBox Download

Added: September 10, 2010 | Visits: 683

Tk::Getopt Tk::Getopt is a user configuration window for Tk with interface to Getopt::Long. SYNOPSIS use Tk::Getopt; @opttable = ([opt1, =s, default], [opt2, !, 1], ...); $opt = new Tk::Getopt(-opttable => @opttable, -options => %options, -filename => "$ENV{HOME}/.options"); $opt->set_defaults; #...





Platforms: *nix

License: Freeware Size: 22.53 KB Download (89): Tk::Getopt Download

Added: June 11, 2010 | Visits: 883

Tk::ContextHelp Tk::ContextHelp is a context-sensitive help with perl/Tk. SYNOPSIS use Tk::ContextHelp; $ch = $top->ContextHelp; $ch->attach($widget, -msg => ...); $ch->HelpButton($top)->pack; $ch2 = $top->ContextHelp(-podfile => "perlfaq"); $ch2->attach($widget2, -pod => description); ContextHelp...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (95): Tk::ContextHelp Download

Added: May 08, 2010 | Visits: 772

Tie::Tk::Listbox Tie::Tk::Listbox provides allows to access Tk::Listbox and similar widgets as arrays. The Tie::Tk::Listbox module allows you to tie the contents of a Tk::Listbox widget to an ordinary Perl array for easy modification. Additionally, you may tie a Tk::Scrolled widget or any other widget that...


Platforms: *nix

License: Freeware Size: 4.1 KB Download (96): Tie::Tk::Listbox Download

Added: April 19, 2010 | Visits: 1.830

Tk::Bubble Tk::Bubble are pop up help windows. SYNOPSYS use Tk::Bubble; ... $bubble = new Bubble( ); $bubble->attach( , ); $bubble->configure( , ); Bubble is a bubble help system (or sometimes called tooltips/balloon help) which allows a window to be displayed after a certain amount of...


Platforms: *nix

License: Freeware Size: 33.79 KB Download (181): Tk::Bubble Download

Added: June 17, 2010 | Visits: 665

Tk::bindtags Tk::bindtags can determine which bindings apply to a window, and order of evaluation. SYNOPSIS $widget->bindtags([tagList]); @tags = $widget->bindtags; When a binding is created with the bind command, it is associated either with a particular window such as $widget, a class name such as...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (91): Tk::bindtags Download

Added: July 07, 2010 | Visits: 800

Tk::Adjuster Tk::Adjuster module will allow size of packed widgets to be adjusted by user. SYNOPSIS use Tk::Adjuster; $adjuster = $widget->Adjuster(?options?); WIDGET-SPECIFIC OPTIONS Name: restore Class: Restore Switch: -restore Specifies a boolean value that determines whether the Adjuster...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (94): Tk::Adjuster Download

Added: September 11, 2010 | Visits: 490

Tk::Tiler Tk::Tiler is a scrollable frame with sub-widgets arranged into rows. SYNOPSIS use Tk::Tiler; my $tl = $parent->Scrolled(Tiler, -columns => n, -rows => n); my $a = $tl->Xxxxx(...); my $b = $tl->Xxxxx(...); my $c = $tl->Xxxxx(...); $tl->Manage($a,$b,$c); Tiler is derived form...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (92): Tk::Tiler Download

Added: August 08, 2010 | Visits: 1.078

Tk::after Tk::after can execute a command after a time delay. SYNOPSIS $widget->after(ms) $id = $widget->after(ms?,callback?) $id = $widget->repeat(ms?,callback?) $widget->afterCancel($id) $id = $widget->afterIdle(callback) $widget->afterInfo?($id)? $id->time(?delay?) This method is used to...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (93): Tk::after Download

Added: April 25, 2010 | Visits: 671

Tk::bind Tk::bind can arrange for X events to invoke callbacks. SYNOPSIS Retrieve bindings: $widget->bind $widget->bind(tag) $widget->bind(sequence) $widget->bind(tag,sequence) Associate and destroy bindings: $widget->bind(sequence,callback) $widget->bind(tag,sequence,callback) The bind...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (99): Tk::bind Download

Added: June 21, 2010 | Visits: 937

Tk::callbacks Tk::callbacks allows specifying code for Tk to call. SYNOPSIS One can specify a callback in one of the following ways: Without arguments: ... => ⊂name, ... ... => sub { ... }, ... ... => methodname, ... or with arguments: ... => [ ⊂name ?, args ...? ], ... ... => [ sub { ... }...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (86): Tk::callbacks Download

Added: June 26, 2010 | Visits: 1.079

Tk::Balloon Tk::Balloon is a pop up help balloons. SYNOPSIS use Tk::Balloon; ... $b = $top->Balloon(-statusbar => $status_bar_widget); # Normal Balloon: $b->attach($widget, -balloonmsg => "Balloon help message", -statusmsg => "Status bar message"); # Balloon attached to entries in a menu widget:...


Platforms: *nix

License: Freeware Size: 5.7 MB Download (98): Tk::Balloon Download

Added: April 12, 2010 | Visits: 968

Tk::Mirror Tk::Mirror is a Perl extension for a graphic user interface to update local or remote directories in both directions. SYNOPSIS # in the simplest kind and manner use Tk::Mirror; use Tk; my $mw->MainWindow->new(); $mw->Mirror()->grid(); MainLoop(); # in a detailed kind use Tk; use...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (100): Tk::Mirror Download

Added: March 19, 2010 | Visits: 1.001

Tk::Image::Cut Tk::Image::Cut is a Perl extension for a graphic user interface to cut pictures. SYNOPSIS use Tk::Image::Cut; my $mw = MainWindow->new(); $mw->title("Picture-Cutter"); $mw->geometry("+5+5"); my $cut = $mw->Cut()->grid(); $mw->Button( -text => "Exit", -command => sub { exit(); },...


Platforms: *nix

License: Freeware Size: 30.72 KB Download (104): Tk::Image::Cut Download

Added: September 24, 2010 | Visits: 1.113

Tk::Image::Calculation Tk::Image::Calculation is a Perl extension for graphic calculations. SYNOPSIS #------------------------------------------------- use Tk::Image::Calculation; my @points_oval = (10, 10, 30, 50); my @points_circle = (20, 20, 60, 60); my @points_polygon = (136, 23, 231, 55, 463, 390, 338, 448,...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (97): Tk::Image::Calculation Download

Added: February 17, 2010 | Visits: 974

Tk::XML::WizardMaker Tk::XML::WizardMaker is an easy way to build the Software Assistants and Installation Wizards based on XML description. SYNOPSIS To use Tk::XML::WizardMaker just provide an XML file with descriptions of the WizardMakers features and of the feaures of all its pages. Then use something like...


Platforms: *nix

License: Freeware Size: 174.08 KB Download (98): Tk::XML::WizardMaker Download

Released: October 01, 2010  |  Added: October 05, 2010 | Visits: 1.702

Ogni Folder Option Fixer Loosing folder option from the tools menu is a common problem in windows operating system which is done by virus.If your folder option disappears from the tools menu Ogni Folder Option Fixer is the just tool for you to restore your folder option .Ogni Folder Option Fixer can get back Your Folder...


Platforms: Windows

License: Freeware Size: 307 KB Download (128): Ogni Folder Option Fixer Download

Released: April 04, 2012  |  Added: April 12, 2012 | Visits: 1.818

HS COM C Source Code Library HS COM is a serial communication library implemented in C language. HS COM runs on Windows and interfaces to Win32 serial communication API. HS COM allows applications communicate with any device presented in the OS as a COM port. The physical interface may in be RS232, USB, IRDA, Bluetooth, etc....


Platforms: Windows

License: Demo Cost: $365.00 USD Size: 164.07 KB Download (100): HS COM C Source Code Library Download

Released: October 01, 2012  |  Added: October 01, 2012 | Visits: 1.163

Hew Toolchain Option Converter Hew Toolchain Option Converter is an easy to use application that was designed in order to provide you with a simple means of converting options for high-performance Embedded Workshop Toolchain.


Platforms: Windows, Windows Vista, 7, 7x64

License: Freeware Download (49): Hew Toolchain Option Converter Download

Released: September 14, 2012  |  Added: September 14, 2012 | Visits: 1.068

SQLitePlus Explorer & COM DLL SQLitePlus is a powerful database explorer program and a COM wrapper DLL for the well-known SQLite C database engine (www.sqlite.org). The SQLitePlus Admin tool allows you to open and view multiple databases simultaneously, examine table, view, trigger and index properties, and open multiple...


Platforms: Windows

License: Shareware Cost: $100.00 USD Download (50): SQLitePlus Explorer & COM DLL Download

< 1 2 3 4 5 >