Use an OPT="i" on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner.

Size: px
Start display at page:

Download "Use an OPT="i" on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner."

Transcription

1 JavX Version README File - May 2006 Release Notes for JavX SE/AE/LE Sage Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel *** NOTES *** As of Version 2.5, the JavX thin-client architecture has been adapted for use in a wider variety of Java-enabled devices. Three editions of JavX are now available to best serve each of the different target platforms: JavX SE - for desktop platforms that run the Java 2 Standard Edition (J2SE) runtime environment. This includes Windows, Linux and UNIX X-Windows, and Apple Mac OS X systems. JavX AE - for mobile devices that run the Java 2 Micro Edition (J2ME) Constrained Device Context (CDC) Personal Profile. This includes mobile phones and personal digital assistants (PDAs). JavX LE - for task-specific devices that run the J2ME CDC Foundation Profile. This includes a range of consumer products, automotive and other interactive components. The release notes for each of these editions are provided in the sections below. Full descriptions of the various ProvideX thin-client and server options can be found in the ProvideX Client-Server Reference documentation. JavX SE - JavX Swing Edition Runtime Requirements This version of JavX requires a minimum of Java Runtime Environment (JRE). Download the latest JRE at Section 1 - New Functionality: Controlling the Icons used by Dialogues / Windows. (New) An application can now control what Icon, if any, is used within the upper left corner of the window. Use an OPT="i" on the Dialogue / Window definition to create a window that does not have an Icon in its upper left corner. The 'OPTION'() mnemonic has been extended to support: 'OPTION'("ICON",ImageName$) - Sets the Icon for the current and subsequent windows 'OPTION'("WDWICON",ImageName$) - Sets the Icon for the current window only ImageName$ - May be: "" (Null) - To remove the icon from the current window

2 "*" (Asterisk) - To display the default icon for the window filename or Image specifcation - The name of a.ico file, or a full icon specification (see the Enhanced Icon Usage for details) EXAMPLES: print 'dialogue'(1,1,80,25,"my Window",'cs',opt="i") print 'option'("wdwicon","c:\windows\system32\shell32.dll@137%32") print 'option'("wdwicon","") print 'option'("wdwicon","*") The FIN() function has been extended with new keywords to retrieve the current settings: X$ = FIN(0,"WDWICON") - Current Window Icon ImageName X$ = FIN(0,"ICON") - Current Default Window Icon ImageName Rounded Rectangles. A new optional argument has been added to the 'RECTANGLE'() that allows for radiuses on the corners. This new argument is the radius of the circle as expressed in graphical co-ordinates. The new format is: 'RECTANGLE'(x, y, x1, y1, radius) The radius parameter is optional and, if omitted, a normal rectangle is drawn. The radius parameter is assumed to be positive (negative values will have their sign flipped). If the radius exceeds half of the height (or width) the system will assume a semi-circle is used to round the edge Support for Mnemonic '4D'. Switches JavX to an XP "themed" Look and Feel. To Activate: PRINT '4D', To De-Activate: PRINT '2D', This new '4D' mnemonic for XP look-and-feel, works hand-in-hand with the new 'OPTION'() mnemonic and FIN() enhancements described earlier in this readme. As well, there is a "Theme" object in the Utilities section of this document that allows for the setting of the various theme colours to closely match MS Windows XP theme's. In JavX, the '4D' mnemonic should be used in conjunction with the Windows look-and-feel; e.g., on Windows XP, PRINT '4D', OPTION("LookAndFeel","os default") The GUI controls will only have an XP lookandfeel if the OS is Windows XP Grid Changes. (New and enhanced) Added support for the following GRID properties: CELLLEFT, CELLTOP, CELLTIP, CURRENTCELLCOLOR, UPPERCASE, COLUMNPIXELS, ROWPIXELS, JOINCOLUMNS, BOTTOMLEFTTICK, TOPLEFTTICK, BOTTOMBORDER, TOPBORDER, LEFTBORDER, RIGHTBORDER, TICKPIXELS, TICKPERUNIT, JOINROWS, OVERLAPENABLED, SKIPLOCKEDCELLS, TRACKCOLOR, SELECTVALUE, SELECTROW, SELECTCOLUMN, SELECTINDEX, COLUMNNAMES, TRACKCOLOR Added a flag for ignoring and not reporting non-essential GRID errors; e.g., PRINT 'OPTION'("REPORTGRIDERRORS","FALSE") causes the GRID to not report an error when setting unsupported GRID attributes. The following GRID attributes are not supported in JavX: AUTOSEQUENCE, IMPLIED_DECIMAL, SEPLOAD, LOCKCOLUMNS, LEN,

