Main > Free Download Search >

Free variables and functions software for windows

variables and functions

Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 8468
Business Functions 1.52

Business Functions 1.52


Business Functions is a convenient tool which can help you analyze and plan your business. more>>

Business Functions 1.52 is a convenient tool with 500+ high-performance functions which can help you analyze and plan your business. It is designed to make financial models such as business plans and budgets faster to build, less error-prone, and easier to understand and maintain. It does this through integrated families of functions, in particular for budgeting and cash flow projections.

One of the features is its day count accuracy when used for projecting cash flows.It has specific interfaces for both Excel 2007 and Excel 1997-2003, as well an expanded utility set that includes number formatting and a time chart wizard, allows partial view of C++ code via the Function Finder, and includes the consolidation tool Cashflow Administrator.

Major Features:

  1. Flexibility
    • Project in either cash or accruals, by changing one variable (ProjMode).
    • Change the payment timing from quarterly to annual, calendar quarters or specified dates, again using one variable (Periods).
    • Change the timebase of your budget again by using just one variable (Base).
  2. Accuracy
    • Many more DayCount options than Excel, covering all types of payment stream including rent, loans, bonds, and sales revenue.
    • Accurate date arithmetic using an advanced timeperiod description methodology (Time, Base, DayCount and Periods) ...
  3. Projections Functions
    • This is the only library that provides specialist projections functions, which are the most accurate and reliable way of projecting cash flows, accruals etc.
    • Projections functions are designed to deal accurately with partial periods, change of rate part-way through a period, etc.
    • Running through the core of each projection function is the highly optimised daycount and date arithmetic, developed over several years.
    • The unique projections functions in the library give model developers a distinct edge over conventional approaches.
    • Whatever your business, project it right! Project your interest the same as your banker or bond manager, project your rent just like your Property Manager, Banker or Accountant.
  4. Rapid Model Development
    • Familiar approach within Excel, the tool your already know, using standard functions. No need to learn new user interface.
    • Debug and error Trace facility. No more unexplained #NUM! errors, faster formulae debugging.
    • Online support Forum for all users.
    • Common chart of variables, standard variable names, consistent argument order and style throughout the library eases learning curve.
  5. Quick to run
    • Several times faster than functions written in Visual Basic for Applications (VBA).
    • Functions written in optimized native C++ (faster than other methods such as .NET managed code).
  6. Error Reduction
    • Use of same function across the timeframe of the model results in less one-off cell errors.
    • The likelihood of error depends less from ill-designed formulas and one-off cell mistakes and more on the choice of correct function and inputs. Inputs are in part checkable automatically by Trace, and in part easier to check by hand because you know what each argument is supposed to be.
    • Function inputs and range sizes are screened automatically by the functions for inconsistencies.
  7. Ease of understanding
    • Functions are good practise - a modular way to separate logic from data.
    • The name of the function a much better indication of what spreadsheet designer was intending - there is an strong element of self-documentation.
    • No need to document a model cell by cell, formula by formula - the presence of a Business Function means that users can revert to the BF documentation for details of what a line in the spreadsheet is doing.
  8. Robust
    • Functions work across a wide range of input magnitudes and will inform, via Trace, where an input is invalid or out of range.
    • C++ libraries are the most reliable form of Excel library, because of industry-strength C++compilers, syntax checkers and optimizers, and a minimum of extraneous overhead.
  9. Ease of Maintenance
    • Used widely, standardisation amongst models leverages the analysts knowledge.
    • Business Functions behaviour is stable and constant over several years now - future releases are very unlikely to cause model breakages.

Enhancements:

  • Maintenance release.
  • Compiled with Boost Libraries 1.39.
  • Bug fix on opening log files.
<<less
Download (12.6MB)
Added: 2009-09-03 License: Freeware Price: Notavailable
downloads
 
Other version of Business Functions
Business Functions Basic Edition 1.51the library and serves as a runtime for the entire function library. Business Functions Basic ... Functions either return accruals or cash (ProjMode variable). Choice whether to ust one
License:Freeware
Download (37.3KB)
downloads
Added: 2008-12-08
Business Functions Basic Edition 1.50Microsoft Excel for Business Planning and Analysis. , financial projections, dates, projections and discounted cashflow, function selector
License:Freeware
Download (6.17MB)
329 downloads
Added: 2008-12-02
Business Functions Basic Edition 1.49excel financial ... The Basic Edition, which is shareware, contains the elementary functions of the library and
License:Freeware
Download (12.6M)
375 downloads
Added: 2008-10-20
Business Functions Basic Edition 1.44The system comes with a function selector, a help file, a quick reference, examples and a trace ... or cash (ProjMode variable). - Choice whether to use projections functions one-per-cell or as
Price: FREE
License:Freeware
Download (12.9MB)
393 downloads
Added: 2008-10-06
Business Functions 1.40A free function library for Microsoft Excel for Business Planning and ... , dates, projections and discounted cashflow, function selector, help file, function finder
Price: $0.00
License:Freeware
Download (9.5MB)
1996 downloads
Added: 2004-06-08
License:Freeware
Download (6.17MB)
592 downloads
Added: 2008-03-25
Functions 3D 1.3

