tablelayoutpanel hide row
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 826
Template::Simple 0.01
Template::Simple is a simple and fast template module. more>>
Template::Simple is a simple and fast template module.
SYNOPSIS
use Template::Simple;
my $tmpl = Template::Simple->new();
my $template = Jan 1, 2008,
author => Me, myself and I,
},
row => [
{
first => row 1 value 1,
second => row 1 value 2,
},
{
first => row 2 value 1,
second => row 2 value 2,
},
],
footer_data => {
modified => Aug 31, 2006,
},
} ;
my $rendered = $tmpl->render( $template, $data ) ;
Template::Simple has these goals:
Support most common template operations
It can recursively include other templates, replace tokens (scalars), recursively render nested chunks of text and render lists. By using simple idioms you can get conditional renderings.
Complete isolation of template from program code
This is very important as template design can be done by different people than the program logic. It is rare that one person is well skilled in both template design and also programming.
Very simple template markup (only 4 markups)
The only markups are INCLUDE, START, END and token. See MARKUP for more.
Easy to follow rendering rules
Rendering of templates and chunks is driven from a data tree. The type of the data element used in an rendering controls how the rendering happens. The data element can be a scalar or scalar reference or an array, hash or code reference.
Efficient template rendering
Rendering is very simple and uses Perls regular expressions efficiently. Because the markup is so simple less processing is needed than many other templaters. Precompiling templates is not supported yet but that optimization is on the TODO list.
Easy user extensions
User code can be called during an rendering so you can do custom renderings and plugins. Closures can be used so the code can have its own private data for use in rendering its template chunk.
<<lessSYNOPSIS
use Template::Simple;
my $tmpl = Template::Simple->new();
my $template = Jan 1, 2008,
author => Me, myself and I,
},
row => [
{
first => row 1 value 1,
second => row 1 value 2,
},
{
first => row 2 value 1,
second => row 2 value 2,
},
],
footer_data => {
modified => Aug 31, 2006,
},
} ;
my $rendered = $tmpl->render( $template, $data ) ;
Template::Simple has these goals:
Support most common template operations
It can recursively include other templates, replace tokens (scalars), recursively render nested chunks of text and render lists. By using simple idioms you can get conditional renderings.
Complete isolation of template from program code
This is very important as template design can be done by different people than the program logic. It is rare that one person is well skilled in both template design and also programming.
Very simple template markup (only 4 markups)
The only markups are INCLUDE, START, END and token. See MARKUP for more.
Easy to follow rendering rules
Rendering of templates and chunks is driven from a data tree. The type of the data element used in an rendering controls how the rendering happens. The data element can be a scalar or scalar reference or an array, hash or code reference.
Efficient template rendering
Rendering is very simple and uses Perls regular expressions efficiently. Because the markup is so simple less processing is needed than many other templaters. Precompiling templates is not supported yet but that optimization is on the TODO list.
Easy user extensions
User code can be called during an rendering so you can do custom renderings and plugins. Closures can be used so the code can have its own private data for use in rendering its template chunk.
Download (0.015MB)
Added: 2006-09-29 License: Perl Artistic License Price:
1121 downloads
TableMatrix 1.22
TableMatrix is a Perl module that can create and manipulate tables. more>>
TableMatrix is a Perl module that can create and manipulate tables.
Synopsis
$table = $parent->TableMatrix(?options?);
STANDARD OPTIONS
-anchor
-background
-cursor
-exportselection
-font
-foreground
-highlightbackground
-highlightcolor
-highlightthickness
-insertbackground
-insertborderwidth
-insertofftime
-insertontime
-insertwidth
-invertselected
-relief
-takefocus
-xscrollcommand
-yscrollcommand
Main features:
- multi-line cells
- support for embedded windows (one per cell)
- row & column spanning
- variable width columns / height rows (interactively resizable)
- row and column titles
- multiple data sources ((perl hash|| perl callback) &| internal caching)
- supports standard Tk reliefs, fonts, colors, etc.
- x/y scrollbar support
- tag styles per row, column or cell to change visual appearance
- in-cell editing - returns value back to data source
- support for disabled (read-only) tables or cells (via tags)
- multiple selection modes, with "active" cell
- multiple drawing modes to get optimal performance for larger tables
- optional flashes when things update
- cell validation support
- Works everywhere Tk does (including Windows and Mac!)
<<lessSynopsis
$table = $parent->TableMatrix(?options?);
STANDARD OPTIONS
-anchor
-background
-cursor
-exportselection
-font
-foreground
-highlightbackground
-highlightcolor
-highlightthickness
-insertbackground
-insertborderwidth
-insertofftime
-insertontime
-insertwidth
-invertselected
-relief
-takefocus
-xscrollcommand
-yscrollcommand
Main features:
- multi-line cells
- support for embedded windows (one per cell)
- row & column spanning
- variable width columns / height rows (interactively resizable)
- row and column titles
- multiple data sources ((perl hash|| perl callback) &| internal caching)
- supports standard Tk reliefs, fonts, colors, etc.
- x/y scrollbar support
- tag styles per row, column or cell to change visual appearance
- in-cell editing - returns value back to data source
- support for disabled (read-only) tables or cells (via tags)
- multiple selection modes, with "active" cell
- multiple drawing modes to get optimal performance for larger tables
- optional flashes when things update
- cell validation support
- Works everywhere Tk does (including Windows and Mac!)
Download (0.31MB)
Added: 2006-06-12 License: Perl Artistic License Price:
1229 downloads
Concede 0.1
Concede is a computer version of the board game Take It Easy. more>>
Concede project is a computer version of the board game "Take It Easy".
Concede is a computer version of the board game "Take It Easy". The game is a kind of mix between 4-in-a-row and bingo (aka loto in some place). The player start with an empty board where 19 hexagonal tiles have to be placed. At each turn a random tile is drawn and the player must put it somewhere on the board.
Each tile is marked with 3 numbers (from 1 to 9) and the player must try to make as many complete rows as possible with the tiles he get. The problem is that their is more tiles in the game than places on the board and they come in random order.
When the board is full the game end and the score is computed by adding all the complete rows together. So for example a row of four 5 is worth 20 points, a row of three 9 is worth 27 points, etc.
<<lessConcede is a computer version of the board game "Take It Easy". The game is a kind of mix between 4-in-a-row and bingo (aka loto in some place). The player start with an empty board where 19 hexagonal tiles have to be placed. At each turn a random tile is drawn and the player must put it somewhere on the board.
Each tile is marked with 3 numbers (from 1 to 9) and the player must try to make as many complete rows as possible with the tiles he get. The problem is that their is more tiles in the game than places on the board and they come in random order.
When the board is full the game end and the score is computed by adding all the complete rows together. So for example a row of four 5 is worth 20 points, a row of three 9 is worth 27 points, etc.
Download (0.014MB)
Added: 2007-01-02 License: GPL (GNU General Public License) Price:
1025 downloads
Adblock Plus: Element Hiding Helper 1.0.1 for Firefox
Adblock Plus: Element Hiding Helper is an extension meant for creating element hiding rules easier. more>>
Adblock Plus: Element Hiding Helper is an extension meant for creating element hiding rules easier.
Fight the text ads! Element Hiding Helper is a companion extension for Adblock Plus meant to make creating element hiding rules easier.
You simply select the element you want to be hidden and then choose which attributes of this element should be taken into account when hiding it in future.
The element hiding rule is generated and added automatically.
<<lessFight the text ads! Element Hiding Helper is a companion extension for Adblock Plus meant to make creating element hiding rules easier.
You simply select the element you want to be hidden and then choose which attributes of this element should be taken into account when hiding it in future.
The element hiding rule is generated and added automatically.
Download (0.034MB)
Added: 2007-04-09 License: MPL (Mozilla Public License) Price:
931 downloads
JGCalAPI 0.1
JGCalAPI offers a user-friendly wrapper for the Google Calendaring GData API which is intended to hide much of the REST ugliness of the API, thus making it somewhat easier to get started with and to use. more>>
JGCalAPI 0.1 offers a user-friendly wrapper for the Google Calendaring GData API which is intended to hide much of the REST ugliness of the API, thus making it somewhat easier to get started with and to use.
Requirements: Java 1.5 or later
<<less Added: 2008-01-07 License: The Apache License 2.0 Price: FREE
1 downloads
Blue Moon 2.9
Blue Moon project is a Blue Moon solitaire for Unix. more>>
Blue Moon project is a Blue Moon solitaire for Unix.
This 52-card solitaire starts with the entire deck shuffled and dealt out in four rows.
The aces are then moved to the left end of the layout, making 4 initial free spaces.
You may move to a space only the card that matches the left neighbor in suit, and is one greater in rank. Kings are high, so no cards may be placed to their right (they create dead spaces).
When no moves can be made, cards still out of sequence are reshuffled and dealt face up after the ends of the partial sequences, leaving a card space after each sequence, so that each row looks like a partial sequence followed by a space, followed by enough cards to make a row of 14.
A moments reflection will show that this game cannot take more than 13 deals.
A good score is 1-3 deals, 4-7 is average, 8 or more is poor.
Enhancements:
- Changes since the initial release have been in the packaging.
<<lessThis 52-card solitaire starts with the entire deck shuffled and dealt out in four rows.
The aces are then moved to the left end of the layout, making 4 initial free spaces.
You may move to a space only the card that matches the left neighbor in suit, and is one greater in rank. Kings are high, so no cards may be placed to their right (they create dead spaces).
When no moves can be made, cards still out of sequence are reshuffled and dealt face up after the ends of the partial sequences, leaving a card space after each sequence, so that each row looks like a partial sequence followed by a space, followed by enough cards to make a row of 14.
A moments reflection will show that this game cannot take more than 13 deals.
A good score is 1-3 deals, 4-7 is average, 8 or more is poor.
Enhancements:
- Changes since the initial release have been in the packaging.
Download (0.012MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
625 downloads
EntityTable 1.0
EntityTable provides software that enhances/fixes JTable. more>>
EntityTable provides software that enhances/fixes JTable.
Each table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
<<lessEach table row corresponds to a data Object in a List.
Main features:
- column hiding
- locking
- panning
- row scrolling
- row sorting
- intuitive focus behaviour
- optional virtual rows and columns
- Java 1.4 support
Download (0.67MB)
Added: 2007-02-07 License: MPL (Mozilla Public License) Price:
990 downloads
CGI::FastTemplate 1.09
CGI::FastTemplate is a Perl extension for managing templates, and performing variable interpolation. more>>
CGI::FastTemplate is a Perl extension for managing templates, and performing variable interpolation.
SYNOPSIS
use CGI::FastTemplate;
$tpl = new CGI::FastTemplate();
$tpl = new CGI::FastTemplate("/path/to/templates");
CGI::FastTemplate->set_root("/path/to/templates"); ## all instances will use this path
$tpl->set_root("/path/to/templates"); ## this instance will use this path
$tpl->define( main => "main.tpl",
row => "table_row.tpl",
all => "table_all.tpl",
);
$tpl->assign(TITLE => "I am the title.");
my %defaults = ( FONT => "",
EMAIL => jmoore@sober.com,
);
$tpl->assign(%defaults);
$tpl->parse(ROWS => ".row"); ## the . appends to ROWS
$tpl->parse(CONTENT => ["row", "all"]);
$tpl->parse(CONTENT => "main");
$tpl->print(); ## defaults to last parsed
$tpl->print("CONTENT"); ## same as print() as "CONTENT" was last parsed
$ref = $tpl->fetch("CONTENT");
<<lessSYNOPSIS
use CGI::FastTemplate;
$tpl = new CGI::FastTemplate();
$tpl = new CGI::FastTemplate("/path/to/templates");
CGI::FastTemplate->set_root("/path/to/templates"); ## all instances will use this path
$tpl->set_root("/path/to/templates"); ## this instance will use this path
$tpl->define( main => "main.tpl",
row => "table_row.tpl",
all => "table_all.tpl",
);
$tpl->assign(TITLE => "I am the title.");
my %defaults = ( FONT => "",
EMAIL => jmoore@sober.com,
);
$tpl->assign(%defaults);
$tpl->parse(ROWS => ".row"); ## the . appends to ROWS
$tpl->parse(CONTENT => ["row", "all"]);
$tpl->parse(CONTENT => "main");
$tpl->print(); ## defaults to last parsed
$tpl->print("CONTENT"); ## same as print() as "CONTENT" was last parsed
$ref = $tpl->fetch("CONTENT");
Download (0.013MB)
Added: 2006-08-01 License: Perl Artistic License Price:
1179 downloads
PyHtmlTable 1.13
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. more>>
PyHtmlTable is a class for Python CGIs to generate HTML tables on the fly. The reason that i made this script is I couldnt find something like Table.pm or Table.php
Main features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
<<lessMain features:
- Allows setting of individual row and cell attributes via arbitrary dictionaries
- Allows spanning of rows and columns
- Autogrows table if cells set outside initial Range.
- Allows dynamic insertion of new rows and columns anywhere in the table
- Allows bulk population of table data via arrays to arbitrary locations in the table.
- Provides default cell attributes for tablewide uniformity and the ability to override these on a cell by cell basis.
- NOTE: Row indexes start at 0 like God and Kernighan demand!
- Influenced heavily by Table.pm and Table.php
Download (0.011MB)
Added: 2006-06-22 License: GPL (GNU General Public License) Price:
1221 downloads
HTML::TableExtract 2.07
HTML::TableExtract is a Perl module that simplifies the extraction of information from tables within HTML documents. more>>
HTML::TableExtract is a Perl module that simplifies the extraction of information from tables within HTML documents.
Tables, no matter how nested or clustered, can be targeted symbolically with column headers or by more specific depth and count information.
Each table is labeled in the first row with coordinates in terms of depth and count, which both start at 0. Some of the tables have headers in the second row; although in this example these header cells are in fact < th > tags, header cells can be either < th > or < td >. The remaining cells in the table indicate row and column information from that cell, along with the table coordinates: depth,count:row,column. Rows and columns begin at 0 as well, so the table label and headers, if present, will affect these cell coordinates.
In the illustrations of what is extracted from these tables, content in italics is notational in nature; it was not actually extracted from the tables. In particular, whenever headers are used for extraction, the order in which the headers were provided is noted by listing the headers, but the header row is not actually extracted from the target table.
Enhancements:
- A subtable slicing bug and an hrow() attachment bug were fixed.
- Tests were added.
<<lessTables, no matter how nested or clustered, can be targeted symbolically with column headers or by more specific depth and count information.
Each table is labeled in the first row with coordinates in terms of depth and count, which both start at 0. Some of the tables have headers in the second row; although in this example these header cells are in fact < th > tags, header cells can be either < th > or < td >. The remaining cells in the table indicate row and column information from that cell, along with the table coordinates: depth,count:row,column. Rows and columns begin at 0 as well, so the table label and headers, if present, will affect these cell coordinates.
In the illustrations of what is extracted from these tables, content in italics is notational in nature; it was not actually extracted from the tables. In particular, whenever headers are used for extraction, the order in which the headers were provided is noted by listing the headers, but the header row is not actually extracted from the target table.
Enhancements:
- A subtable slicing bug and an hrow() attachment bug were fixed.
- Tests were added.
Download (0.023MB)
Added: 2006-02-27 License: GPL (GNU General Public License) Price:
1334 downloads
Preferences Hide and Seek 0.6.0
Preferences Hide and Seek lets you configure hard to find and hidden options of GNOME. more>>
Preferences Hide and Seek can configure hard to find and hidden options of GNOME.
Preferences Hide and Seek is a utility that groups together the options that actually exist for GNOME, but are usually hard to find or are just plain hidden from the user.
This utility also makes it possible to create a simple data file to expose gconf-based options to the user. It was created to allow usable access to the hidden application options buried within gconf.
Main features:
- Easy to create an advanced preferences dialog for any application that utilizes GConf.
- Single application mode can be used to mimmick a standard dialog.
- Supports GConf key types boolean, integer, float and string.
- Can set minimum and maximum range for numeric key types.
- Can present string keys as a file or folder name selection.
- Can present string keys as a drop down menu.
- Can present string keys as a font selection.
- Can present string keys as a color selection.
- Can present integer enumerations as a drop down menu.
- Radio buttons support integer, float, and string key types.
- Check buttons, radio buttons, and drop down menus can control the sensitivity of other objects.
<<lessPreferences Hide and Seek is a utility that groups together the options that actually exist for GNOME, but are usually hard to find or are just plain hidden from the user.
This utility also makes it possible to create a simple data file to expose gconf-based options to the user. It was created to allow usable access to the hidden application options buried within gconf.
Main features:
- Easy to create an advanced preferences dialog for any application that utilizes GConf.
- Single application mode can be used to mimmick a standard dialog.
- Supports GConf key types boolean, integer, float and string.
- Can set minimum and maximum range for numeric key types.
- Can present string keys as a file or folder name selection.
- Can present string keys as a drop down menu.
- Can present string keys as a font selection.
- Can present string keys as a color selection.
- Can present integer enumerations as a drop down menu.
- Radio buttons support integer, float, and string key types.
- Check buttons, radio buttons, and drop down menus can control the sensitivity of other objects.
Download (0.086MB)
Added: 2006-11-08 License: GPL (GNU General Public License) Price:
1082 downloads
FileHandle::Unget 0.1621
FileHandle::Unget is an enhanced version of the standard FileHandle Perl module. more>>
FileHandle::Unget is a Perl module which is a drop-in replacement for FileHandle. It allows more than one byte to be placed back on the input.
It supports an ungetc(ORD) which can be called more than once in a row, and an ungets(SCALAR) which places a string of bytes back on the input.
<<lessIt supports an ungetc(ORD) which can be called more than once in a row, and an ungets(SCALAR) which places a string of bytes back on the input.
Download (0.043MB)
Added: 2005-04-13 License: GPL (GNU General Public License) Price:
1654 downloads
myperl 0.8
myperl allows you to execute Perl from inside of MySQL. more>>
myperl allows you to execute Perl from inside of MySQL. It can either be stored in a row, or it can be specified in your SQL statement.
You also can select other columns which will be passed to Perl.
Enhancements:
- Added support for the perl interpreter to persist for requests
- re-aranged package to meet CPAN spec.
- Fix for myperlgroup (it was calling itself too frequently)
<<lessYou also can select other columns which will be passed to Perl.
Enhancements:
- Added support for the perl interpreter to persist for requests
- re-aranged package to meet CPAN spec.
- Fix for myperlgroup (it was calling itself too frequently)
Download (0.013MB)
Added: 2005-08-24 License: GPL (GNU General Public License) Price:
1521 downloads
TopJax 0.2
TopJax is essentially the top Unix utility ported to the Web via AJAX using Sack of Ajax. more>>
TopJax is essentially the top unix utility ported to the web via Ajax using Sack of Ajax. It provides the ability to view system processes, sort processes by various fields, pause/unpause monitoring, and hide idle processes.
TopJax is released under the GPL.
<<lessTopJax is released under the GPL.
Download (0.011MB)
Added: 2005-06-30 License: GPL (GNU General Public License) Price:
1577 downloads
CBL ActiveRecord 20060323
CBL ActiveRecord is an O/R mapping library for PHP5.x. more>>
CBL ActiveRecord project is an O/R mapping library for PHP5.x. Active Record is an object that wraps a row in a database table or view, encapsulates the database access, and adds domain logic on that data.
Using this library, it becomes very easy to access the database.
- Development Status: Beta
- Intended Audience: Developers
- License: GNU Lesser General Public License (LGPL2.1orlater)
- Programming Language: PHP5, PHP5.1
- Translations: English, Japanese
<<lessUsing this library, it becomes very easy to access the database.
- Development Status: Beta
- Intended Audience: Developers
- License: GNU Lesser General Public License (LGPL2.1orlater)
- Programming Language: PHP5, PHP5.1
- Translations: English, Japanese
Download (0.019MB)
Added: 2006-04-14 License: LGPL (GNU Lesser General Public License) Price:
1288 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above tablelayoutpanel hide row search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed