WareSeeker Search Software

event


Sponsored Links
Collapse All
Software Name Software Type Category Price
1

Event Registration


script PHP Free
View Detail
Download Event RegistrationDownload Event Registration
RSVP for Events List - Reservations - VIP Ever had an event that you needed people to be able to sign up on? Welp, weve got it! Admin Login There can be unlimited number of events and users can signup for each one seperately if they want... Admin can view list by event and can sort by last name. User Fields: First name, last name, age, email, # of guests (+1,+2, or +3) Admin Fields: enter event name, event date, event location, event time Email sent to user when they signup confirmation with confirmation number Confirmation number will be kept on database for future reference. Template and codings are separated. Language File for changing to any language you want!
2

Event 1.09


linux Programming->Libraries Free
View Detail
Download Event 1.09Download Event 1.09
0.24 MB
Event is an Event loop processing.

SYNOPSIS

use Event qw(loop unloop);

# initialize application
Event->flavor(attribute => value, ...);

my $ret = loop();

# and some callback will call
unloop(ok);

The Event module provide a central facility to watch for various types of events and invoke a callback when these events occur. The idea is to delay the handling of events so that they may be dispatched in priority order when it is safe for callbacks to execute.

Events (in the ordinary sense of the word) are detected by watchers, which reify them as events (in the special Event module sense). For clarity, the former type of events may be called "source events", and the latter "target events". Source events, such as signals arriving, happen whether or not they are being watched. If a source event occurs which a watcher is actively watching then the watcher generates a corresponding target event. Target events are only created by watchers. If several watchers are interested in the same source event then each will generate their own target event. Hence, any particular source event may result in zero, one, two, or any number of target events: the same as the number of watchers which were actively watching for it.

Target events are queued to be processed in priority order (priority being determined by the creating watcher) and in FIFO order among events of the same priority. Queued ("pending") events can, in some cases, be cancelled before being processed. A queued event is processed by being passed to the callback function (or method on a particular object or class) which was specified to the watcher.

A watcher, once created, operates autonomously without the Event user having to retain any reference to it. However, keeping a reference makes it possible to modify most of the watchers characteristics. A watcher can be switched between active and inactive states. When inactive, it does not generate target events.

Some types of source event are not reified as target events immediately. Signals received, for example, are counted initially. The counted signals are reified at certain execution points. Hence, signal events may be processed out of order, and if handled carelessly, on the wrong side of a state change in event handling. A useful way to view this is that occurrence of the source event is not actually the arrival of the signal but is triggered by the counting of the signal.
Reification can be forced when necessary. The schedule on which some other events are created is non-obvious. This is especially the case with watchers that watch for a condition rather than an event. In some cases, target events are generated on a schedule that depends on the operation of the event loop.


3

Event Lister


script PHP $49.00
View Detail
Download Event ListerDownload Event Lister
When visitors come to your site, they simply select the state in which theyre interested and theyre automatically presented with upcoming events for that state. If the site visitor finds an event that is of interest, the visitor can elect to have a reminder automatically emailed a few days before the event. You must have reminders capabilities on your server.
One of the nicest things about this script is that anyone can submit events to you for inclusion on your website. You can make this page public or not; its up to you. However, if you allow folks to submit events on your site, you are sent an email message in which you must approve the event before it is shown on your website. This approval process totally prevents any spamming of your sites events listing and prevents any undesirable language that could penetrate your listing area without your permission.
4

Event Calendar


script Flash Free Additional Info: Fully finctional free trial
View Detail
Download Event CalendarDownload Event Calendar
You can have your organization on the web in minutes with EventCalendar. Your members can look up events and signup to attend from any internet browser. This flexible program provides you with the tools you need to create and edit your event schedules, and more, for display on the Internet. Theres also a news display feature so you can easily keep your members informed of important organizational news. The Macromedia Flash calendar is powerful, attractive, and Fun to use! Now available in MacroMedias ColdFusion/MS Access OR PHP/MySQL!
5

Event Log Event Types


script ASP Free
View Detail
Download Event Log Event TypesDownload Event Log Event Types
Detailed escriptions of the different event log event types that may occur in the windows event log. The windows event logs can be accessed using development tools to aid in overall management.
6

88Scripts Event Calendar


script PHP Free
View Detail
Download 88Scripts Event CalendarDownload 88Scripts Event Calendar
A simple yet elegant event calendar. Easy to use and simple to configure. Makes event recording and display such a simple task. Bug fix on event search, also added a way to delete event. Version 2.0 includes an admin section to enable or disable HTML entries. Also you have an option to set the calendar to be public or private. Event queueing is also incorporated where event listings need approval before appearing on the calendar.
7

Event::RPC 0.90


linux Programming->Libraries Free
View Detail
Download Event::RPC 0.90Download Event::RPC 0.90
0.031 MB
Event::RPC is a event based transparent Client/Server RPC framework.

SYNOPSIS

#-- Server Code
use Event::RPC::Server;
use My::TestModule;
my $server = Event::RPC::Server->new (
port => 5555,
classes => { "My::TestModule" => { ... } },
);
$server->start;