Functions 3D 1.3


Render 3D surfaces from mathematical expressions on your desktop. more>>

Functions 3D 1.3 is an effective program in which you can enter a mathematical function and have it rendered in a 3D space.

Major Features:

  1. Operators
    • + Addition
    • - Subtraction
    • * Multiplication
    • / Division
    • ^ Exponentiation
  2. Variables & Constants
    • x Variable
    • y Variable
    • pi 3.141592653589793
    • e 2.718281828459045
    • phi 1.618033988749895
    • rand A random number (0<<less
Download (87.8KB)
Added: 2009-07-01 License: Freeware Price:
14 downloads
 
Other version of Functions 3D
Functions 3D 0.21widget for Opera browser allows you to enter a mathematical function and renders it in a 3D space ... Equations are entered as a function of x and y. An example for a unit sphere would be: f(x,y) = (1
License:Freeware
Download (88.2KB)
857 downloads
Added: 2007-07-24
Leaf API Hooking Solution 1.1

Leaf API Hooking Solution 1.1


hook callback function & API function variable more>>
  • When hooking an API, we need to write some kind of hook callback function and original API function variable var MessageBoxANext : function (hWnd: HWND; lpText, lpCaption: PAnsiChar; uType: UINT): Integer; stdcall; function MessageBoxACallback(hWnd: HWND; lpText, lpCaption: PAnsiChar; uType: UINT): Integer; stdcall; begin Result := MessageBoxANext(hWnd, lpText, Message From Dll, uType); end;
  • Put all of code in a dll for global API hook like this procedure DllMain(dwReason: DWORD); begin case dwReason of DLL_PROCESS_ATTACH: begin HookAPI(user32.dll, MessageBoxA, @MessageBoxACallback, @MessageBoxANext); end; DLL_PROCESS_DETACH: begin UnHookAPI(user32.dll, MessageBoxA, @MessageBoxANext); end; end; end; begin DllProc := @DllMain; DllMain(DLL_PROCESS_ATTACH); end.
<<less
Download (27k)
Added: 2008-10-28 License: Freeware Price:
431 downloads
Excel Function Dictionary 2.0

Excel Function Dictionary 2.0


The Excel Function Dictionary contains over 150 examples of functions more>>
The Excel Function Dictionary contains over 150 examples of functions The Excel Function Dictionary has a database of more than 150 examples of functions.
<<less
Download (264KB)
Added: 2006-12-13 License: Freeware Price:
2031 downloads
functions for keyconfig 1.4.0

functions for keyconfig 1.4.0


This extension will provide core functions for keyboard operation. more>> This extension will provide core functions for keyboard operation.
* Scrolling
* Tab Focusing
* Frame Focusing
* Finding
* Copy URL
* Clear HTTP Auth
* ...
Combining with keyconfig extension, you can set any shortcut key to these functions simply.
If you operate Firefox by keyboard mainly, this extension will help you
<<less
Download (8KB)
Added: 2008-11-25 License: Freeware Price:
347 downloads
 
Other version of functions for keyconfig
functions for keyconfig 1.3.7core functions for keyboard operations: - Scrolling - Tab Focusing - Frame Focusing - Finding - ... HTTP Auth and many others Combining with keyconfig extension, you can set any shortcut key to
License:Freeware
Download (7KB)
988 downloads
Added: 2007-02-08
functions for keyconfig (Thunderbird) 1.0.3provide core functions for keyboard operations. functions for keyconfig (Thunderbird) 1.0.3 ...functions for keyconfig (Thunderbird) will provide core functions
License:Freeware
Download (4.3MB)
1024 downloads
Added: 2007-01-05
beWISE - Edelwise Basic Variables 1.0

beWISE - Edelwise Basic Variables 1.0


Makes task to task communication between VB programs simple via variables that are located in shared memory. A VB program can use any number of beWise Variables simultaneously, limited only by the ver more>>
Task to task communication with VB programs made simple. This product allows you to have as many VB programs as you want communicate simply via variables. Communication is done via shared memory and is very fast. As soon as a beWise variable (Basic Edelwise Variable) is created by one VB program ALL VB programs on this computer SHARE that variable. Any VB program can change the variable and/or trigger on CHANGED events of that variable. A VB program can use any number of beWise Variables simultaneously, limited only by the version of the Edelwise product you have (the FREE version supports one variable of type double that can be shared among any number of VB programs.
<<less
Download (2096K)
Added: 2004-03-03 License: Freeware Price:
2060 downloads
iNeeda Password and Tracker 3.2

iNeeda Password and Tracker 3.2


iNeeda Password and Tracker main features: easy to use Interface, unlimited Category Support, copy User ID & Password functions, Hidden passwords with secure reveal, Go to Website, Password Generator more>> <<less
Download (4.7MB)
Added: 2007-04-24 License: Freeware Price:
downloads
Microsoft SQL Server 7.0 - Text Formatting Functio Q304851

Microsoft SQL Server 7.0 - Text Formatting Functio Q304851


SQL Server 7.0 provides a number of functions that enable database queries to generate text messages more>> SQL Server 7.0 provides a number of functions that enable database queries to generate text messages. In some cases, the functions create a text message and store it in a variable; in others, the functions directly display the message. A vulnerability has been discovered with these functions.

Use of an invalid format type character may allow SQL Server to overwrite an internal buffer that may overwrite an address in the SQL Server process space with arbitrary data. If SQL Server overwrites an address in the SQL Server process space with arbitrary data, SQL Server may potentially allow you to execute arbitrary code within SQL Server or the SQL Server process may abnormally terminate.

<<less
Download (5.1M)
Added: 2008-10-29 License: Update Price:
359 downloads
Delphi Registry and Initialisation Variables Code Generator 1.0

Delphi Registry and Initialisation Variables Code Generator 1.0


Delphvar is a useful and powerful Pascal code generator for the Delphi programming language more>>
Delphvar is a useful and powerful Pascal code generator for the Delphi programming language, designed to assist in the saving and restoring of component properties to and from both the registry and INI files.
Given a list of component types copied from the Interface section of form, Delphvar allows the specification of which component properties to process, and will then automatically create Pascal insert files containing the statements needed to read and write these properties. It will also write files to declare variables of similar name to the component properties and read and write from variables as well, and clear both component properties and variables.
<<less
Download (369KB)
Added: 2006-11-05 License: Freeware Price:
1103 downloads
Microsoft SQL Server 2000 - Text Formatting Functi 354983

Microsoft SQL Server 2000 - Text Formatting Functi 354983


Previously published under Q304850. SQL Server 2000 provides a number of functions that enable database queries to generate text messages more>> Previously published under Q304850.

SQL Server 2000 provides a number of functions that enable database queries to generate text messages. In some cases, the functions create a text message and store it in a variable; in others, the functions directly display the message. A vulnerability has been discovered with these functions.

Use of an invalid format type character may allow SQL Server to overwrite an internal buffer that may overwrite an address in the SQL Server process space with arbitrary data. If SQL Server overwrites an address in the SQL Server process space with arbitrary data, SQL Server may potentially allow you to execute arbitrary code within SQL Server or the SQL Server process may abnormally terminate.

<<less
Download (8.0M)
Added: 2008-10-28 License: Update Price:
360 downloads
SpeQ Mathematics 3.3

SpeQ Mathematics 3.3


SpeQ is a small, extensive mathematics program with an intuitive interface more>> SpeQ is a small, extensive mathematics program with a simple, intuitive interface. All calculations are entered in a sheet. In there you can freely add, edit and execute calculations. SpeQ supports all common functions, constants, and units. Furthermore, you can define custom variables and functions, and plot graphs of your functions.<<less
Download (543KB)
Added: 2008-05-01 License: Freeware Price:
728 downloads
 
Other version of SpeQ Mathematics
SpeQ Mathematics 3.3add, edit and execute all calculations. You can define variables and functions, and plot graphs of your functions. You can save your calculations for later re-use.matlab 6.1 Features: SpeQ has
License:Freeware
Download (539KB)
620 downloads
Added: 2008-08-22
SpeQ Mathematics 3.2add, edit and execute all calculations. You can define variables and functions, and plot graphs of your functions. You can save your calculations for later re-use
License:Freeware
Download (505KB)
684 downloads
Added: 2008-01-02
Free JavaScript Editor 4.7

Free JavaScript Editor 4.7


Free JavaScript Editor is advanced JavaScript Editor, Validator and Debugger for beginners and professionals. AJAX developers can easily use the program as Free Ajax Editor more>>

Free JavaScript Editor 4.7 is a professional and useful tool that helps users edit JavaScript code and creat animations and other special effects for Web pages using DHTML, CSS and JavaScript.

It is advanced JavaScript Editor, Validator and Debugger for beginners and professionals. AJAX developers can easily use the program as Free Ajax Editor.

Major Features:

  1. Combined color-coded syntax - for JavaScript, PHP, VBScript, CSS and so on. You can directly identify objects, comments, functions, methods and other elements.
  2. Go to declaration:
    • Navigation to a declaration has been extended in Freeware JavaScript Editor, and now (in addition to functions, variables, etc.) it is also supported for JavaScript labels.
    • Use the Ctrl + Click combination and this will directly navigate you to the line of javascript code where the function, label or variable is declared.
  3. Highlighting corresponding curly braces. There are two ways to highlight:
    • By placing caret before brace
    • By placing mouse over curly brace.
    • So you are able to highlight two pairs of matching curly braces at the same time!!!
  4. JSLint JavaScript syntax verifier.
    • JSLint gets a JavaScript source and scans it. If it finds a trouble, it describes the problem and gives location within the source.
    • JSLint is embedded in Free JavaScript Editor. Just click on "Js Syntax Check in JSLint" in the Debugging menu or toolbar to verify selected text or whole document.
  5. Block Comments. You can comment a part of JavaScript code by selecting the code in the Free JavaScript Editor and pressing CTRL+/ (slash). Each line of the selected code is prefixed with //.
    • Pressing CTRL+/ will insert or remove the slashes, based on whether the first line of the code is prefixed with //.
    • Press [CTRL+/] to comment selected text
  6. Free JavaScript Editor uses Intellisense to make simpler writing of code.
    • You can keep your context, find the information you need, insert language element directly into your code, and even have IntelliSense complete your typing for you.or uncomment selected text

Enhancements:

  • Add new IntelliSense features.
<<less
Download (6.5MB)
Added: 2009-08-15 License: Freeware Price: Notavailable
downloads
 
Other version of Free JavaScript Editor
Free JavaScript Editor 4.2 4.2"Functions and Variables" navigator. Program uses Intellisense to simplify writing of code ... Find functions and variables. Code formatter. Usages highlighting. Distribute your colored
License:freeware
Download (7.1MB)
293 downloads
Added: 2008-12-31
Javascript Edit Program 1.6

Javascript Edit Program 1.6


Javascript Edit Program is a fully functional javascript Editor letting you Desing Javascripts within minutes! Includes built in Script Wizard. Also insertable code: Onmouse events, functions, variabl more>>
Javascript Edit Program is a fully functional javascript Editor letting you Desing Javascripts within minutes! Includes built in Script Wizard. Also insertable code: Onmouse events, functions, variables, time codes, Script Tags, and includes links to submit a script, to Javascript Tutorials, and to download free Javascripts also to the HomePage. Using the Insert | Time command create time codes with the typing of the variable to be used, and the method, then click Create! and you got a time code. The Built-In Script Wizard lets you declare up to 5 variables and unlimited functions Then combine the created files into 1 and youve got a javascript! Register to get lots more features. Registration is free
<<less
Download (2560K)
Added: 2001-07-20 License: Freeware Price: $0.00
3089 downloads
Rapid Environment Editor 3.2.0.518

Rapid Environment Editor 3.2.0.518


Rapid Environment Editor is a freeware Windows environment variables editor. It includes easy to use GUI and replaces small and inconvenient Windows edit box. more>> <<less
Download (0.87MB)
Added: 2009-05-11 License: Freeware Price: $0
33 downloads
 
Other version of Rapid Environment Editor
Price: $0
License:Freeware
Download (0.87MB)
35 downloads
Added: 2009-05-02
Price: $0
License:Freeware
Download (0.87MB)
235 downloads
Added: 2009-03-24
Price: $0
License:Freeware
Download (0.87MB)
261 downloads
Added: 2009-02-25
Price: $0
License:Freeware
Download (0.87MB)
275 downloads
Added: 2009-02-06
Microsoft SQL Server 7.0 - Text Formatting Functions Contain Unchecked Buffers Q304851

Microsoft SQL Server 7.0 - Text Formatting Functions Contain Unchecked Buffers Q304851


Microsoft SQL Server 7.0 - Text Formatting Functions Contain Unchecked Buffers is a program stimulating database queries to generate text messages. more>>

Microsoft SQL Server 7.0 - Text Formatting Functions Contain Unchecked Buffers Q304851 is a program stimulating database queries to generate text messages. In some cases, the functions create a text message and store it in a variable; in others, the functions directly display the message. A vulnerability has been discovered with these functions.

Use of an invalid format type character may allow SQL Server to overwrite an internal buffer that may overwrite an address in the SQL Server process space with arbitrary data. If SQL Server overwrites an address in the SQL Server process space with arbitrary data, SQL Server may potentially allow you to execute arbitrary code within SQL Server or the SQL Server process may abnormally terminate.

<<less
Download (4.9MB)
Added: 2001-12-19 License: update/patch Price:
downloads
Secleted [ 0 ] software to compare
  • Page: 1 of 5
  • 1
  • 2
  • 3
  • 4
  • 5