3 CELLTAG, FILLCOLOUR, CELLIMPLIEDDECIMAL, CELLFORMAT, INSDELENABLED Added support for ICONs on MENU_BAR and POPUP_MENU menu items Standard LIST_BOXes now support Load-on-Demand. Listview LIST_BOXES do not currently support Load-on-Demand STATUSBAR now uses the current Java Swing Lookandfeel foreground color. For example, if the current lookandfeel is Windows, RGB: 224, 223, 227 is used. If the current lookandfeel is metal, RGB: 204, 204, 204 is used, etc Improved support for HTML MULTI_LINES. The dynamic property TEXT$ can now be used to set HTML; e.g., x'text$="<body><h1>hello World</H1></BODY>") Added the following to the Java ProvideX COM interface: Support for the 'COUNT property. Every array object's length attribute can now be accessed through the COUNT property It is now possible to load a class and then instantiate it; i.e., A class without a public no argument constructor can now be instantiated by loading the class and then calling the appropriate constructor to create an instance of the class Extended the FIN directive so it is now possible to get the Java UIManagers UIDefaults; e.g., FIN(0, "GETJAVA_UIDEFAULTS") Treeview LIST_BOX. Added support for all six possible icons: 1. Default overall bitmap or icon: always used with any listed entries that do not have subordinates. 2. Default bitmap or icon for items with subordinates. 3. Default bitmap or icon for items with subordinates if the tree level is expanded (i.e.,shown) in Treeview. 4. Bitmap or icon for entries that do not have any subordinates when the item is selected. 5. Bitmap or icon for entries that have subordinates when selected. 6. Bitmap or icon for entries that have subordinates when selected and level is expanded Added support for the following Treeview properties: 'Edit 'ItemState 'StateBitmaps$ 'ItemText$ 'Children 'Sort 'Expanded - automatic editing of item text. - Numeric value indicating the state of an item. - List of images to use to display states. - Applications can now alter the contents of this property to logically move tree structures. - This read-only property returns the number of direct descendant children for the current 'Item. - This property controls sorting for Treeviews - This control allows you to expand/collapse an item and all sub-ordinates Updated the GUI of the Web Page Configuration program JavXpagegen.pvs Refer to the PageGenTutorial for detailed instructions on how to launch and use the page generator utility. Section 2 - Resolved Issues:

4 2.1 - Resolved an issue with LIST_BOX LOAD and large packets Corrected a problem where an HTML multi-line would not be created if a NUL string was not a valid URL The following grid issues have been addressed: Order of selected cells now sorted correctly GRID LOADLIST now working correctly Corrected errors in Keyboard navigation Previously with large-width grids, the header could be smaller than the width of the grid Addressed the following issues related to the Java COM interface: Numerous changes made to address converting numeric data to the correct Java numeric type if a PvxVariant is not used. Previously if a PvxVariant was not used, all numeric data was converted to an Int. Now the data is converted to a number object and then the number object is converted to the appropriate numeric type for the targeted method Added a work-around for a Java reflection bug that was not allowing calls to public methods of inner classes. For example, the Enumeration methods (i.e., hasmoreelements()) were not working prior to this change Added support for escaped characters within a string; e.g., \" An END will now cause all OCX handles to be dropped Resolved an array-index-out-of-bounds exception error caused by the 'FONT' mnemonic having a value of "" Corrected a problem where pressing the Enter key on a MULTI_LINE greater than 1 row high did not set the EOM to $0D$ When an invisible window is made active (via 'POP', 'GOTO', etc) JavX now makes the window visible Resolved a problem where the ENTER key caused JavX to ring the system bell in a MULTI_LINE with maximum characters entered Addressed an issues where a DROP_BOX control with a TBL string specified would select the first item in the drop list when the DROP_BOX WRITE directive passed "";e.g., prior to this release the following would cause the first item in the DROP_BOX to be selected : DROP_BOX WRITE 10, " Corrected a problem where a CLIP_BOARD WRITE that specified $0AOD$ would add extra new line characters to the text LIST_BOX WRITE will now scroll the LIST_BOX so that the selected item is visible in the LIST_BOX Addressed issues with 'OPTION' ("WDWICON",string$): 1. PRINT 'OPTION' ("WDWICON","") Sets the window icon to the default Java icon (Java coffee cup icon). Previously this set the window icon to the default ProvideX icon. 2. PRINT 'OPTION' ("WDWICON"," ") Sets the window icon to the null so the image will appear in the icon area of the window. 3. PRINT 'OPTION' ("WDWICON","*") Sets the window icon to the default ProvideX icon.

5 4. An invalid icon is ignored. Previously this had the same effect as PRINT 'OPTION' ("WDWICON"," ") Corrected a problem with LIST_BOX that caused list boxes with the "Suppress Buttons" attribute specified on creation to be initially disabled Entering a menu_bar command with an invalid string caused JavX SE/AE to hang. This now results in an Error #87 (Invalid menu_bar definition). JavX AE - JavX AWT Edition Runtime Requirements This version of JavX requires a minimum of the Java 2 Micro Edition (J2ME), Connected Device Configuration (CDC) Personal Profile JRE. JavX AE functionality is upwardly-compatible with JavX SE. This version of JavX supports the following ProvideX features: 1 - Character UI (fonts, lines and shapes, colors, pictures, etc.) 2 - All Mnemonics ('DIALOGUE', 'WINDOW', 'POP', 'SWAP', etc) 3 - System functions and variables (MSE, OBJ, FIN, etc.). 4 - The ProvideX "OCX" interface to Java 5 - Local serial file access 6 - The following GUI components are supported: Buttons: BUTTON, RADIO, CHECK_BOX (Images not supported on Buttons) Text Components: LIST_BOX, MULTI_LINES, DROP_BOX Vertical and Horizontal Scroll Bars Message Box Tool bar ProvideX menu bar menus (not popup menus) JavX LE - JavX Light Edition Runtime Requirements This version of JavX requires a minimum of the Java 2 Micro Edition (J2ME), Connected Device Configuration (CDC) Foundation Profile JRE. *** NOTE: Unlike other JavX editions, the JavX Light Edition is designed for a wide variety of fixed-purpose/embedded devices which may or may not have a standardized method for installing software. Because of this, the JavX LE installation JAR archive file is currently not available for direct download. Developers who are interested in running JavX for a specific device implementation are welcome to contact Sage Software Canada Ltd. to request a copy of JavX LE. JavX LE functionality is upwardly-compatible with JavX AE and SE. This version of JavX supports the following ProvideX features: 1 - System functions and variables (MSE, OBJ, FIN, etc).