----------------------------------------------------------

#-- Client Code
use Event::RPC::Client;
my $client = Event::RPC::Client->new (
server => "localhost",
port => 5555,
);
$client->connect;

#-- Call methods of My::TestModule on the server
my $obj = My::TestModule->new ( foo => "bar" );
my $foo = $obj->get_foo;

ABSTRACT

Event::RPC supports you in developing Event based networking client/server applications with transparent object/method access from the client to the server. Network communication is optionally encrypted using IO::Socket::SSL. Several event loop managers are supported due to an extensible API. Currently Event and Glib are implemented.


8

Tk::event 804.027


linux Programming->Libraries Free
View Detail
Download Tk::event 804.027Download Tk::event 804.027
5.7 MB
Tk::event contains miscellaneous event facilities: define virtual events and generate events.

SYNOPSIS

$widget->eventAction(?arg, arg, ...?);

The eventAction methods provides several facilities for dealing with window system events, such as defining virtual events and synthesizing events. Virtual events are shared by all widgets of the same MainWindow. Different MainWindows can have different virtual event.

The following methods are currently supported:

$widget->eventAdd(<>, sequence ?,sequence, ...?)

Associates the virtual event virtual with the physical event sequence(s) given by the sequence arguments, so that the virtual event will trigger whenever any one of the sequences occurs. Virtual may be any string value and sequence may have any of the values allowed for the sequence argument to the bind method. If virtual is already defined, the new physical event sequences add to the existing sequences for the event.

$widget->eventDelete(<> ?,sequence, sequence, ...?)

Deletes each of the sequences from those associated with the virtual event given by virtual. Virtual may be any string value and sequence may have any of the values allowed for the sequence argument to the bind method. Any sequences not currently associated with virtual are ignored. If no sequence argument is provided, all physical event sequences are removed for virtual, so that the virtual event will not trigger anymore.

$widget->eventGenerate(event ?,option => value, option => value, ...?)

Generates a window event and arranges for it to be processed just as if it had come from the window system. $window is a reference to the window for which the event will be generated. Event provides a basic description of the event, such as < Shift-Button-2 > or << Paste >>. If Window is empty the whole screen is meant, and coordinates are relative to the screen. Event may have any of the forms allowed for the sequence argument of the bind method except that it must consist of a single event pattern, not a sequence. Option-value pairs may be used to specify additional attributes of the event, such as the x and y mouse position; see "EVENT FIELDS" below. If the -when option is not specified, the event is processed immediately: all of the handlers for the event will complete before the eventGenerate method returns. If the -when option is specified then it determines when the event is processed.

$widget->eventInfo(?<< virtual >>?)

Returns information about virtual events. If the <> argument is omitted, the return value is a list of all the virtual events that are currently defined. If <> is specified then the return value is a list whose elements are the physical event sequences currently defined for the given virtual event; if the virtual event is not defined then undef is returned.


9

izi-Event 1.5


mac Business Finance->Business $175
View Detail
Download izi-Event 1.5Download izi-Event 1.5
3.5 MB
izi-Event is FileMaker Pro solution that allows you to organize and setup arrangements for a seminar, conference, festivity, or other event.

It has personalized mailing lists, attendance lists, badged invoices, and more.

10

Event Plugin -


windows Network Internet->Newsreaders RSS Free
View Detail
Download Event Plugin -Download Event Plugin -
152KB

Create your own events or find existing events through intergrated search of the Eventful.com website. Format the event, add a picture, edit the description, customize what data is displayed. The published post included correct hCalendar microformatting.
11

PHP Event Calendar


script PHP $145.00 Additional Info: developer license
View Detail
Download PHP Event CalendarDownload PHP Event Calendar
PHP Event Calendar is reusable PHP script extending the web sites functionality with event scheduler or news archive. Nice looking calendar is dynamically created on the users page. Every aspect of the script is configurable. With the intuitive control panel, minimum efforts are required to set up and maintain the script.
12

SuperCali Event Calendar


script PHP Free
View Detail
Download SuperCali Event CalendarDownload SuperCali Event Calendar
SuperCali is a free event calendar script that supports nested categories of events and multiple moderators, making it a good choice for organizations managing a large number of activities. SuperCali is designed to make data entry as easy and error-free as possible as well as provide a flexible, modular framework for displaying event information. SuperCali works with PHP and MySQL and is open source software released under the GNU General Public License. Features: * Quick installation script * Nested event categories * Year, month, week and day views * Multiple moderators and users * Multiple dates for each event * Drop-down venue and contact selection * Javascript to assist data entry * XHTML/CSS output makes it easy for Web designers to customize. * Several display modules.
13

Event::ExecFlow 0.62


linux Programming->Libraries Free
View Detail
Download Event::ExecFlow 0.62Download Event::ExecFlow 0.62
0.015 MB
Event::ExecFlow is a high level API for event-based execution flow control.

ABSTRACT

