ALEX::Export - megawidget for exporting ALEX::DB records.
ALEX::Export - megawidget for exporting ALEX::DB records.
use Tk;
use ALEX::Export;
use MARC::Record;
my $mw = MainWindow->new;
$mw->title("Export Test");
#
# The Export window
#
my $wExport = $mw->ALEX_Export(-connectstring => "calli_test",
-owner => 1,
)->pack;
MainLoop;
This is a megawidget that allows searching for and exporting of
selected ALEX::DB records.
It is derived from ALEX::Search, and adds a few extras (the
export flag for each record, and buttons to toggle that status,
and finally a button to do the actual export).
David Christensen, <DChristensenSPAMLESS@westman.wave.ca>
Copyright 2004 by David Christensen
This library is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
|