6 2 - The ProvideX "OCX" interface to Java. 3 - Local serial file access.

Using JavX Running Applications in a Web Browser or WinCE Device. Presented by: Jarett Smith Eric Vanpaeschen

Using JavX Running Applications in a Web Browser or WinCE Device. Presented by: Jarett Smith Eric Vanpaeschen Using JavX Running Applications in a Web Browser or WinCE Device Presented by: Jarett Smith Eric Vanpaeschen Presentation Outline Rich Internet Applications (RIA) Examples of Java Applets ProvideX JavX

More information

1.1 - Added support for FORMATTED MULTI_LINEs; e.g., MULTI_LINE

1.1 - Added support for FORMATTED MULTI_LINEs; e.g., MULTI_LINE JavX SE Version 3.0 - README File - September 2009 Release Notes Sage ProvideX 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com *** NOTES *** The JavX SE thin-client

More information

Section 2 - New Functionality:

Section 2 - New Functionality: JavX Version 2.2 - README File - March 2005 Best Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com -------------------------------------------------------------------------------

More information

PERFORMANCE This version of JavX focuses on improving the performance of list text controls.

PERFORMANCE This version of JavX focuses on improving the performance of list text controls. -------------------------------------------------------------------------------- JavX Version 2.0 - README File - May 2004 Best Software Canada Ltd. --------------------------------------------------------------------------------

More information

ProvideX. NOMADS Enhancements

ProvideX. NOMADS Enhancements ProvideX VERSION 8.0 NOMADS Enhancements Introduction 3 Panel Designer Enhancements 5 Properties Window 7 New Format Definition for Grids/List Boxes 12 Bulk Edit Utility 14 Drag and Drop Utility 16 Dependency

More information

Client Server Technologies

Client Server Technologies Client Server Technologies Presented by: Gord Davey Copyright 2005 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced, or transmitted in any form or by any means,

More information

ProvideX V6 Features & Enhancements

ProvideX V6 Features & Enhancements ProvideX V6 Features & Enhancements Presented by: Mike King What s new this release? Overview Core Language Visual Enhancements Improved Graphical Controls File System Database Interfaces Thin Client Services

More information

ProvideX On Handhelds

ProvideX On Handhelds ProvideX On Handhelds Presented by: Jarett Smith Presentation Overview Landscape of Mobile Computing Wireless Connections to Internet Challenges of Mobile Computing Why We Chose Java 2 Micro Edition Java

More information

PDF Printing & Print Preview

PDF Printing & Print Preview PDF Printing & Print Preview Presented by: Gord Davey Presentation Overview PDF Printing Syntax, Options, Usage Customizable Form Handling Customizable File Selection Dialogue Print Preview Capabilities

More information

NOMADS Enhancements v7.50 & v8.00. Presented by: Yvonne Sampson

NOMADS Enhancements v7.50 & v8.00. Presented by: Yvonne Sampson NOMADS Enhancements v7.50 & v8.00 Presented by: Yvonne Sampson Presentation Outline V7.50 & v8.00 Enhancements Preserve Folder Controls File Maintenance Objects Embedded Panels Enhancements Library Default

More information

ProvideX. NOMADS Smart Lists. Introduction. Defining Smart Lists. Formatting Smart Lists. Using Smart Lists Outside of NOMADS. Creating a Smart File

ProvideX. NOMADS Smart Lists. Introduction. Defining Smart Lists. Formatting Smart Lists. Using Smart Lists Outside of NOMADS. Creating a Smart File ProvideX Version 5.10 NOMADS Smart Lists Introduction Defining Smart Lists Formatting Smart Lists Using Smart Lists Outside of NOMADS Creating a Smart File ProvideX is a trademark of Best Software Canada

More information

Client-Server Reference

Client-Server Reference ProvideXVERSION 8.20 Client-Server Reference WindX, JavX, Application Server, AutoUpdater Contents iii Preface v Introduction 9 Choosing the Right Solution 11 Client-Server Functionality 17 WindX - Windows

More information

ProvideX. JavX. Java-Based Thin Client

ProvideX. JavX. Java-Based Thin Client ProvideX JavX Introduction Prerequisites and Background Information Downloading and Installing JavX Launching JavX Programming with JavX Thin-Client Functionality in ProvideX JavX vs WindX Spawning Multiple

More information

NOMADS Graphical Application Development Toolset

NOMADS Graphical Application Development Toolset ProvideXVERSION 8.20 NOMADS Graphical Application Development Toolset Contents 3 Preface 5 Getting Started 9 Panel Designer 33 Panel Controls 85 Program Interfaces 159 Dictionary-Based Development 199

More information

5 - Implemented a simple data compression algorithm for use within the Client/Server environment to reduce data transmission requirements.

