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

Ani Callback software
Filter: All | Freeware | Demo
 

Ani Callback

< 1 2 3 4 5 > 
Added: August 31, 2013 | Visits: 351

uispinner GUI control to allow user to input a scalar. The callback is called continuously as the user steps the spinner. For example if the value was contrast in an image-processing application, the image could update as the user presses on the control.



Platforms: Matlab

License: Freeware Size: 10 KB Download (39): uispinner Download

Added: September 03, 2013 | Visits: 432

UICOMPONENT - expands uicontrol to all Java classes UICOMPONENT is intended as a direct replacement of Matlab's built-in UICONTROL and JAVACOMPONENT functions. It accepts all parameters and styles that UICONTROL accepts, as well as any other displayable Java (Swing/AWT) component class. The calling convention and syntax of UICONTROL were preserved...





Platforms: Matlab

License: Freeware Size: 30.72 KB Download (42): UICOMPONENT - expands uicontrol to all Java classes Download

Added: June 05, 2013 | Visits: 333

spinedit spinedit is an easy way to implement an edit with a slider attached to it to allow easy adjustment of numerical values in GUIs.This package groups the two uicontrol components together and takes care of their callbacks, resulting in a kind of new uicontrol type named spinedit.The zip file...


Platforms: Matlab

License: Freeware Size: 10 KB Download (39): spinedit Download

Added: September 01, 2013 | Visits: 294

sliderPanel My new favorite uitool...this is quickly becoming an indispensable tool in my uicontrol arsenal.FUNCTION:sliderHandle,panelHandle,editHandle] = sliderPanel(parent, PanelPVs, SliderPVs, EditPVs, LabelPVs, numFormat) Creates a slider in a separate uipanel, with an associated interactive EditBox,...


Platforms: Matlab

License: Freeware Size: 10 KB Download (41): sliderPanel Download

Added: June 28, 2013 | Visits: 403

qplot - quicken qif file parsing and plotting USAGE:Export Quicken account to 'quicken.qif' fileEdit qplot.m script with this filename.Specify start and stop dates for plot.Run the script.Day to day transactions are plotted in blue (monotonic positives are paydays, negatives are rent payments.) Cumulative balance is in green. Looking at the...


Platforms: Matlab

License: Freeware Size: 10 KB Download (46): qplot - quicken qif file parsing and plotting Download

Added: April 01, 2013 | Visits: 277

Audio Player Demo with Dynamic Crosshairs Introduction:This package encloses a small application dedicated to speech signal processingat 8 kHz or 16 kHz. This application reads standard *.wav or *.pcm files throughUI dialog box, plots and plays the signal with vertical dynamic crosshairs.This application illustrate how to associate...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 317.44 KB Download (43): Audio Player Demo with Dynamic Crosshairs Download

Added: May 11, 2013 | Visits: 499

