presented by: katie milanowski. 2 formed in 1982 bruce barrington (hbo & company) apply rad...

31
Presented by: Katie Milanowski

Upload: stephanie-eaton

Post on 27-Dec-2015

221 views

Category:

Documents


0 download

TRANSCRIPT

Page 1: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

Presented by:Katie Milanowski

Page 2: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

2

Formed in 1982 Bruce Barrington (HBO & Company) Apply RAD technology to IBM PC 1986: Clarion Version 1.0, Atlanta, GA 1988: Clarion Professional Developer

◦ Version 2.0◦ Included Designer

Page 3: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

3

1990◦ licensed compiler technology◦ State-of-the-art

1992: merger

Page 4: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

4

Founded May 2000 Acquired Clarion from TopSpeed Latest technology Stay ahead of technology curve

Page 5: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

5

Fourth generation language Data-centric Advanced RAD tool Includes:

◦ C++ compiler◦ Modula-2 compiler

Page 6: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

6

Code generation Reusable metadata Consistent coding standards

◦ Adopt styles quickly◦ Learn quickly

Page 7: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

7

Define application Predefined templates User-made templates

Page 8: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

8

Helps manage files/processes Includes:

◦ Source◦ Executables◦ Resources◦ Editing◦ Compiling◦ Linking

Highly configurable

Page 9: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

9

Basic Windows design Common commands Pick menu

◦ Recent files◦ Arranged by type◦ Open or remove from list

Project menu◦ Commands◦ Project only commands

Page 10: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

10

Information on:◦ How data is stored/accessed◦ How data is displayed/processed

Important step in development Organize data

Page 11: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

11

Information in central place Consistent look/feel Fields/relationships/validity defined once Default data handling

Page 12: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

12

File names and descriptions Field balloon help File key and index definitions Field status bar messages File relationship definitions Field validation rules Database connection information Field entry pictures and formatting Relational integrity rules Default screen and report controls for each field Field data types and descriptions

Page 13: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

13

Tool used for development Creates procedures Procedures accomplish tasks “Writes” source for application

Page 14: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

14

Used in application generation Two types

◦ Legacy◦ Application Builder Class (ABC)

Page 15: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

15

Mix template language and clarion language statements

Source generated by options specified At the end of the road Problems with Legacy templates

◦ Lacks readability◦ Doesn’t always make complete sense◦ No visual development tools

Page 16: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

16

Introduced in Clarion 4 Recreate Legacy templates Contain core functionality of application Rely on class library for source code

◦ Contain commonly used code◦ Generic code◦ Must know methods in library

Page 17: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

17

“ToDo” procedures◦ Main procedure◦ Other procedures

Select templates Define procedure Add variables

Page 18: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

18

Template Type Description

Browse Browse fields in a page-loaded list box

External An external procedure

Form View/edit a record from a file

Frame Multiple document main menu

Process Sequential record processor

Report Generic reporting procedure

Source Source procedure

Splash Splash window

Viewer View an ASCII (text) file

Window Generic window handler

Page 19: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

19

A description of the procedure The procedure prototype The module containing the generated source

code Whether to export the procedure Whether to declare the procedure globally Parameters passed to the procedure Return values from the procedure INI file settings used by the procedure Files accessed by the procedure

Page 20: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

20

The window displayed by the procedure, including the size, shape, appearance and functionality

The report generated by the procedure Data items (fields and variables) used by the

procedure Custom source code embedded within the

procedure Formulas used by the procedure Template generated extensions

Page 21: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

21

Code added to generated source Embed points

◦ Where code is inserted◦ Most standard events◦ Developer created points

Allows for full customization Saves embedded code for future

generations Must understand template source

Page 22: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

22

Source in popup menu in application tree◦ Opens Embeditor◦ Embedded code in surrounding generated code◦ Text editor

Choose Embeds◦ Only embedded code◦ Sorted alphabetic/logical◦ Find embeds◦ Tools to copy/move embeds

Page 23: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

23 www.softvelocity.com

Page 24: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

24 www.softvelocity.com

Page 25: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

25

Easy to use Helps generate appropriate source code Provides essential tools for development Direct manipulation of window/controls

Page 26: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

26 www.softvelocity.com

Page 27: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

27

Reports built in Can use external reporting tools Visually develop Formatter helps create necessary code Report sub-structures

◦ Form◦ Header◦ Detail◦ Footer◦ Break

Page 28: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

28

GROUP('Ship to'),AT(3938,2375,3365,823),USE(?ShipTo),BOXED,TRN,#ORIG(?Group2)STRING(@s35),AT(4063,2604,2948,167),USE(GLOT:ShipName),#ORIG(GLOT:ShipName)STRING(@s45),AT(4063,2771,3125,167),USE(GLOT:ShipAddress),#ORIG(GLOT:ShipAddress)STRING(@s40),AT(4063,2927,3125,167),USE(GLOT:ShipCSZ),#ORIG(GLOT:ShipCSZ)ENDLINE,AT(83,3302,7229,0),USE(?Line2),COLOR(COLOR:Black),LINEWIDTH(2),#ORIG(?Line2)ENDdetail DETAIL,AT(,,,240),USE(?detail)STRING('Lines'),AT(21,21),USE(?ILines),TRN,#ORIG(?String43)STRING('Line'),AT(73,31),USE(?ILine),TRN,#ORIG(?String42)STRING(@n7),AT(5635,52,635,167),USE(DTL:QtyOrdered),RIGHT(100),#ORIG(DTL:QtyOrdered)STRING(@s10),AT(115,42,896,167),USE(PRO:ProductSKU),#ORIG(PRO:ProductSKU)STRING(@s35),AT(1083,52,2677,167),USE(PRO:Description),#ORIG(PRO:Description)STRING(@n$10.2B),AT(5500,10,135,52),USE(DTL:Discount),TRN,HIDE,#ORIG(DTL:Discount)CHECK,AT(3969,42,250,177),USE(DTL:BackOrdered),#ORIG(DTL:BackOrdered)STRING(@n$10.2),AT(4552,52,771,167),USE(PRO:Price),DECIMAL(250),#ORIG(PRO:Price)STRING(@N*10.2),AT(6396,52,865,167),USE(ExtendPrice),RIGHT,#ORIG(?String16)STRING(@n$10.2B),AT(5635,10,63,52),USE(DTL:TPd,,?DTL:TPd:2),TRN,HIDE,#ORIG(DTL:TPd)STRING(@n$14.2B),AT(5406,21,83,52),USE(DTL:TotalCost),TRN,HIDE,#ORIG(DTL:TotalCost)END

Code snippet from www.softvelocity.com

Page 29: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

29 www.softvelocity.com

Page 30: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

30

Powerful development tool Require less storage Saves time Easy to use, easy to learn

Page 31: Presented by: Katie Milanowski. 2  Formed in 1982  Bruce Barrington (HBO & Company)  Apply RAD technology to IBM PC  1986: Clarion Version 1.0, Atlanta,

31

[1] Harms, D. (1999, March 08) ABC or Legacy: Which Templates Should You Choose? Clarion Magazine. Retrieved October 30, 2007, from http://www.clarionmag.com/cmag/v1/v1n1abcorlegacy.html

[2] SoftVelocity. (2003). Clarion 6. Retrieved October 9, 2007 from http://softvelocity.com/

  [3] TopSpeed, (1998) Clarion 5: User’s Guide. Pompano

Beach, Fl: TopSpeed Corporation.

[4] TopSpeed Corporation. Why: A layman’s guide to the merits of Clarion for Windows. Retrieved October 30, 2007, from www.clariondeveloper.com/why.pdf