5 - Implemented a simple data compression algorithm for use within the Client/Server environment to reduce data transmission requirements. - README FILE - ProvideX ODBC Driver Versions 4.10 & 4.00 June 2006 Sage Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com *** NOTES *** Version

More information

DEC HEX ACTION EXTRA DESCRIPTION

DEC HEX ACTION EXTRA DESCRIPTION PHRAGSOFT 128 X 64 PIXEL LCD DISPLAY DRIVER The display driver uses the equivalent of standard BBC Microcomputer VDU codes, however, because the display is monochrome, with a fixed resolution, there are

More information

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017

ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3. Created: 2/10/2017 ENGINEERING DATA HUB VISUAL DESIGN SPECIFICATIONS VERSION 3 Created: 2/10/2017 Table of Contents ENGINEERING DATA HUB... 1 DESKTOP VIEW... 3 HEADER... 4 Logo... 5 Main Title... 6 User Menu... 7 Global

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

NOMADS Graphical Application Development Toolset

NOMADS Graphical Application Development Toolset ProvideXVERSION 8.30 NOMADS Graphical Application Development Toolset Contents 3 Preface 5 1. Getting Started 9 2. Panel Designer 33 3. Creating Panel Controls 87 4. Program Interaction 161 5. Dictionary-Based

More information

JavX. The ProvideX Java Based Thin Client. Release By Best Software Canada Ltd. Jan 2002 G.D. Page 1 of 27

JavX. The ProvideX Java Based Thin Client. Release By Best Software Canada Ltd. Jan 2002 G.D. Page 1 of 27 Release 1.01 The ProvideX Java Based Thin Client By Best Software Canada Ltd. Jan 2002 G.D. Page 1 of 27 Table of Contents 1) General 1. What is JavX? 2. Where to use JavX 3. JavX Licensing Requirements

More information

ProvideX NOMADS Reference ProvideX Ver. 4.20

ProvideX NOMADS Reference ProvideX Ver. 4.20 Welcome to the ProvideX NOMADS Reference ProvideX Ver. 4.20 Introduction: NOMADS is Sage Canada s acronym for the ProvideX Non-Procedural Object Module Application Development System which is bundled with

More information

5.7. Getting Started with Fusion

5.7. Getting Started with Fusion 5.7 Getting Started with Fusion Getting Started with Fusion Fusion 5.7 This publication may not be reproduced, in whole or in part, in any form or by any electronic, manual, or other method now known or

More information

USB Instruments EasyLogger for PS40M10 "Swordfish" Help

USB Instruments EasyLogger for PS40M10 Swordfish Help USB Instruments EasyLogger for PS40M10 "Swordfish" Help I EasyLogger for PS40M10 Help Table of Contents Part I Introduction 3 1 Welcome to... EasyLogger for PS40M10 3 2 EasyLogger... Features 4 Part II

More information

Working with the Document Library

Working with the Document Library Working with the Document Library The HQ Document Library The Document Library is a vital part of the complete document management system in HQ. The fields created using the Document Library may be accessible

More information

Javelin Workbench Tutorial. Version 3.0 September, 2009

Javelin Workbench Tutorial. Version 3.0 September, 2009 Javelin Workbench Tutorial Version 3.0 September, 2009 OVERVIEW The Javelin Workbench Beginner Tutorial walks you through the steps of building online feedback forms for the purposes of data collection.

More information

This document should only be used with the Apple Macintosh version of Splosh.

This document should only be used with the Apple Macintosh version of Splosh. Splosh 1 Introduction Splosh is an easy to use art package that runs under both Microsoft Windows and the Macintosh Mac OS Classic or Mac OS X operating systems. It should however be noted that the Apple

More information

ViewONE User Manual !"##$$$

ViewONE User Manual !##$$$ ViewONE User Manual!"##$$$ Contents Introduction 3 Features 4 The User interface 5 Toolbars 6 Menus 19 The Keyboard 29 ViewONE is a Java applet that extends your web browser so that you can view, zoom,

More information

10Tec igrid ActiveX 6.x What's New in the Latest Builds

10Tec igrid ActiveX 6.x What's New in the Latest Builds What's New in igrid ActiveX 6.x - 1-2017-Feb-06 10Tec igrid ActiveX 6.x What's New in the Latest Builds Keywords used to classify changes: [New] a totally new feature; [Change] a change in a member functionality

More information

Creating a Website with Publisher 2016

Creating a Website with Publisher 2016 Creating a Website with Publisher 2016 Getting Started University Information Technology Services Learning Technologies, Training & Audiovisual Outreach Copyright 2017 KSU Division of University Information

More information

Chapter 3 Syntax, Errors, and Debugging. Fundamentals of Java

Chapter 3 Syntax, Errors, and Debugging. Fundamentals of Java Chapter 3 Syntax, Errors, and Debugging Objectives Construct and use numeric and string literals. Name and use variables and constants. Create arithmetic expressions. Understand the precedence of different

More information

EXPORTING ASSETS. Lesson overview

EXPORTING ASSETS. Lesson overview 15 EXPORTING ASSETS Lesson overview In this lesson, you ll learn how to do the following: Create pixel-perfect drawings. Use the Export For Screens command. Work with the Asset Export panel. Generate,

More information

Client-Server Reference

Client-Server Reference ProvideXVersion 9.10 Client-Server Reference Thin-Client and Hosting Facilities Contents iii Preface v Introduction 9 Client-Server Functionality 23 WindX - Windows Thin-Client 41 JavX - Java-Based Thin-Client