Example: Using Nested Functions for Timers This is a simple example of how nested functions can simplify the writing of callback functions for writing continuously-running applications. Callback functions are used by timer objects and the various objects in the Test & Measurement Toolboxes (Data Acquisition Toolbox, Instrument Control...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (43): Example: Using Nested Functions for Timers Download

Added: September 07, 2013 | Visits: 335

Automatic Map Scale Generation MAKESCALE creates a scale for map data. MAKESCALE creates a scale on the current axis based on the current axis limits. The scale is made to occupy 1/5th of the map. It is placed in the southeast corner of the map. The units will either be in milimeters, meters or kilometers, depending on the...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 1024 KB Download (40): Automatic Map Scale Generation Download

Added: August 17, 2013 | Visits: 358

Making MATLAB Swing More GImport supports the import of Java Swing-based GUIs. These can be designed by hand or by using one of the many free GUI designers such as those in Eclipse, NetBeans or IntelliJ IDEA.If you find MATLAB GUIDE-designed GUIs limiting, GImport may be what you are looking for.To import a GUI simply...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 430.08 KB Download (48): Making MATLAB Swing More Download

Added: July 14, 2013 | Visits: 317

GUIDE with nested callbacks Tired of using USERDATA or GUIDATA calls to share data between callbacks in GUIDE? Nested callbacks are the answer. A nested function can "see" all the data that the top level function can. You therefore no longer need to painstakingly save or pass data for later use.Unfortunately, up until now...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (42): GUIDE with nested callbacks Download

Added: May 02, 2013 | Visits: 399

Mouse Motion Handler MouseMotionHandler is a MATLAB class that uses a MATLAB figured-deOaos WindowButtonMotionFcn callback as a hook to extend button motion functionality to all handle graphics child objects of a figure including axes, lines, surfaces uipanels, uicontrols etc.MouseMotionHandler provides an...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (47): Mouse Motion Handler Download

Added: March 27, 2013 | Visits: 227

GUI with memory - UIREMEMBER & UIRESTORE Many apps "remember" their last state. The following functions make this functionality very easy for Matlab GUIs.UIREMEMBER basically remembers (saves) the object state.UIRESTORE basically restores the object last saved state.The simplest way to do it is, for each "need to be remembered" object...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (47): GUI with memory - UIREMEMBER & UIRESTORE Download

Added: August 14, 2013 | Visits: 454

A Simple Progress Bar Progress bar becomes very essential in case of the functions which consume very long time for computations. This package consists of a Matlab figure along with its corresponding m file. Inside the m file you can see how the patch object can be used along with an existing axes to create a progress...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (44): A Simple Progress Bar Download

Added: March 31, 2013 | Visits: 388

Trace the Position of Cursor without Click function [x,y]=gpos(h_axes)%GPOS Get current position of cusor and return its coordinates in axes with handle h_axes% h_axes - handle of specified axes% [x,y] - cursor coordinates in axes h_aexs%% -------------------------------------------------------------------------% Note:% 1. This function...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (52): Trace the Position of Cursor without Click Download

Added: September 07, 2013 | Visits: 423

evaldialog % evaldialog% evaluates the edit box input and solves% it either numerically or symbolically% It is a simple example of GUI interaction% and the use of eval and solve with some% error checking and callback issues.%% This function is meant to be an example for CSSM and not% to be used as is.%%...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (46): evaldialog Download

Added: May 26, 2013 | Visits: 263

IMAQPLOT - Preview video data using callbacks IMAQPLOT is a simple demonstration of previewing video data using the toolbox's TimerFcn callback. IMAQPLOT also allows users to integrate the video preview into any MATLAB GUI. These are capabilities that are present in the toolbox's PREVIEW command, but are presented here as a demonstration of...


Platforms: Matlab

License: Shareware Cost: $0.00 USD Size: 10 KB Download (46): IMAQPLOT - Preview video data using callbacks Download

Added: June 26, 2013 | Visits: 605

PHP Oracle Grid PHP Oracle Grid aims to display Oracle query results in an HTML table. It can execute a given SQL query and then generate an HTML table in which the query results displayed. The presentation of the table rows is configurable using CSS styles. Headers, odd and even rows can use different CSS...


Platforms: PHP

License: Freeware Size: 10 KB Download (44): PHP Oracle Grid Download

Added: April 04, 2013 | Visits: 419

AJAX CRUD minimized AJAX CRUD minimized is an HTML-based CRUD user interface for adding, updating and deleting database records is provided.The script supports record pagination, relationships to other tables, filtering records by a user defined text, presentation customization with CSS style sheets, callback...


Platforms: PHP

License: Freeware Size: 81.92 KB Download (46): AJAX CRUD minimized Download

Added: June 07, 2013 | Visits: 405

ajaxCRUD jaxCRUD takes a table name and displays its records in an HTML table that can be edited using AJAX to save the record changes without reloading the page. AJAX is also used to add new records or delete existent ones.ajaxCRUD supports CSS stylesheets, various datatypes, paging, defining...


Platforms: PHP

License: Freeware Size: 30.72 KB Download (46): ajaxCRUD Download

Added: September 16, 2013 | Visits: 571

Report generating and drawing Report generating and drawing can compose the definition of report tables that display data retrieved from given SQL query results.The report table definitions include the SQL query, query result grouping fields, result columns to be used as report fields, callback functions to format field...


Platforms: PHP

License: Freeware Size: 40.96 KB Download (44): Report generating and drawing Download

< 1 2 3 4 5 >