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

Error Formatting Cross Tab Object software
Filter: All | Freeware | Demo
 

Error Formatting Cross Tab Object

< 1 2 3 4 5 
Added: March 23, 2010 | Visits: 836

Object::InsideOut Object::InsideOut is a comprehensive inside-out object support module. SYNOPSIS package My::Class; { use Object::InsideOut; # Numeric field # With combined get+set accessor my @data :Field :Type(numeric) :Accessor(data); # Takes INPUT (or input, etc.) as a mandatory parameter to...



Platforms: *nix

License: Freeware Size: 10.24 KB Download (89): Object::InsideOut Download

Added: March 15, 2010 | Visits: 828

Basset::Object Basset::Object is a Perl module used to create objects. This is my ultimate object creation toolset to date. It has roots in Mail::Bulkmail, Text::Flowchart, and the unreleased abstract object constructors that Ive tooled around with in the past. If you want an object to be compatible with...





Platforms: *nix

License: Freeware Size: 143.36 KB Download (88): Basset::Object Download

Added: June 04, 2010 | Visits: 1.479

Rose::DB::Object::Tutorial Rose::DB::Object::Tutorial is a guided tour of the basics of Rose::DB::Object. INTRODUCTION This document provides a step-by-step introduction to the Rose::DB::Object module distribution. It demonstrates all of the important features using a semi-realistic example database. This tutorial does...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (98): Rose::DB::Object::Tutorial Download

Added: July 05, 2010 | Visits: 1.359

Rose::DB::Object::Helpers Rose::DB::Object::Helpers is a mix-in class containing convenience methods for Rose::DB::Object. SYNOPSIS package MyDBObject; use Rose::DB::Object; our @ISA = qw(Rose::DB::Object); use Rose::DB::Object::Helpers clone, { load_or_insert => find_or_create }; ... $obj =...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (114): Rose::DB::Object::Helpers Download

Added: October 02, 2010 | Visits: 961

Rose::DB::Object::QueryBuilder Rose::DB::Object::QueryBuilder is a Perl module that can build SQL queries on behalf of Rose::DB::Object::Manager. SYNOPSIS use Rose::DB::Object::QueryBuilder qw(build_select); # Build simple query $sql = build_select ( dbh => $dbh, select => COUNT(*), tables => [ articles ], columns...


Platforms: *nix

License: Freeware Size: 481.28 KB Download (95): Rose::DB::Object::QueryBuilder Download

Added: October 18, 2010 | Visits: 892

Rose::Object Rose::Object is a simple object base class. SYNOPSIS package MyObject; use Rose::Object; our @ISA = qw(Rose::Object); sub foo { ... } sub bar { ... } ... my $o = MyObject->new(foo => abc, bar => 5); ... Rose::Object is a generic object base class. It provides very little...


Platforms: *nix

License: Freeware Size: 28.67 KB Download (88): Rose::Object Download

Added: March 19, 2010 | Visits: 1.012

Pasmo Pasmo project is a Z80 cross assembler, written in standard C++ that compiles easily in multiple platforms. Actually can generate object code in the following formats: raw binary, Intel HEX, PRL for CP/M Plus RSX, Plus3Dos (Spectrum +3 disk), TAP, TZX and CDT (Spectrum and Amstrad CPC emulators...


Platforms: *nix

License: Freeware Size: 122.88 KB Download (125): Pasmo Download

Added: May 23, 2010 | Visits: 702

XParam XParam is a general-purpose tool for parameter handling and object serialization in C++. It allows object serialization and deserialization in a format that is human-readable and -writeable, and is unaffected by issues of word-size and endianity. The XParam format is also not confused by...


Platforms: *nix

License: Freeware Size: 409.6 KB Download (87): XParam Download

Added: April 09, 2010 | Visits: 763

Object::Relation::Meta::Attribute::Schema Object::Relation::Meta::Attribute::Schema is a Perl module for Object::Relation database store builder. Synopsis # Assuming MyThingy was generated by Object::Relation::Meta and that were building # a data store schema. my $class = MyThingy->my_class; print "nAttributes:n"; for my $attr...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (94): Object::Relation::Meta::Attribute::Schema Download

Added: July 27, 2010 | Visits: 837

Object::Relation::Meta::Class::Schema Object::Relation::Meta::Class::Schema is a Perl module for Object::Relation database store builder. This module is provides metadata for all Object::Relation classes while building a storage schema. Loading Object::Relation::Schema causes it to be used instead of Object::Relation::Meta::Class....


Platforms: *nix

License: Freeware Size: 24.58 KB Download (87): Object::Relation::Meta::Class::Schema Download

Added: February 24, 2010 | Visits: 876

Object::Relation::DataType Object::Relation::DataType is a Perl module with complex data types for TKP. The Object::Relation::DataType name space is set aside for the creation of complex data types for TKP. By "complex" I mean serializable objects, such as dates, durations, states, etc. It also is designed to create a...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (88): Object::Relation::DataType Download

Added: August 08, 2010 | Visits: 717

FXPy FXPy is a Python extension module which provides an interface to the FOX cross-platform GUI library. The FXPy API follows the standard FOX API very closely and for the most part you can use FOX documentation as a reference. But of course, Python isnt C++ and so here are some differences of...


Platforms: *nix

License: Freeware Size: 942.08 KB Download (90): FXPy Download

Added: January 17, 2010 | Visits: 938

Yet Another Object Request Broker Yet Another Object Request Broker is an implementation of the CORBA ORB. YaOrb advanced installation YaOrb uses the GNU tools (Autoconf, Automake, ...). See the GNU documentation for complete instructions, in file $/INSTALL.GNU. Optional features The configure script also supports...


Platforms: *nix

License: Freeware Size: 962.56 KB Download (92): Yet Another Object Request Broker Download

Added: June 24, 2010 | Visits: 1.004

libgpg-error libgpg-error package contains common error codes and error handling functions used by GnuPG, Libgcrypt, GPGME and more packages. Installation: Please read the file INSTALL! Here is a quick summary: 1) Check that you have unmodified sources. You can find instructions how to verify the...


Platforms: *nix

License: Freeware Size: 614.4 KB Download (118): libgpg-error Download

Added: February 02, 2010 | Visits: 876

Object::Realize::Later Object::Realize::Later is a Perl module with delayed creation of objects. SYNOPSIS package MyLazyObject; use Object::Realize::Later becomes => MyRealObject, realize => load; The Object::Realize::Later class helps with implementing transparent on demand realization of object data. This...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (94): Object::Realize::Later Download

Added: October 27, 2010 | Visits: 1.686

Downloads in Tab Downloads in Tab is an extension which opens "Downloads" manager in tab from Tools menu. Opens "Downloads" manager in tab from Tools menu or automaticlly when a download starts, when in options you uncheck "Show the Downloads window when downloading a file" To use tab, in Firefox Options...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (129): Downloads in Tab

Added: June 03, 2010 | Visits: 704

Object::AutoAccessor Object::AutoAccessor is an accessor class by using AUTOLOAD. SYNOPSIS use Object::AutoAccessor; my $struct = { foo => { bar => { baz => BUILD OK, }, }, }; # Now lets easily accomplish it. my $obj = Object::AutoAccessor->build($struct); print $obj->foo->bar->baz; # prints BUILD OK...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (90): Object::AutoAccessor Download

Added: September 25, 2010 | Visits: 1.669

New Tab Button on Tab Bar New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar. This extension adds a new tab button to the tab bar. You do not need an extension to add a new tab button to the *toolbar*, but if you want a new tab button on the *tab bar* youll need this extension. This...


Platforms: *nix

License: Freeware Size: 9.22 KB Download (169): New Tab Button on Tab Bar Download

Added: September 10, 2010 | Visits: 959

Audio::MadJACK Audio::MadJACK is a Perl module to talk to MadJACK server using Object Oriented Perl. SYNOPSIS use Audio::MadJACK; my $mj = new Audio::MadJACK( osc.udp://madjack.example.net:4444/ ); $mj->load( Playlist_A/mymusic.mp3 ); $mj->play(); The Audio::MadJACK module uses Net::LibLO to talk to a...


Platforms: *nix

License: Freeware Size: 5.12 KB Download (97): Audio::MadJACK Download

Added: April 27, 2010 | Visits: 910

Games::Object Games::Object is a Perl module to provide a base class for game objects. SYNOPSIS package MyGameObject; use Games::Object; use vars qw(@ISA); @ISA = qw(Games::Object); sub new { # Create object my $proto = shift; my $class = ref($proto) || $proto; my $self = $class->SUPER::new(@_);...


Platforms: *nix

License: Freeware Size: 84.99 KB Download (89): Games::Object Download

< 1 2 3 4 5