More information

How to create a prototype

How to create a prototype Adobe Fireworks Guide How to create a prototype In this guide, you learn how to use Fireworks to combine a design comp and a wireframe to create an interactive prototype for a widget. A prototype is a

More information

Secure Transfer Site (STS) User Manual

Secure Transfer Site (STS) User Manual Secure Transfer Site (STS) User Manual (Revised 3/1/12) Table of Contents Basic System Display Information... 3 Command Buttons with Text... 3 Data Entry Boxes Required / Enabled... 3 Connecting to the

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Contents Introduction... 1 What you will learn in this tutorial... 2 Lesson 1: Create First Form Using Wizard... 3 Lesson 2: Design the Second Form... 9 Add Components

More information

Creating Interactive PDF Forms

Creating Interactive PDF Forms Creating Interactive PDF Forms Using Adobe Acrobat X Pro for the Mac University Information Technology Services Training, Outreach, Learning Technologies and Video Production Copyright 2012 KSU Department

More information

ECDL Module 6 REFERENCE MANUAL

ECDL Module 6 REFERENCE MANUAL ECDL Module 6 REFERENCE MANUAL Presentation Microsoft PowerPoint XP Edition for ECDL Syllabus Four PAGE 2 - ECDL MODULE 6 (USING POWERPOINT XP) - MANUAL 6.1 GETTING STARTED... 4 6.1.1 FIRST STEPS WITH

More information

P3e REPORT WRITER CREATING A BLANK REPORT

P3e REPORT WRITER CREATING A BLANK REPORT P3e REPORT WRITER CREATING A BLANK REPORT 1. On the Reports window, select a report, then click Copy. 2. Click Paste. 3. Click Modify. 4. Click the New Report icon. The report will look like the following

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

DbSchema Forms and Reports Tutorial

DbSchema Forms and Reports Tutorial DbSchema Forms and Reports Tutorial Introduction One of the DbSchema modules is the Forms and Reports designer. The designer allows building of master-details reports as well as small applications for

More information

Table Basics. The structure of an table

Table Basics. The structure of an table TABLE -FRAMESET Table Basics A table is a grid of rows and columns that intersect to form cells. Two different types of cells exist: Table cell that contains data, is created with the A cell that

More information

OCTAVO An Object Oriented GUI Framework

OCTAVO An Object Oriented GUI Framework OCTAVO An Object Oriented GUI Framework Federico de Ceballos Universidad de Cantabria federico.ceballos@unican.es November, 2004 Abstract This paper presents a framework for building Window applications

More information

How to Create Happy End-Users

How to Create Happy End-Users How to Create Happy End-Users Presented by: Jane Raymond Presentation Outline Widgets SpellCheck AutoComplete Query Enhancements Listbox & Grid Enhancements And More For the Developer Widgets Create different

More information

Widgets. Overview. Widget. Widgets Widget toolkits Lightweight vs. heavyweight widgets Swing Widget Demo

Widgets. Overview. Widget. Widgets Widget toolkits Lightweight vs. heavyweight widgets Swing Widget Demo Widgets Overview Widgets Widget toolkits Lightweight vs. heavyweight widgets Swing Widget Demo Widget Widget is a generic name for parts of an interface that have their own behavior: buttons, progress

More information

Portrait Editor. to Portrait Flow

Portrait Editor. to Portrait Flow Portrait Editor to Portrait Flow Portrait Editor is a Walsworth program that allows you to view and edit your portrait images, names and grades based on the photo DVD supplied by your photographer. The

More information

SSL VPN INSTALLATION GUIDE

SSL VPN INSTALLATION GUIDE SSL VPN INSTALLATION GUIDE Sonicwall VPN Client Download & Installation Guide For Windows Machines : 1) Open Browser and Browse the following URL to download the client. https://103.237.170.61/cgi-bin/welcome/virtualoffice

More information

LAF CSS tags. These tags can be used in the LAF CSS file

LAF CSS tags. These tags can be used in the LAF CSS file LAF CSS tags These tags can be used in the LAF CSS file Content Introduction...3 Tags used to draw on the canvas...6 Tags for the table-block title...9 Tags for the table-block header...11 Tags for the

More information

COBOL FormPrint Windows Form Printing for COBOL Version 4.0 User Guide

COBOL FormPrint Windows Form Printing for COBOL Version 4.0 User Guide COBOL FormPrint Windows Form Printing for COBOL Version 4.0 User Guide Flexus Voice: 610-588-9400 P.O. Box 640 Fax: 610-588-9475 Bangor PA 18013-0640 E-Mail: info@flexus.com U.S.A. WWW: http://www.flexus.com

More information

KaleidaGraph Quick Start Guide

KaleidaGraph Quick Start Guide KaleidaGraph Quick Start Guide This document is a hands-on guide that walks you through the use of KaleidaGraph. You will probably want to print this guide and then start your exploration of the product.

More information

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks

Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Unit 21 - Creating a Navigation Bar in Macromedia Fireworks Items needed to complete the Navigation Bar: Unit 21 - House Style Unit 21 - Graphics Sketch Diagrams Document ------------------------------------------------------------------------------------------------

More information

Client-Side Web Technologies. CSS Part II

Client-Side Web Technologies. CSS Part II Client-Side Web Technologies CSS Part II Topics Box model and related properties Visual formatting model and related properties The CSS Box Model Describes the rectangular boxes generated for elements

