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.443.389 Times

Vbscript Arrays freeware
Filter: All | Freeware | Demo
 

Vbscript Arrays

< 1 2 3 4 5 > 
Added: August 24, 2008 | Visits: 1.053

MyGeneration .NET Code Generator MyGeneration is a .NET developer tool that generates code from templates by combining either JScript or VBScript with a powerful database meta-data API. Multi-Database Support: Microsoft SQL, Oracle, IBM DB2, MySQL, and Microsoft Access. Entity Aliasing: names of tables, views, columns,...



Platforms: Windows

License: Freeware Size: 634 KB Download (123): MyGeneration .NET Code Generator Download

Added: July 06, 2010 | Visits: 762

EZMorph EZMorph is simple Java library for transforming an Object to another Object. It supports transformations for primitives, Objects, and multidimensional arrays, compatibility with JDK 1.3.1, and small memory footprint (~60K). EZMorph began life as the converter package in Json-lib but became a...





Platforms: *nix

License: Freeware Size: 65.54 KB Download (88): EZMorph Download

Added: June 06, 2010 | Visits: 859

Tie::ListKeyedHash Tie::ListKeyedHash is a system allowing the use of anonymous arrays as keys to a hash. SYNOPSIS use Tie::ListKeyedHash; [$X =] tie %hash, Tie::ListKeyedHash; my $live_key = [key,items,live]; $hash{$live_key} = Hello!; $hash{[key,trees,grow]} = Goodbye!; print...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (98): Tie::ListKeyedHash Download

Added: September 19, 2010 | Visits: 1.369

Array::Compare SYNOPSIS use Array::Compare; my $comp1 = Array::Compare->new; $comp->Sep(|); $comp->Skip({3 => 1, 4 => 1}); $comp->WhiteSpace(0); $comp->Case(1); my $comp2 = Array::Compare->new(Sep => |, WhiteSpace => 0, Case => 1, Skip => {3 => 1, 4 => 1}); my @arr1 = 0 .. 10; my @arr2 = 0 .....


Platforms: *nix

License: Freeware Size: 8.19 KB Download (98): Array::Compare Download

Added: June 03, 2010 | Visits: 714

IO-stringy IO-stringy is a I/O on in-core objects like strings and arrays. SYNOPSIS IO:: ::AtomicFile adpO Write a file which is updated atomically ERYQ ::Lines bdpO I/O handle to read/write to array of lines ERYQ ::Scalar RdpO I/O handle to read/write to a string ERYQ ::ScalarArray RdpO I/O handle...


Platforms: *nix

License: Freeware Size: 40.96 KB Download (96): IO-stringy Download

Added: August 19, 2010 | Visits: 1.065

Judy Judy is a C library that provides a state-of-the-art core technology that implements a sparse dynamic array. Judy arrays are declared simply with a null pointer. A Judy array consumes memory only when it is populated, yet can grow to take advantage of all available memory if desired. Judys...


Platforms: *nix

License: Freeware Size: 1024 KB Download (92): Judy Download

Added: September 16, 2010 | Visits: 830

Readonly Readonly is a Perl module that offers the facility for creating read-only scalars, arrays, hashes. SYNOPSIS use Readonly; # Read-only scalar Readonly::Scalar $sca => $initial_value; Readonly::Scalar my $sca => $initial_value; # Read-only array Readonly::Array @arr => @values;...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (95): Readonly Download

Added: October 22, 2010 | Visits: 699

JoeDog::Config JoeDog::Config provides a perl extension for parsing data/configuration file. It reads columns, key-value pairs, and INI style config files into arrays, hashes and hashes of hashes. It can take characters or regexes for separators. ABSTRACT: This is a autoloadable module which allows the...


Platforms: *nix

License: Freeware Size: 14.34 KB Download (88): JoeDog::Config Download

Added: August 16, 2010 | Visits: 1.100

nrsTable nrsTable library is a JavaScript script that will allow a developer to create HTML tables from arrays. The tables can be automatically sorted simply by clicking on the heading. A lot of customization can be done for the tables, such as colors, pages, captions, and more. The following are some...


Platforms: *nix

License: Freeware Size: 31.74 KB Download (93): nrsTable Download

Added: April 14, 2010 | Visits: 1.003

Hash::Type Hash::Type module contains pseudo-hashes as arrays tied to a "type" (list of fields). SYNOPSIS use Hash::Type; # create a Hash::Type my $personType = new Hash::Type(qw(firstname lastname city)); # create and populate some hashes tied to $personType tie %wolfgang, $personType, "wolfgang...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (97): Hash::Type Download

Added: March 08, 2010 | Visits: 758

XMLParser for PHP XMLParser is a library that assists in parsing XML documents into generic PHP arrays. It also comes with RSSParser, an extension of XMLParser that creates simple RSS-specific array structures from RSS feeds..


Platforms: *nix

License: Freeware Size: 11.26 KB Download (100): XMLParser for PHP Download

Added: May 05, 2010 | Visits: 846

Tie::FlatFile::Array Tie::FlatFile::Array is a Perl extension which treats a flatfile database as an array of arrays. This module allows the programmer to treat a flatfile database as as array of arrays. For example, lets say you have a datafile that has fixed-length records like so: Field-name Type URL ASCII...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (94): Tie::FlatFile::Array Download

Added: September 08, 2010 | Visits: 723

Inline::SLang::Assoc Inline::SLang::Assoc module contains support for associative arrays. SYNOPSIS use Inline SLang; # you can send hash references to S-Lang print_in_slang( { a => 23, "b b" => "foo" } ); # and get them back from S-Lang $href = get_from_slang(); print "The assoc array contains:n" . join(...


Platforms: *nix

License: Freeware Size: 112.64 KB Download (93): Inline::SLang::Assoc Download

Added: May 08, 2010 | Visits: 771

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 25, 2010 | Visits: 717

Array::Iterator Array::Iterator is a simple class for iterating over Perl arrays. SYNOPSIS use Array::Iterator; # create an iterator with an array my $i = Array::Iterator->new(1 .. 100); # create an iterator with an array reference my $i = Array::Iterator->new(@array); # create an iterator with a...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (99): Array::Iterator Download

Added: October 23, 2010 | Visits: 938

Array::PatternMatcher Array::PatternMatcher is a pattern matching for arrays. SYNOPSIS This section inlines the entire test suite. Please excuse the ok()s. use Array::PatternMatcher; Matching logical variables to input stream # 1 - simple match of logical variable to input my $pattern = AGE ; my $input =...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (118): Array::PatternMatcher Download

Added: August 04, 2010 | Visits: 718

List::Pairwise List::Pairwise is a Perl module with map/grep arrays and hashes pairwise. SYNOPSIS use List::Pairwise qw(:all); my %a = ( snoogy1 => 4, snoogy2 => 2, NOT => 4, snoogy3 => 5, hehe => 12, ); # keys/values emulation (only slower) my @keys = mapp {$a} %a; my @values = mapp {$b} %a;...


Platforms: *nix

License: Freeware Size: 20.48 KB Download (91): List::Pairwise Download

Added: March 03, 2010 | Visits: 894

pcap2c pcap2c converts a pcap capture file (such as one from Ethereal/Wireshark or tcpdump) into a C source file, where the packets are stored as unsigned char arrays. These packets can then be compiled into a C program where they can be easily used for further manipulation, retransmission, etc....


Platforms: *nix

License: Freeware Size: 10.24 KB Download (103): pcap2c Download

Released: April 02, 2012  |  Added: April 11, 2012 | Visits: 847

X-SQLT X-SQLT Command-line Processor is an easy to use, fast and resource-friendly utility, that allows you to perform data selections, conversion and transformation tasks by using generally available technologies, like ADO DB, MSXML and WSH, and by supporting common data formats (XML, CSV and JSON) and...


Platforms: Windows

License: Freeware Size: 967.54 KB Download (93): X-SQLT Download

Released: October 12, 2012  |  Added: October 12, 2012 | Visits: 615

HDD Scan HDDScan is a for hard drive diagnostics (RAID arrays, Flash USB and SSD drives are also supported). The program can test storage device for errors (Bad-blocks and bad sectors), show S.M.A.R.T. attributes and change some HDD parameters such as AAM, APM, etc. HDDScan can be useful for performing...


Platforms: Windows, XP, 2003, Windows Vista, 7, 7x64

License: Freeware Download (423): HDD Scan Download

< 1 2 3 4 5 >