Event::ExecFlow provides a ligh level API for defining complex flow controls with asynchronous execution of external programs.

SYNOPSIS

use Event::ExecFlow;

my $job = Event::ExecFlow::Job::Group->new (
jobs => [
Event::ExecFlow::Job::Command->new (
name => "transcode",
title => "Transcoding DVD title to OGG",
command => "transcode -i /dev/dvd ...",
fetch_output => 1,
progress_max => 4711, # number of frames
progress_parser => sub {
my ($job, $buffer) = @_;
$job->set_progress_cnt($1) if $buffer =~ /[d+-(d+)]/;
#-- or simply write this:
#-- progress_parser => qr/[d+-(d+)]/,
},
),
Event::ExecFlow::Job::Code->new (
name => "checks",
title => "Do some checks",
depends_on => [ "transcode" ],
code => sub {
my ($job) = @_;
my $transcode = $job->get_group->get_job_by_name("transcode");
if ( $transcode->get_output !~ /.../ ) {
$job->set_error_message("XY check failed");
}
#-- this could be done easier as a post_callback added to
#-- the "transcode" job above, but its nevertheless a good
#-- example for the Code job type and shows how jobs can
#-- interfere with each other.
},
),
Event::ExecFlow::Job::Command->new (
title => "Muxing OGG file",
depends_on => [ "checks" ],
command => "ogmmerge ...",
no_progress => 1,
),
],
);

#-- this inherits from Event::ExecFlow::Frontend
my $frontend = Video::DVDRip::GUI::ExecFlow->new(...);
$frontend->start_job($job);

Event::ExecFlow offers a high level API to declare jobs, which mainly execute external commands, parse their output to get progress or other status information, triggers actions when the command has been finished etc. Such jobs can be chained together in a recursive fashion to fulfill rather complex tasks which consist of many jobs.

Additionally it defines an extensible API for communication with the frontend application, which may be a written using Gtk2, Tk or Qt or is a simple text console program.

In case of Gtk2 a custom widget for displaying an Event::ExecFlow job plan, including progress updates, is shipped with the Gtk2::Ex::FormFactory package.


14

Event Notifier 7.4


windows Home Shell Desktop->Other Free
View Detail
Download Event Notifier 7.4Download Event Notifier 7.4
2.47 MB
Event Notifier is a Three Steps Wizard to create unlimited Notification Events using the icons of your installed programs that you think they correspond better for the reason you want to be notified for.

Event Notifier will notify you with a sound, a Tray tip, and by changing its Notification area and Taskbar icon for 10 minutes with the selected desirable one.

15

HIOX Event Calendar


script PHP Free
View Detail
Download HIOX Event CalendarDownload HIOX Event Calendar
Web Event Calendar script that can be added in any web site. Easy to integrate in to any website or web page. Easy to add, update, modify, delete tasks, set colors, etc.. . This tool is developed using php and javascript.
16

Silentum Event Calendar


script PHP Free
View Detail
Download Silentum Event CalendarDownload Silentum Event Calendar
Silentum Event Calendar is a basic PHP calendar that you can integrate into your site effortlessly. It uses the time() and date() functions to operate, so the calendar is entirely accurate. The month and year are displayed at the top, as well as the days of the week. The current day on the calendar is highlighted so you can identify which day it is. All the past days are darkened, and the numbers are struck out. Silentum Event Calendars main purpose is for events. These events are written to the top of the PHP file, and are displayed underneath the calendar itself. They change automatically each day, so you can write your events a month in advance. This could also be used as a random text generator, or a personal day planner. The calendar uses just a single PHP file. It fits easily into any page, and can prove helpful in many instances.
17

@1 Event Publisher


script CGI Perl $30.00 Additional Info: $30 for the PRO version.
View Detail
Download @1 Event PublisherDownload @1 Event Publisher
A Perl script that allows you to post events on your webpage via SSI. Events posted by visitors are pending approval by administrator. Events icon images are optional.
18

Notifo Event Calendar 1.0


windows Business Finance->Calendars Planners $5
View Detail
Download Notifo Event Calendar 1.0Download Notifo Event Calendar 1.0
302 KB
Notifo Event Calendar is a small event notification calendar which runs in the background. When an event is inside the notification period a small notification pop-up is displayed in the system tray.


19

Event Organizer Deluxe 2.9


windows Business Finance->Personal Info Managers $75.00
View Detail
Download Event Organizer Deluxe 2.9Download Event Organizer Deluxe 2.9
7.0 MB
Event Organizer Deluxe is a flexible event management software for Windows users. For any organization that would like to organize and manage event related information. Helps to organize and plan: conference, meeting, celebration, party, workshop, seminar, training sessions, business activities, webinars,...
20

Event Log Management


script ASP->Magazine Articles Free
View Detail
Download Event Log ManagementDownload Event Log Management
The Event Log service enforces a standard logging format and makes it easy to view logs by using a single event viewer application that provides one-stop shopping for the system administrator.

My Software


You have not saved any software. Click "Save" next to each software to save it to your software basket


Related Search