More information

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd Elixir Ad-hoc Report Release 4.0.0 Elixir Technology Pte Ltd Elixir Ad-hoc Report: Release 4.0.0 Elixir Technology Pte Ltd Published 2015 Copyright 2015 Elixir Technology Pte Ltd All rights reserved. Java

More information

Forms Desktop for Windows Version 4 Manual

Forms Desktop for Windows Version 4 Manual Forms Desktop for Windows Version 4 Manual Revision Date 12/05/2007 HanDBase is a Registered Trademark of DDH Software, Inc. All information contained in this manual and all software applications mentioned

More information

Desktop Studio: Charts

Desktop Studio: Charts Desktop Studio: Charts Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Working with Charts i Copyright 2011 Intellicus Technologies This document

More information

ProvideX - Beta Release Version April 1998

ProvideX - Beta Release Version April 1998 Formatted list boxes: ProvideX - Beta Release Version 4.02 - April 1998 List_boxes can now contain format information which is used to describe columnar data and their respective formatting rules. In addition,

More information

QUICK START GUIDE - PROJECT RESOURCES. Last Updated: 10/15/2012

QUICK START GUIDE - PROJECT RESOURCES. Last Updated: 10/15/2012 QUICK START GUIDE - PROJECT RESOURCES Last Updated: 10/15/2012 Table of Contents Introduction... 3 Getting started... 4 Logging into Eclipse... 4 Setting your user preferences... 6 Online help and the

More information

Tree and Data Grid for Micro Charts User Guide

Tree and Data Grid for Micro Charts User Guide COMPONENTS FOR XCELSIUS Tree and Data Grid for Micro Charts User Guide Version 1.1 Inovista Copyright 2009 All Rights Reserved Page 1 TABLE OF CONTENTS Components for Xcelsius... 1 Introduction... 4 Data

More information

NetAdvantage for ASP.NET Release Notes

NetAdvantage for ASP.NET Release Notes NetAdvantage for ASP.NET 2011.1 Release Notes Accelerate your application development with ASP.NET AJAX controls built on the Aikido Framework to be the fastest, lightest and most complete toolset for

More information

BHM Website Teacher User Guide

BHM Website Teacher User Guide BHM Website Teacher User Guide How to Login 1. Go to HUhttp://bhmschools.org/userUH 2. Enter your username and password and click Log in How to Change Your Password 1. Go to My Account in your Nav bar

More information

ChemSense Studio Client Version 3.0.7

ChemSense Studio Client Version 3.0.7 Quick Start Guide: ChemSense Studio Client Version 3.0.7 January 5, 2005 Comments/Questions/Bug Report? E-mail: chemsense-contact@ctl.sri.com Background The ChemSense Studio Client software supports the

More information

XLCubed Version 9 QuickStart

XLCubed Version 9 QuickStart XLCubed Version 9 QuickStart 1 P a g e Contents Welcome... 3 Connecting to your data... 3 XLCubed for Pivot Table users... 3 Adding a Grid, and the Report Designer... 5 Working with Grids... 7 Grid Components...

More information

Object-Oriented Programming

Object-Oriented Programming iuliana@cs.ubbcluj.ro Babes-Bolyai University 2018 1 / 33 Overview 1 2 3 4 5 6 2 / 33 I Qt is a cross-platform application and UI framework in C++. Using Qt, one can write GUI applications once and deploy

More information

CSV Roll Documentation

CSV Roll Documentation CSV Roll Documentation Version 1.1 March 2015 INTRODUCTION The CSV Roll is designed to display the contents of a Microsoft Excel worksheet in a Breeze playlist. The Excel worksheet must be exported as

More information

Dolphin PartMaster Wire EDM

Dolphin PartMaster Wire EDM Dolphin PartMaster Wire EDM Copyright 2000-2017 Dolphin CADCAM Systems Ltd. This document is copyrighted and all rights are reserved. This document may not, in whole or in part, be copied or reproduced

More information

Ensuring your computer has Java

Ensuring your computer has Java Ensuring your computer has Java TournamentSR and all of its support programs require the Java Standard Runtime Environment (JRE). This is a free program that can be downloaded and installed from the Internet.

More information

Graphical User Interface Canvas Frame Event structure Platform-free GUI operations Operator << Operator >> Operator = Operator ~ Operator + Operator

Graphical User Interface Canvas Frame Event structure Platform-free GUI operations Operator << Operator >> Operator = Operator ~ Operator + Operator Graphical User Interface Canvas Frame Event structure Platform-free GUI operations Operator > Operator = Operator ~ Operator + Operator - Operator [] Operator size Operator $ Operator? Operator!

More information

NOMADS Introduction File Formats Outline Screen Library

NOMADS Introduction File Formats Outline Screen Library ProvideXVersion 8.30 NOMADS File Layouts Introduction 3 File Formats Outline 4 Screen Library 5 Data Dictionary 114 System Defaults Record Layout 119 DATA CLASS Record Layout 120 User Defined Colours Layout

More information

DO NOT update the utilities and toolkits of a Version 4, 5 or 6 system with the utilities and toolkits of a Version 7 release.

