tabbed
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 544
Databrid 1.3
Databrid is a powerful tool that provides easy access to data and manipulation of data within an Oracle or MySql database. more>>
Databrid is a browsing, retrieval and manipulation tool designed for the novice to the expert user. Databrid works on MySql and Oracle Database (versions 8 and above although not all functionality in the Browser is available for the lower versions). The core functionality of Databrid revolves around the tabbed areas within the Databrid application. The four main tabs in the main screen of Databrid are: SQL Editor, Browser, File and Jobs.
## SQL EDITOR ##
The SQL Editor tab allows you to write and run SQL and PLSQL. The tab provides the ability to use one of more sql autocompletion, word and syntax highlighting editors with automatic case adjustment for keywords. Provided with each editor is a table for displaying SQL query results and a text output area to display DBMS_Output output. Jobs can be run in the background allowing for the execution of multiple statements at any given time.
## BROWSER ##
The Browser tab allows the you to browse various parts of the database schema. The browsing is done via a particular schema user and displays information on tables, views, sequences etc. Features include the generation of database creation statements for tables, views etc, browsing table or view data, truncating tables, etc.
## FILE ##
The File tab allows you work with a CSV (comma delimited text file) and the database without having to load the CSV into the database. This tab has two areas that functionality: CSV Update and Database Update. CSV Update allows you to add additional columns to a CSV using a Select statement, including binding CSV column values to the Select statement. Database Update allows you to update the database using insert, updates, deletes or PLSql by binding the CSV column values into your statement.
## JOBS ##
This tab allows you to view which jobs are currently running or have finished. Jobs that are running can also be stopped.
<<less## SQL EDITOR ##
The SQL Editor tab allows you to write and run SQL and PLSQL. The tab provides the ability to use one of more sql autocompletion, word and syntax highlighting editors with automatic case adjustment for keywords. Provided with each editor is a table for displaying SQL query results and a text output area to display DBMS_Output output. Jobs can be run in the background allowing for the execution of multiple statements at any given time.
## BROWSER ##
The Browser tab allows the you to browse various parts of the database schema. The browsing is done via a particular schema user and displays information on tables, views, sequences etc. Features include the generation of database creation statements for tables, views etc, browsing table or view data, truncating tables, etc.
## FILE ##
The File tab allows you work with a CSV (comma delimited text file) and the database without having to load the CSV into the database. This tab has two areas that functionality: CSV Update and Database Update. CSV Update allows you to add additional columns to a CSV using a Select statement, including binding CSV column values to the Select statement. Database Update allows you to update the database using insert, updates, deletes or PLSql by binding the CSV column values into your statement.
## JOBS ##
This tab allows you to view which jobs are currently running or have finished. Jobs that are running can also be stopped.
Download (3.0MB)
Added: 2007-07-25 License: Freeware Price:
844 downloads
Tab 4.3.9
Tab is a typesetter for lute tablature, for renaissance and baroque lutes and theorboes, in French and Italian notation. more>>
Tab is a typesetter for lute tablature, for renaissance and baroque lutes and theorboes, in French and Italian notation. It runs on many computers but is developed on the linux operating system. Tab is a command line or "dos" program and you cant use the mouse.
You use tab in conjunction with a word processor or editor program and a PostScript display/printing program (like Ghostview). You edit a plain text file with special commands to enter the lute tablature, then you run tab to convert that input into PostScript output that you can print or display with the right program. Because I, as a programmer, have not spent my time on a fancy user interface, I have been able to exend the formatting capabilities of my program. There are other tablature programs that you can use to enter music and save in tab format to take advantage of tabs high quality fonts and proportional spacing.
<<lessYou use tab in conjunction with a word processor or editor program and a PostScript display/printing program (like Ghostview). You edit a plain text file with special commands to enter the lute tablature, then you run tab to convert that input into PostScript output that you can print or display with the right program. Because I, as a programmer, have not spent my time on a fancy user interface, I have been able to exend the formatting capabilities of my program. There are other tablature programs that you can use to enter music and save in tab format to take advantage of tabs high quality fonts and proportional spacing.
Download (0.49MB)
Added: 2006-07-22 License: GPL (GNU General Public License) Price:
1190 downloads
Tab Slideshow 1.6
Tab Slideshow allows you to cycles through tabs like a slideshow. more>>
Tab Slideshow allows you to cycles through tabs like a slideshow.
Cycles through tabs like a slideshow. Licensed under MPL.
I am submitting a new version (1.6) without the bug where it outputs the time on startup.
<<lessCycles through tabs like a slideshow. Licensed under MPL.
I am submitting a new version (1.6) without the bug where it outputs the time on startup.
Download (0.009MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
932 downloads
thisTab! 1.0
thisTab! is an extension used to force Firefox to open a link in the current tab. more>>
thisTab! is an extension used to force Firefox to open a link in the current tab.
Force Firefox to open a link in the current tab - prevents websites opening a new window when you dont want them to.
<<lessForce Firefox to open a link in the current tab - prevents websites opening a new window when you dont want them to.
Download (0.001MB)
Added: 2007-04-11 License: MPL (Mozilla Public License) Price:
926 downloads
GD::Tab::Ukulele 0.01
GD::Tab::Ukulele is a Perl module for Ukulele tab image generator. more>>
GD::Tab::Ukulele is a Perl module for Ukulele tab image generator.
SYNOPSIS
use GD::Tab::Ukulele;
my $uk = GD::Tab::Ukulele->new;
# print png image
print $uk->chord(D#sus4)->png;
# get GD::Image instance
my $im = $uk->chord(C);
print $im->png;
# other tab generate
$uk->generate(D7,[0,2,0,2])->png;
# set color
$uk->color(255, 0, 0);
# set background-color and no interlace
$uk->bgcolor(200, 200, 200);
$uk->interlaced(0);
# all tabs image save to file.
use IO::File;
for my $chord (@{$uk->all_chords}) {
(my $filename = $chord) =~ s/M/Maj/; # for case-insensitive filesystem
my $file = IO::File->new("images/$filename.png", w);
$file->print($uk->chord($chord)->png);
}
<<lessSYNOPSIS
use GD::Tab::Ukulele;
my $uk = GD::Tab::Ukulele->new;
# print png image
print $uk->chord(D#sus4)->png;
# get GD::Image instance
my $im = $uk->chord(C);
print $im->png;
# other tab generate
$uk->generate(D7,[0,2,0,2])->png;
# set color
$uk->color(255, 0, 0);
# set background-color and no interlace
$uk->bgcolor(200, 200, 200);
$uk->interlaced(0);
# all tabs image save to file.
use IO::File;
for my $chord (@{$uk->all_chords}) {
(my $filename = $chord) =~ s/M/Maj/; # for case-insensitive filesystem
my $file = IO::File->new("images/$filename.png", w);
$file->print($uk->chord($chord)->png);
}
Download (0.005MB)
Added: 2007-04-24 License: Perl Artistic License Price:
914 downloads
Deluxe Tabs 2.4
Deluxe Tabs is a versatile solution to create DHTML navigation systems for Web sites and Web applications. more>>
Deluxe Tabs is a versatile solution to create DHTML navigation systems for Web sites and Web applications. Deluxe Tabs is a very space-saving way to present the information. Now you dont have got to puzzle over the problem how to design the page in the best way.
If you have a large volume of data and your page needs to be scrolled down too much - Deluxe Tabs is your choice! Just divide the information and distribute it among the tabs so that your visitors could reach the next piece of information with one single click. No more uncomfortable reading with scrolling! Various types of data can be placed on one page. So, your visitors need no more reload a large number of pages to find the information they want.
Deluxe Tabs will really lighten the process of site building as it allows to place much information within one page without creating many others. But for all that, all the information is parted and structured. You are free to create tabs containing text, images and practically all kinds of information in various combinations. You may also create any desirable design inside the tab with HTML. And you can add as many tabs as you wish!
Enhancements:
- An easy-to-use GUI wizard was added.
- It is called Deluxe Tuner and it allows you to generate and test the menu.
- Fixes were made for absolute positioning.
<<lessIf you have a large volume of data and your page needs to be scrolled down too much - Deluxe Tabs is your choice! Just divide the information and distribute it among the tabs so that your visitors could reach the next piece of information with one single click. No more uncomfortable reading with scrolling! Various types of data can be placed on one page. So, your visitors need no more reload a large number of pages to find the information they want.
Deluxe Tabs will really lighten the process of site building as it allows to place much information within one page without creating many others. But for all that, all the information is parted and structured. You are free to create tabs containing text, images and practically all kinds of information in various combinations. You may also create any desirable design inside the tab with HTML. And you can add as many tabs as you wish!
Enhancements:
- An easy-to-use GUI wizard was added.
- It is called Deluxe Tuner and it allows you to generate and test the menu.
- Fixes were made for absolute positioning.
Download (4.4MB)
Added: 2007-02-20 License: Free for non-commercial use Price:
979 downloads
Plone Tabs 0.2.2
Plone Tabs provides a user-friendly product for managing the tabs on the Plone site. more>>
Plone Tabs provides a user-friendly product for managing the tabs on the Plone site.
Plone Tabs (qPloneTabs) is a user-friendly product for managing the tabs on the Plone site without the need to go to ZMI.
Plone Tabs Features
Gives an opportunity to create/delete/rename tabs using Plone Control Panel
Allows changing the tabs order by drag-and-drop
Installation
Install as Zope product
Install in your Plone instance with Quick Installer (Plone Control Panel -> Add/remove Products)
How To Create New Plone Tabs
Go to your Site Setup
Select "Plone Tabs" from the list "Add-on Product Configuration"
Enter the name and the link of the tab you want to create
Click "Save" button
Click "Reorder" on the right of the page and you will see the list of all your tabs
Change the tabs order by drag-and-drop and save your changes.
Enhancements:
- possibility to change portal_tabs visibility
- better url processing
- fixed editing bug
- corrected some piece of css
- fully remade elements state css logic
- fixed adding and editing javascript bugs in IE5.5
- corrected IE hovering
- dont collapse editing and adding forms after sorting
- possibility to edit any number of items at the same time
- display url in right side near the tab name
- generated tabs functionality
- sliding advanced section & everything that push down forward content on the page
<<lessPlone Tabs (qPloneTabs) is a user-friendly product for managing the tabs on the Plone site without the need to go to ZMI.
Plone Tabs Features
Gives an opportunity to create/delete/rename tabs using Plone Control Panel
Allows changing the tabs order by drag-and-drop
Installation
Install as Zope product
Install in your Plone instance with Quick Installer (Plone Control Panel -> Add/remove Products)
How To Create New Plone Tabs
Go to your Site Setup
Select "Plone Tabs" from the list "Add-on Product Configuration"
Enter the name and the link of the tab you want to create
Click "Save" button
Click "Reorder" on the right of the page and you will see the list of all your tabs
Change the tabs order by drag-and-drop and save your changes.
Enhancements:
- possibility to change portal_tabs visibility
- better url processing
- fixed editing bug
- corrected some piece of css
- fully remade elements state css logic
- fixed adding and editing javascript bugs in IE5.5
- corrected IE hovering
- dont collapse editing and adding forms after sorting
- possibility to edit any number of items at the same time
- display url in right side near the tab name
- generated tabs functionality
- sliding advanced section & everything that push down forward content on the page
Download (0.045MB)
Added: 2007-03-28 License: ZPL (Zope Public License) Price:
941 downloads
Tabbrowser Preferences 1.3.1.1
Tabbrowser Preferences is an extension which enables enhanced control for some aspects of tabbed browsing. more>>
Tabbrowser Preferences is an extension which enables enhanced control for some aspects of tabbed browsing.
This extension is an enhancement for the basic tab controls provided in Firefox 1.0. It replaces the existing user interface with a new, more visible user interface, and also includes UI for other hidden features that are part of the browser, as well as features provided explicitly by the extension.
Main features:
- open URLs in the URL bar and searches from the search bar in new tabs
- open the homepage in every newly created tab
- select tabs by moving the mouse onto them, instead of clicking on them
- moving the tabbar to the bottom of the browser window
- opening URLs from the Extension/Theme Manager and the Help window in new tabs
- opening the throbber in a new tab
- control the focusing/unfocusing of various tab-creating functions, such as the File->New Tab command
- per-tab locking, to force left-clicked links to open in new tabs
- compatibility with Tab Clicking Options
- ability to drag and drop URLs on the new tab button on the tab bar
- ability to control focusing of newly created tabs
- ability to divert URLs away from popup windows (still under development)
<<lessThis extension is an enhancement for the basic tab controls provided in Firefox 1.0. It replaces the existing user interface with a new, more visible user interface, and also includes UI for other hidden features that are part of the browser, as well as features provided explicitly by the extension.
Main features:
- open URLs in the URL bar and searches from the search bar in new tabs
- open the homepage in every newly created tab
- select tabs by moving the mouse onto them, instead of clicking on them
- moving the tabbar to the bottom of the browser window
- opening URLs from the Extension/Theme Manager and the Help window in new tabs
- opening the throbber in a new tab
- control the focusing/unfocusing of various tab-creating functions, such as the File->New Tab command
- per-tab locking, to force left-clicked links to open in new tabs
- compatibility with Tab Clicking Options
- ability to drag and drop URLs on the new tab button on the tab bar
- ability to control focusing of newly created tabs
- ability to divert URLs away from popup windows (still under development)
Download (0.20MB)
Added: 2007-04-28 License: MPL (Mozilla Public License) Price:
3759 downloads
No Tab Close Button 0.2.1
No Tab Close Button is an extension which removes the close buttons on the tabs. more>>
No Tab Close Button is an extension which removes the close buttons on the tabs.
Removes the close buttons on the tabs (Firefox 2)
Removes the button on the right (Firefox 1.x).
For people that like to close their tabs with a middle click.
<<lessRemoves the close buttons on the tabs (Firefox 2)
Removes the button on the right (Firefox 1.x).
For people that like to close their tabs with a middle click.
Download (0.001MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
928 downloads
New Tab Button on Tab Bar 2.0
New Tab Button on Tab Bar is an extension which adds a new tab button to the tab bar. more>>
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 is a simple, single-feature extension, -- there are no options to configure!
Theme authors:
Please see this extensions homepage for information on how to make your theme support the new tab button.
<<lessThis 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 is a simple, single-feature extension, -- there are no options to configure!
Theme authors:
Please see this extensions homepage for information on how to make your theme support the new tab button.
Download (0.009MB)
Added: 2007-04-26 License: MPL (Mozilla Public License) Price:
916 downloads
Tab URL Copier 1.1.8.20061010
Tab URL Copier is an extension which copies the URLs of all open tabs. more>>
Tab URL Copier is an extension which copies the URLs of all open tabs.
Copies the URLs of all open tabs. Puts Copy Tab URLs item in right click menu of tabs and Edit main menu.
Useful for bibliographies, quickly sending someone a list of pages to view etc.
Can now open tabs from previously copied list.
<<lessCopies the URLs of all open tabs. Puts Copy Tab URLs item in right click menu of tabs and Edit main menu.
Useful for bibliographies, quickly sending someone a list of pages to view etc.
Can now open tabs from previously copied list.
Download (0.009MB)
Added: 2007-04-12 License: MPL (Mozilla Public License) Price:
928 downloads
Doc Finder Tab 1.0.2
Doc Finder Tab is a Plone product which makes Dieter Maurers DocFinder available from a ZMI management tab. more>>
Doc Finder Tab is a Plone product which makes Dieter Maurers DocFinder available from a ZMI management tab. Looking "inside" an object becomes as easy as clicking its Doc tab! An essential tool for Zope and Plone development.
DocFinderTab allows you to view an objects:
.Class (and base class) names and docstrings
.Attribute names, roles, arguments, and docstrings
DocFinder can be of great help when discovering object APIs and debugging security problems.
It treats docstrings as structured text which is a very powerful feature as it allows to write nicely-formatted documentation right into the source, while having it instantly available TTW.
To install extract the tarball into your Products directory and restart Zope. This will add a "Doc" tab to every objects managment screens. Now go to an objects management screen, click the "Doc" tab and start exploring.
Enhancements:
- Cosmetic fix for 1.0.1.
<<lessDocFinderTab allows you to view an objects:
.Class (and base class) names and docstrings
.Attribute names, roles, arguments, and docstrings
DocFinder can be of great help when discovering object APIs and debugging security problems.
It treats docstrings as structured text which is a very powerful feature as it allows to write nicely-formatted documentation right into the source, while having it instantly available TTW.
To install extract the tarball into your Products directory and restart Zope. This will add a "Doc" tab to every objects managment screens. Now go to an objects management screen, click the "Doc" tab and start exploring.
Enhancements:
- Cosmetic fix for 1.0.1.
Download (0.016MB)
Added: 2007-03-28 License: GPL (GNU General Public License) Price:
942 downloads
Open Source in Tab 1.5
Open Source in Tab is an extension which opens the pages source file in a new tab. more>>
Open Source in Tab is an extension which opens the pages source file in a new tab.
Opens the pages source file in a new tab. Has a preference to either open source in a new tab or existing tab.
<<lessOpens the pages source file in a new tab. Has a preference to either open source in a new tab or existing tab.
Download (0.008MB)
Added: 2007-04-19 License: MPL (Mozilla Public License) Price:
550 downloads
Downloads in Tab 0.0.5
Downloads in Tab is an extension which opens Downloads manager in tab from Tools menu. more>>
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 dialog uncheck "Show the Downloads window when downloading a file"
To use window, in Firefox Options dialog check "Show the Downloads window when downloading a file"
To use neither, disable or remove this extension and in Firefox Options dialog uncheck "Show the Downloads window when downloading a file" which will restore original functioning.
<<lessOpens "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 dialog uncheck "Show the Downloads window when downloading a file"
To use window, in Firefox Options dialog check "Show the Downloads window when downloading a file"
To use neither, disable or remove this extension and in Firefox Options dialog uncheck "Show the Downloads window when downloading a file" which will restore original functioning.
Download (0.003MB)
Added: 2007-07-25 License: MPL (Mozilla Public License) Price:
836 downloads
The Tab Completion Grade Book 1.0beta4.1
The Tab Completion Grade Book is a full-featured grade book for teachers. more>>
The Tab Completion Grade Book is a full-featured grade book for teachers.
The Tab Completion Grade Book is a free software Java Grade Book program.
It features multiple courses, multiple students, arbitrarily-nested assignments, weighted assignments and categories, XML data storage, and a configurable grading scale for each course.
It can also print a per-student summary.
Main features:
- arbitrarily nested and weighted assignments
- human readable XML file format
- multiple courses and students
- scores can be fractions
- configurable grading scale per course
- print per-student summaries
- statistics, scatterplots, colors
- single student view
<<lessThe Tab Completion Grade Book is a free software Java Grade Book program.
It features multiple courses, multiple students, arbitrarily-nested assignments, weighted assignments and categories, XML data storage, and a configurable grading scale for each course.
It can also print a per-student summary.
Main features:
- arbitrarily nested and weighted assignments
- human readable XML file format
- multiple courses and students
- scores can be fractions
- configurable grading scale per course
- print per-student summaries
- statistics, scatterplots, colors
- single student view
Download (0.59MB)
Added: 2006-10-17 License: GPL (GNU General Public License) Price:
1106 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 tabbed 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