DO NOT update the utilities and toolkits of a Version 4, 5 or 6 system with the utilities and toolkits of a Version 7 release. ProvideX Version 7.10 - README File - July 2006 Release Notes for Version 7.10 Minor Release Sage Software Canada Ltd 8920 Woodbine Avenue Suite 400 Markham, Ontario L3R 9W9 Tel. 905-470-1025 www.pvx.com

More information

JavaFX Basics. Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All rights reserved. 1.

JavaFX Basics. Liang, Introduction to Java Programming, Tenth Edition, (c) 2015 Pearson Education, Inc. All rights reserved. 1. JavaFX Basics rights reserved. 1 Motivations JavaFX is a new framework for developing Java GUI programs. The JavaFX API is an excellent example of how the object-oriented principle is applied. This chapter

More information

Access: Printing Data with Reports

Access: Printing Data with Reports Access: Printing Data with Reports Reports are a means for displaying and summarizing data from tables or queries. While forms are primarily for on-screen viewing, reports are for presenting your data

More information

SPARK. User Manual Ver ITLAQ Technologies

SPARK. User Manual Ver ITLAQ Technologies SPARK Forms Builder for Office 365 User Manual Ver. 3.5.50.102 0 ITLAQ Technologies www.itlaq.com Table of Contents 1 The Form Designer Workspace... 3 1.1 Form Toolbox... 3 1.1.1 Hiding/ Unhiding/ Minimizing

More information

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide

ArtOfTest Inc. Automation Design Canvas 2.0 Beta Quick-Start Guide Automation Design Canvas 2.0 Beta Quick-Start Guide Contents Creating and Running Your First Test... 3 Adding Quick Verification Steps... 10 Creating Advanced Test Verifications... 13 Creating a Data Driven

More information

What's New in Cut2D Desktop 8.5

What's New in Cut2D Desktop 8.5 What's New in Cut2D Desktop 8.5 A quick start guide for Cut2D Desktop upgraders Copyright Vectric Ltd. Document V.1.0 Contents CONTENTS... 2 OVERVIEW... 3 ENHANCED & EXTENDED DRAWING TOOLS... 4 ENHANCED

More information

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved

VisualPST 2.4. Visual object report editor for PowerSchool. Copyright Park Bench Software, LLC All Rights Reserved VisualPST 2.4 Visual object report editor for PowerSchool Copyright 2004-2015 Park Bench Software, LLC All Rights Reserved www.parkbenchsoftware.com This software is not free - if you use it, you must

More information

InfoPower Support - Complete Integration with the superb InfoPower multi-record controls such as InfoPower s vertical and horizontal grid controls.

InfoPower Support - Complete Integration with the superb InfoPower multi-record controls such as InfoPower s vertical and horizontal grid controls. 1 s t C l a s s S t u d i o B e r l i n - P a g e 1 Information on 1stClass Studio 10.2 Tokyo Woll2Woll Software March 24th, 2017 http://www.woll2woll.com 1stClass Studio 10.2 Tokyo 1stClass provides the

More information

Simply Personnel Screen Designer

Simply Personnel Screen Designer Simply Personnel Screen Designer -Training Workbook- Screen Designer Page 1 Build 12.8 Introduction to Simply Personnel Screen Designer This document provides step-by-step guide for employee users to give

More information

PART TWO Designing The Energy Drink Can Label

PART TWO Designing The Energy Drink Can Label PART TWO Designing The Energy Drink Can Label Part two of the design process involves the creating the label for the energy drink can with vector graphic techniques using Adobe Illustrator. While the creation

More information

Installatiion Page 3

Installatiion Page 3 Operating with -------------------------------------- Page 2 Downloading -------------------------------------- Page 3 Installatiion -------------------------------------- Page 3 Protection

More information

Sri Vidya College of Engineering & Technology

Sri Vidya College of Engineering & Technology UNIT-V TWO MARKS QUESTION & ANSWER 1. What is the difference between the Font and FontMetrics class? Font class is used to set or retrieve the screen fonts.the Font class maps the characters of the language

More information

WebConnect Through the Internet

WebConnect Through the Internet WebConnect Through the Internet WebConnect Table of Contents i Chapter 1. Table of Contents Page INTRODUCTION...1 Chapter 2. ACCESSING DataLink SM...2 Chapter 3. FEATURES OF WebConnect...10 File Menu Options...10

More information

Forms iq Designer Training

Forms iq Designer Training Forms iq Designer Training Copyright 2008 Feith Systems and Software, Inc. All Rights Reserved. No part of this publication may be reproduced, transmitted, stored in a retrieval system, or translated into

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1

Introduction. Table Basics. Access 2010 Working with Tables. Video: Working with Tables in Access To Open an Existing Table: Page 1 Access 2010 Working with Tables Introduction Page 1 While there are four types of database objects in Access 2010, tables are arguably the most important. Even when you're using forms, queries, and reports,

More information

Overview of Adobe Fireworks

Overview of Adobe Fireworks Adobe Fireworks Overview of Adobe Fireworks In this guide, you ll learn how to do the following: Work with the Adobe Fireworks workspace: tools, Document windows, menus, and panels. Customize the workspace.

More information

Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand

Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand Adobe Photoshop Sh S.K. Sublania and Sh. Naresh Chand Photoshop is the software for image processing. With this you can manipulate your pictures, either scanned or otherwise inserted to a great extant.

More information

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout

Fusion. CBR Fusion MLS Level 1 Core Functions. Class Handout Fusion 1 CBR Fusion MLS Level 1 Core Functions Class Handout GETTING STARTED IN FUSION Logging On and Off To log on to Fusion MLS: 1. Type your user name in the User ID box. 2. Type your password in the

More information

Lecture (01) Getting started. Dr. Ahmed ElShafee

Lecture (01) Getting started. Dr. Ahmed ElShafee Lecture (01) Getting started Dr. Ahmed ElShafee 1 Dr. Ahmed ElShafee, fundamentals of Programming I, Agenda Download and Installation Java How things work NetBeans Comments Structure of the program Writing

More information

ViewONE User Manual. Genazim. The Friedberg Geniza Project. Daeja Image Systems. All Rights Reserved.

ViewONE User Manual. Genazim. The Friedberg Geniza Project. Daeja Image Systems. All Rights Reserved. Genazim The Friedberg Geniza Project ViewONE User Manual Daeja Image Systems. All Rights Reserved. Email: info@daeja.com Web site: http://www.daeja.com 1 Contents Introduction 3 The User interface 3 Toolbars

More information

5Using Drawings, Pictures. and Graphs. Drawing in ReportSmith. Chapter

5Using Drawings, Pictures. and Graphs. Drawing in ReportSmith. Chapter 5Chapter 5Using Drawings, Pictures Chapter and Graphs Besides system and custom report styles, ReportSmith offers you several means of achieving variety and impact in your reports, by: Drawing objects

More information

Kaviza VDI-in-a-box User Access Device Configuration Guide

Kaviza VDI-in-a-box User Access Device Configuration Guide Kaviza VDI-in-a-box User Access Device Configuration Guide kaviza Inc. (www.kaviza.com) Table of Contents 1 Overview... 4 2 Supported end-points... 5 3 How to configure Kaviza Client and connect to provisioned

More information

ProvideX The next level in business application development.

ProvideX The next level in business application development. ProvideX The next level in business application development. ProvideX from Sage Software is more than the perfect blend of powerful, intuitive, and versatile software tools. In reality, it provides a one-stop

More information

PilotEdit User Manual. Author: Date: Version:

PilotEdit User Manual. Author: Date: Version: PilotEdit User Manual Author: support@pilotedit.com Date: 2018-02-28 Version: 11.3.0 URL: http://www.pilotedit.com Table of Contents 1. Introduction... 6 1.1. What is PilotEdit?... 6 1.2. PilotEdit GUI...

More information

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd

Elixir Ad-hoc Report. Release Elixir Technology Pte Ltd Elixir Ad-hoc Report Release 3.5.0 Elixir Technology Pte Ltd Elixir Ad-hoc Report: Release 3.5.0 Elixir Technology Pte Ltd Published 2014 Copyright 2014 Elixir Technology Pte Ltd All rights reserved. Java

More information

Welcome to IEP Assistant Pro

Welcome to IEP Assistant Pro Welcome to IEP Assistant Pro www.psfe.com IEP Assistant Pro is design to assist you in creating an IEP in any program used to create IEPs. It is a companion application. Open IEP Assistant Pro and then

More information

SFC Visualization (V8.0 SP1) SIMATIC. Process Control System PCS 7 SFC Visualization (V8.0 SP1) What's new in SFV? 1. SFC Visualization (SFV)

SFC Visualization (V8.0 SP1) SIMATIC. Process Control System PCS 7 SFC Visualization (V8.0 SP1) What's new in SFV? 1. SFC Visualization (SFV) What's new in SFV? 1 SFC Visualization (SFV) 2 SIMATIC Process Control System PCS 7 Programming and Operating Manual Basic SFC settings 3 Configuration 4 Operating and monitoring SFCs 5 Appendix 6 12/2012

More information

v5.1 NOMADS Enhancements

v5.1 NOMADS Enhancements Partners in Success v5.1 NOMADS Enhancements Presented by: Yvonne Sampson Copyright 2002 Best Software Canada Ltd. All rights reserved. No part of this publication may be reproduced, or transmitted in

More information

PowerPoint 2010 Foundation. PowerPoint 2010 Foundation SAMPLE

PowerPoint 2010 Foundation. PowerPoint 2010 Foundation SAMPLE PowerPoint 2010 Foundation PowerPoint 2010 Foundation PowerPoint 2010 Foundation Page 2 2010 Cheltenham Courseware Pty. Ltd. All trademarks acknowledged. E&OE. No part of this document may be copied without

More information

Getting Started With the Cisco PAM Desktop Software

Getting Started With the Cisco PAM Desktop Software CHAPTER 3 Getting Started With the Cisco PAM Desktop Software This chapter describes how to install the Cisco PAM desktop client software, log on to Cisco PAM, and begin configuring access control features

More information

hdalbum User Designer Guide Collect Create Share Designer V 1.2

hdalbum User Designer Guide Collect Create Share Designer V 1.2 hdalbum User Designer Guide 2017 Collect Create Share Designer V 1.2 Table of Contents Contents Welcome to the hdalbum Designer... 2 Features... 2 System Requirements... 3 Supported File Types... 3 Installing

More information

User Manual. Introduction. About this release. For existing MacroScope users

User Manual. Introduction. About this release. For existing MacroScope users Software version: 0.1.1.5 Document version: 0.1.1.3 User Manual Introduction MacroscopeJ is a desktop application used for examining crystallization experiment images and data. It is intended as an upgrade/replacement

More information