uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Printers, ExtCtrls, StdCtrls;

Size: px
Start display at page:

Download "uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Printers, ExtCtrls, StdCtrls;"

Transcription

1 Delphi Grundkurs Seite 69 Beispiel 19 Quadrate Problem: Programm P19 (\Grafikbeispiele) Eingabe: Anzahl der Quadrate (= N) mit InputBox (0,0) d d a Verschiebungsteil d := a div N; Formulardesign: a (a,a) Listing: unit P19_U; // Quadrate zeichnen interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, Printers, ExtCtrls, StdCtrls; type

2 Delphi Grundkurs Seite 70 TForm1 = class(tform) Image1 : TImage; Button1: TButton; // Eingabe Button2: TButton; // Ausführen Button3: TButton; // Drucken Button4: TButton; // Beenden Bevel1 : TBevel; procedure FormActivate(Sender: TObject); procedure Button1Click(Sender: TObject); procedure Button2Click(Sender: TObject); procedure Button3Click(Sender: TObject); procedure Button4Click(Sender: TObject); private { Private-Deklarationen } public { Public-Deklarationen } var Form1: TForm1; implementation {$R *.DFM} var a, // Quadratseite N, // Anzahl der Quadrate d : Integer; // d = a div N procedure ImClear; // Löscht das Image with Form1.Image1 do Canvas.Pen.Color := clblack; Canvas.Brush.Color := clwhite; Canvas.Brush.Style := bssolid; Canvas.Rectangle(0,0,a,a); Canvas.Brush.Style := bsclear; procedure TForm1.FormActivate(Sender: TObject); // Image initialisieren with Image1 do if Width > Height then Height := Width; a := Width; end else Width := Height; a := Height;

3 Delphi Grundkurs Seite 71 ImClear; procedure TForm1.Button1Click(Sender: TObject); // Anzahl N der Quadrate eingeben var S : String; Code : Integer; ImClear; S := InputBox('Eingabe', 'Anzahl: ', '10'); Val(S,N,Code); if (Code <> 0) or (N < 0) or (Frac(N) <> 0) then ShowMessage('Falsche Eingabe!'); Exit; procedure TForm1.Button2Click(Sender: TObject); // Quadrate zeichnen var I : Integer; d := Round(a div N); for I := 1 to N-1 do with Image1.Canvas do MoveTo(d*I,0); LineTo(a,d*I); LineTo(a-d*I,a); LineTo(0,a-d*I); LineTo(d*I,0); procedure TForm1.Button3Click(Sender: TObject); // Formular ausdrucken PrintScale := poproportional; Print; procedure TForm1.Button4Click(Sender: TObject); // Programm beenden Application.Terminate; end.

4 Delphi Grundkurs Seite 72 Beispiel 20 Farbdemo Problem: Programm P20 (\Grafikbeispiele) 1. Kreissektor zeichnen (in Formular) (X1,Y1) (X4,Y4) Winkel b a (M.X,M.Y) (X3,Y3) Radius (X2,Y2) M.X := Width div 2; X1 := M.X Radius; M.Y := Height div 2; Y1 := M.Y Radius; RMax :=Height div 2; X2 := M.X + Radius; a := Round(Radius*Cos(Winkel*PI/180)); Y2 := M.Y + Radius; b := Round(Radius*Sin(Winkel*PI/180)); X3 := M.X + Radius; Y3 := M.Y; X4 := M.X + a; Y4 := M.Y b; pie(x1,y1,x2,y2,x3,y3,x4,y4); Formulardesign: 2. Radius, Zentriwinkel, Rot, Grün, Blau über ScrollBars verändern.

5 Delphi Grundkurs Seite 73 Listing: unit P20_U; // Farbdemo interface uses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ExtCtrls; type TForm1 = class(tform) Label1 : TLabel; // Beschriftungen Label2 : TLabel; Label3 : TLabel; Label4 : TLabel; Label5 : TLabel; ScrollBar1: TScrollBar; // Radius verändern ScrollBar2: TScrollBar; // Zentriwinkel verändern ScrollBar3: TScrollBar; // Rotwert verändern ScrollBar4: TScrollBar; // Grünwert verändern ScrollBar5: TScrollBar; // Blauwert verändern Panel1 : TPanel; // Radis anzeigen Panel2 : TPanel; // Zentriwinkel anzeigen Panel3 : TPanel; // Rotwert anzeigen Panel4 : TPanel; // Grünwert anzeigen Panel5 : TPanel; // Blauwert anzeigen Button1 : TButton; // Beenden procedure FormActivate(Sender: TObject); procedure ScrollBar1Scroll(Sender: TObject; ScrollCode: TScrollCode; procedure ScrollBar2Scroll(Sender: TObject; ScrollCode: TScrollCode; procedure ScrollBar3Scroll(Sender: TObject; ScrollCode: TScrollCode; procedure ScrollBar4Scroll(Sender: TObject; ScrollCode: TScrollCode; procedure ScrollBar5Scroll(Sender: TObject; ScrollCode: TScrollCode; procedure Button1Click(Sender: TObject); private { Private declarations } public { Public declarations } var Form1: TForm1; implementation {$R *.DFM} var M : TPoint; // Kreismittelpunkt RMax : Integer; // maximaler Radius

6 Delphi Grundkurs Seite 74 Radius, // aktueller Kreisradius Winkel : Integer; // aktueller Zentriwinkel R, G, B : Byte; // Rot, Grün, Blau Farbe, // aktuelle Farbe FFarbe : TColor; // Farbe Formular procedure TForm1.FormActivate(Sender: TObject); // Initialisieren WindowState := wsmaximized; Form1.Scaled := True; if (Screen.Width<>800) then Form1.ScaleBy(Screen.Width, 800); M.X := Width div 2; M.Y := Height div 2; // ursprünglich div 3 RMax := Height div 2; // ursprünglich div 3 Scrollbar1.Max := RMax; Label1.Caption := 'Radius (0 - '+IntToStr(RMax)+')'; R := 0; G := 0; B := 0; Radius := RMax; Winkel := 360; procedure KreisSektor(var M : TPoint; Radius, Winkel : Integer; Farbe : TColor); // Kreissektor zeichnen var X1, Y1, X2, Y2, X3, Y3, X4, Y4 : Integer; X1 := M.X - Radius; Y1 := M.Y - Radius; X2 := M.X + Radius; Y2 := M.Y + Radius; X3 := M.X + Radius; Y3 := M.Y; X4 := M.X + Round(Radius*Cos(Winkel*Pi/180)); Y4 := M.Y - Round(Radius*Sin(Winkel*PI/180)); with Form1.Canvas do Pen.Color := Farbe; Brush.Color := Farbe; Brush.Style := bssolid; if Winkel > 0 then pie(x1, Y1, X2, Y2, X3, Y3, X4, Y4); procedure TForm1.ScrollBar1Scroll(Sender: TObject; ScrollCode: TScrollCode; // Kreisradius verändern FFarbe := Form1.Color; KreisSektor(M, RMax, 360, FFarbe); Radius := ScrollPos; Panel1.Caption := IntToStr(Radius);

7 Delphi Grundkurs Seite 75 procedure TForm1.ScrollBar2Scroll(Sender: TObject; ScrollCode: TScrollCode; // Zentriwinkel verändern FFarbe := Form1.Color; KreisSektor(M, RMax, 360, FFarbe); Winkel := ScrollPos; Panel2.Caption := IntToStr(Winkel); procedure TForm1.ScrollBar3Scroll(Sender: TObject; ScrollCode: TScrollCode; // Rotwert verändern R := ScrollPos; Panel3.Caption := IntToStr(R); Farbe := RGB(R, G, B); procedure TForm1.ScrollBar4Scroll(Sender: TObject; ScrollCode: TScrollCode; // Grünwert verändern G := ScrollPos; Panel4.Caption := IntToStr(G); Farbe := RGB(R, G, B); procedure TForm1.ScrollBar5Scroll(Sender: TObject; ScrollCode: TScrollCode; // Blauwert verändern B := ScrollPos; Panel5.Caption := IntToStr(B); Farbe := RGB(R, G, B); procedure TForm1.Button1Click(Sender: TObject); // Programm beenden Application.Terminate; end.

Introduction to the DLL for the USB Experiment Interface Board K8055

Introduction to the DLL for the USB Experiment Interface Board K8055 K8055D.DLL 1 Introduction to the DLL for the USB Experiment Interface Board K8055 The K8055 interface board has 5 digital input channels and 8 digital output channels. In addition, there are two analogue

More information

C:\My Documents\Delphi\Fagprove\LED_Server\COM_1.pas Printed at 17:14 on 17 Feb 2000 Page 1 of 2

C:\My Documents\Delphi\Fagprove\LED_Server\COM_1.pas Printed at 17:14 on 17 Feb 2000 Page 1 of 2 C:\My Documents\Delphi\Fagprove\LED_Server\COM_1.pas Printed at 17:14 on 17 Feb 2000 Page 1 of 2 unit COM_1; interface uses Classes, Windows, BuffSock; type TCOM1 = class(tthread) private { Private declarations

More information

Changing the Display Frequency During Scanning Within an ImageControls 3 Application

Changing the Display Frequency During Scanning Within an ImageControls 3 Application Changing the Display Frequency During Scanning Within an ImageControls 3 Date November 2008 Applies To Kofax ImageControls 2x, 3x Summary This application note contains example code for changing he display

More information

TMS Advanced Smooth Message Dialog

TMS Advanced Smooth Message Dialog TMS Advanced Smooth Message Dialog July 2009 Copyright 2009 by tmssoftware.com bvba Web: http://www.tmssoftware.com Email: info@tmssoftware.com 1 Index TAdvSmoothMessageDialog... 3 TAdvSmoothMessageDialog

More information

Tutorial: Creating a CLX Database Application

Tutorial: Creating a CLX Database Application Tutorial: Creating a CLX Database Application Borland Delphi 7 for Windows Borland Software Corporation 100 Enterprise Way, Scotts Valley, CA 95066-3249 www.borland.com COPYRIGHT 2001 2002 Borland Software

More information

Translating to Java. Translation. Input. Many Level Translations. read, get, input, ask, request. Requirements Design Algorithm Java Machine Language

Translating to Java. Translation. Input. Many Level Translations. read, get, input, ask, request. Requirements Design Algorithm Java Machine Language Translation Translating to Java Introduction to Computer Programming The job of a programmer is to translate a problem description into a computer language. You need to be able to convert a problem description

More information

SAPScript. A Standard Text is a like our normal documents. In Standard Text, you can create standard documents like letters, articles etc

SAPScript. A Standard Text is a like our normal documents. In Standard Text, you can create standard documents like letters, articles etc SAPScript There are three components in SAPScript 1. Standard Text 2. Layout Set 3. ABAP/4 program SAPScript is the Word processing tool of SAP It has high level of integration with all SAP modules STANDARD

More information

How to create buttons and navigation bars

How to create buttons and navigation bars How to create buttons and navigation bars Adobe Fireworks CS3 enables you to design the look and functionality of buttons, including links and rollover features. After you export these buttons from Fireworks,

More information

Using Internet Direct

Using Internet Direct Color profile: Generic CMYK printer profile ApDev / Building Kylix Applications / Jensen & Anderson / 2947-6 / CHAPTER 21 Using Internet Direct IN THIS CHAPTER: Which Comes First, the Client or the Server?

More information

Factoring Quadratic Expressions

Factoring Quadratic Expressions Factoring the trinomial ax 2 + bx + c when a = 1 A trinomial in the form x 2 + bx + c can be factored to equal (x + m)(x + n) when the product of m x n equals c and the sum of m + n equals b. (Note: the

More information

IP Office CTI Link DevLink Programmer's Guide

IP Office CTI Link DevLink Programmer's Guide IP Office CTI Link DevLink Programmer's Guide 40DHB0002UKAD Issue 8 (28 th October 2003) Page 2 - Contents Contents IP Office CTI Link... 1 Introduction... 3 Overview...3 IP Office CTI Link Lite...3 IP

More information

TTIWResponsiveList - TTIWDBResponsiveList

TTIWResponsiveList - TTIWDBResponsiveList September 2015 Copyright 2015 by tmssoftware.com bvba Web: http://www.tmssoftware.com Email : info@tmssoftware.com 1 Table of contents TTIWResponsiveList / TTIWDBResponsiveList availability... 3 TTIWResponsiveList

More information

The Delphi Open Tools API

The Delphi Open Tools API The Delphi Open Tools API Last Updated: 28 February 2016 Page 1 of 136 1. Forward Well I ve never written a book before so this may not be War and Peace on the Open Tools API that everyone wants but I

More information

Building Queries in Microsoft Access 2007

Building Queries in Microsoft Access 2007 Building Queries in Microsoft Access 2007 Description In this class we will explore the purpose, types and uses of Queries. Learn to design a query to retrieve specific data using criteria and operators.

More information

Beas Inventory location management. Version 23.10.2007

Beas Inventory location management. Version 23.10.2007 Beas Inventory location management Version 23.10.2007 1. INVENTORY LOCATION MANAGEMENT... 3 2. INTEGRATION... 4 2.1. INTEGRATION INTO SBO... 4 2.2. INTEGRATION INTO BE.AS... 4 3. ACTIVATION... 4 3.1. AUTOMATIC

More information

Component Writer s Guide

Component Writer s Guide Component Writer s Guide Borland Delphi 7 for Windows Borland Software Corporation 100 Enterprise Way, Scotts Valley, CA 95066-3249 www.borland.com Refer to the DEPLOY document located in the root directory

More information

OpenGL & Delphi. Max Kleiner. http://max.kleiner.com/download/openssl_opengl.pdf 1/22

OpenGL & Delphi. Max Kleiner. http://max.kleiner.com/download/openssl_opengl.pdf 1/22 OpenGL & Delphi Max Kleiner http://max.kleiner.com/download/openssl_opengl.pdf 1/22 OpenGL http://www.opengl.org Evolution of Graphics Assembler (demo pascalspeed.exe) 2D 3D Animation, Simulation (Terrain_delphi.exe)

More information

Tutorial 8: Quick Form Button

Tutorial 8: Quick Form Button Objectives: Your goal in this tutorial is to be able to: properly use NetStores Quick-Form feature in Dreamweaver customize the Quick Form order button create a form with various components: check boxes

More information

3.1 Solving Systems Using Tables and Graphs

3.1 Solving Systems Using Tables and Graphs Algebra 2 Chapter 3 3.1 Solve Systems Using Tables & Graphs 3.1 Solving Systems Using Tables and Graphs A solution to a system of linear equations is an that makes all of the equations. To solve a system

More information

Shipment Label Header Guide

Shipment Label Header Guide Shipment Label Header Guide This guide will walk you through the 3 main phases of setting up a shipment label header within World Ship 2013. This guide was made using standard Windows Microsoft Office

More information

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator

Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Tutorial: Building a Dojo Application using IBM Rational Application Developer Loan Payment Calculator Written by: Chris Jaun (cmjaun@us.ibm.com) Sudha Piddaparti (sudhap@us.ibm.com) Objective In this

More information

Chapter 7 Event Log. Click the [Alarm (Event Log)] icon, and [Event Log] dialog appears as below:

Chapter 7 Event Log. Click the [Alarm (Event Log)] icon, and [Event Log] dialog appears as below: Chapter 7 Event Log Event log is used to identify the content of an event and the conditions triggering this event. In addition, the triggered event (sometimes it is called alarm) and the processing procedure

More information

SpectraSense. Software Developer s Kit. User s Guide. SpectraSense Software Developer s Kit User s Guide 1

SpectraSense. Software Developer s Kit. User s Guide. SpectraSense Software Developer s Kit User s Guide 1 SpectraSense Software Developer s Kit User s Guide SpectraSense Software Developer s Kit User s Guide 1 SpectraSense OLE COM Interface The SpectraSense COM interface allows users to create software applications

More information

The key to successful web design is planning. Creating a wireframe can be part of this process.

The key to successful web design is planning. Creating a wireframe can be part of this process. Creating a wireframe nigelbuckner 2014 The key to successful web design is planning. Creating a wireframe can be part of this process. In web design, a wireframe is a diagrammatic representation of a web

More information

Plot and Solve Equations

Plot and Solve Equations Plot and Solve Equations With SigmaPlot s equation plotter and solver, you can - plot curves of data from user-defined equations - evaluate equations for data points, and solve them for a data range. You

More information

PIC 10A. Lecture 7: Graphics II and intro to the if statement

PIC 10A. Lecture 7: Graphics II and intro to the if statement PIC 10A Lecture 7: Graphics II and intro to the if statement Setting up a coordinate system By default the viewing window has a coordinate system already set up for you 10-10 10-10 The origin is in the

More information

Definition 8.1 Two inequalities are equivalent if they have the same solution set. Add or Subtract the same value on both sides of the inequality.

Definition 8.1 Two inequalities are equivalent if they have the same solution set. Add or Subtract the same value on both sides of the inequality. 8 Inequalities Concepts: Equivalent Inequalities Linear and Nonlinear Inequalities Absolute Value Inequalities (Sections 4.6 and 1.1) 8.1 Equivalent Inequalities Definition 8.1 Two inequalities are equivalent

More information

Downloading Driver Files

Downloading Driver Files The following instructions are for all DPAS supported Zebra printers except the Zebra GK420t. The ZDesigner R110Xi4 203 dpi driver has been tested and recommended for DPAS use. This driver will support

More information

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs

HTML Form Widgets. Review: HTML Forms. Review: CGI Programs HTML Form Widgets Review: HTML Forms HTML forms are used to create web pages that accept user input Forms allow the user to communicate information back to the web server Forms allow web servers to generate

More information

Editing Data with Microsoft SQL Server Reporting Services

Editing Data with Microsoft SQL Server Reporting Services Editing Data with Microsoft SQL Server Reporting Services OVERVIEW Microsoft SQL Server Reporting Services (SSRS) is a tool that is used to develop Web-based reports; it integrates into MS Internet Information

More information

Computer Networks/DV2 Lab

Computer Networks/DV2 Lab Computer Networks/DV2 Lab Room: BB 219 Additional Information: http://ti.uni-due.de/ti/en/education/teaching/ss13/netlab Equipment for each group: - 1 Server computer (OS: Windows Server 2008 Standard)

More information

2012 Teklynx Newco SAS, All rights reserved.

2012 Teklynx Newco SAS, All rights reserved. D A T A B A S E M A N A G E R DMAN-US- 01/01/12 The information in this manual is not binding and may be modified without prior notice. Supply of the software described in this manual is subject to a user

More information

EXERCISE 4. Load Cases Form. Objectives: Add a callback for additional analysis information. PATRAN 305 Exercise Workbook 4-1

EXERCISE 4. Load Cases Form. Objectives: Add a callback for additional analysis information. PATRAN 305 Exercise Workbook 4-1 EXERCISE 4 Load Cases Form Objectives: Add a callback for additional analysis information PATRAN 305 Exercise Workbook 4-1 4-2 PATRAN 305 Exercise Workbook Exercise 4 Problem Description: Write a PCL Class

More information

Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht:

Building an Architecture Model 1. 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Building an Architecture Model 1 1. Entwerfen Sie mit AxiomSys ein Kontextdiagramm, das folgendermaßen aussieht: Wie Ihnen aus der vergangenen Lehrveranstaltung bekannt ist, bedeuten Sterne neben den Bezeichnungen,

More information

How to work with Blobs

How to work with Blobs Counter: 14083 Published: 2007 01 29 16:55:38 How to work with Blobs Working with BLOB fields in client InterBase/Firebird applications based on FIBPlus components July, 2006 by Sergey Vostrikov and Serge

More information

Visual Logic Instructions and Assignments

Visual Logic Instructions and Assignments Visual Logic Instructions and Assignments Visual Logic can be installed from the CD that accompanies our textbook. It is a nifty tool for creating program flowcharts, but that is only half of the story.

More information

One Dimension Array: Declaring a fixed-array, if array-name is the name of an array

One Dimension Array: Declaring a fixed-array, if array-name is the name of an array Arrays in Visual Basic 6 An array is a collection of simple variables of the same type to which the computer can efficiently assign a list of values. Array variables have the same kinds of names as simple

More information

OVERVIEW...3. Access...3 Database...3 Table...3 Record...4 Field...4

OVERVIEW...3. Access...3 Database...3 Table...3 Record...4 Field...4 OVERVIEW...3 Access...3 Database...3 Table...3 Record...4 Field...4 UWCMS Table Overview...4 Basic data tables...4 Definition Tables...4 Lookup Tables...5 Basic transaction tables...5 Processed Tables...5

More information

CS 141: Introduction to (Java) Programming: Exam 1 Jenny Orr Willamette University Fall 2013

CS 141: Introduction to (Java) Programming: Exam 1 Jenny Orr Willamette University Fall 2013 Oct 4, 2013, p 1 Name: CS 141: Introduction to (Java) Programming: Exam 1 Jenny Orr Willamette University Fall 2013 1. (max 18) 4. (max 16) 2. (max 12) 5. (max 12) 3. (max 24) 6. (max 18) Total: (max 100)

More information

Interactive Data Visualization for the Web Scott Murray

Interactive Data Visualization for the Web Scott Murray Interactive Data Visualization for the Web Scott Murray Technology Foundations Web technologies HTML CSS SVG Javascript HTML (Hypertext Markup Language) Used to mark up the content of a web page by adding

More information

CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5

CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5 CREATING HORIZONTAL NAVIGATION BAR USING ADOBE DREAMWEAVER CS5 Step 1 - Creating list of links - (5 points) Traditionally, CSS navigation is based on unordered list - . Any navigational bar can be

More information

Lab 4.4 Secret Messages: Indexing, Arrays, and Iteration

Lab 4.4 Secret Messages: Indexing, Arrays, and Iteration Lab 4.4 Secret Messages: Indexing, Arrays, and Iteration This JavaScript lab (the last of the series) focuses on indexing, arrays, and iteration, but it also provides another context for practicing with

More information

First Bytes Programming Lab 2

First Bytes Programming Lab 2 First Bytes Programming Lab 2 This lab is available online at www.cs.utexas.edu/users/scottm/firstbytes. Introduction: In this lab you will investigate the properties of colors and how they are displayed

More information

Visual Basic Programming. An Introduction

Visual Basic Programming. An Introduction Visual Basic Programming An Introduction Why Visual Basic? Programming for the Windows User Interface is extremely complicated. Other Graphical User Interfaces (GUI) are no better. Visual Basic provides

More information

.OR.AT.ATTORNEY.AUCTION.BARGAINS.BAYERN.BERLIN.BLACKFRIDAY.BOUTIQUE.BRUSSELS.BUILDERS

.OR.AT.ATTORNEY.AUCTION.BARGAINS.BAYERN.BERLIN.BLACKFRIDAY.BOUTIQUE.BRUSSELS.BUILDERS .AC.BIO.RESTAURANT.APARTMENTS.CASINO.SCHOOL.KIM.ACADEMY.ACCOUNTANTS.ACTOR.ADULT.AE.AERO.AG.AGENCY.AIRFORCE.ARCHI.ARMY.ASIA.ASSOCIATES.AT.CO.AT.OR.AT.ATTORNEY.AUCTION.AUDIO.BAND.BANK.BAR.BARGAINS.BAYERN.BE.BEER.BERLIN.BID.BIKE.BINGO.BIZ.BLACK.BLACKFRIDAY.BLUE.BOUTIQUE.BRUSSELS.BUILDERS.BUSINESS.BZ.CO.BZ.COM.BZ.ORG.BZ.CAB.CAFE.CAMERA.CAMP.CAPITAL.CARDS.CARE.CAREERS.CASA.CASH.CATERING.CC.CENTER.CH.CHAT.CHEAP.CHRISTMAS

More information

! "#" $ % & '( , -. / 0 1 ' % 1 2 3 ' 3" 4569& 7 456: 456 4 % 9 ; ;. 456 4 <&= 3 %,< & 4 4 % : ' % > ' % ? 1 3<=& @%'&%A? 3 & B&?

! # $ % & '( , -. / 0 1 ' % 1 2 3 ' 3 4569& 7 456: 456 4 % 9 ; ;. 456 4 <&= 3 %,< & 4 4 % : ' % > ' % ? 1 3<=& @%'&%A? 3 & B&? ! "#" $ & '(!" "##$$$&!&#'( )*+ ', -. / 0 1 ' 1 2 3 ' 3" 456 7 4564 7 4565 7 4564 87 4569& 7 456: 456 4 9 ; ;. 456 4

More information

ImageJ Macro Language Quick-notes.

ImageJ Macro Language Quick-notes. ImageJ Macro Language Quick-notes. This is a very simplified version of the ImageJ macro language manual. It should be enough to get you started. For more information visit http://rsb.info.nih.gov/ij/developer/macro/macros.html.

More information

Fireworks 3 Animation and Rollovers

Fireworks 3 Animation and Rollovers Fireworks 3 Animation and Rollovers What is Fireworks Fireworks is Web graphics program designed by Macromedia. It enables users to create any sort of graphics as well as to import GIF, JPEG, PNG photos

More information

This exhibit describes how to upload project information from Estimator (PC) to Trns.port PES (server). Figure 1 summarizes this process.

This exhibit describes how to upload project information from Estimator (PC) to Trns.port PES (server). Figure 1 summarizes this process. Facilities Development Manual Chapter 19 Plans, Specifications and Estimates Section 5 Estimates Wisconsin Department of Transportation Exhibit 10.5 Uploading project from Estimator to Trns port PES September

More information

Chapter 7 The Chat Window

Chapter 7 The Chat Window Chapter 7 The Chat Window The Chat window lets you exchange text messages with Participants and other Moderators in your session. Participants also can use the Chat window to communicate with Moderators

More information

Load balancing and failover For kbmmw v. 2.50+ ProPlus and Enterprise Editions

Load balancing and failover For kbmmw v. 2.50+ ProPlus and Enterprise Editions Load balancing and failover For kbmmw v. 2.50+ ProPlus and Enterprise Editions Introduction... 2 Centralized load balancing... 3 Distributed load balancing... 4 Fail over... 5 Client controlled fail over...

More information

Single Page Web App Generator (SPWAG)

Single Page Web App Generator (SPWAG) Single Page Web App Generator (SPWAG) Members Lauren Zou (ljz2112) Aftab Khan (ajk2194) Richard Chiou (rc2758) Yunhe (John) Wang (yw2439) Aditya Majumdar (am3713) Motivation In 2012, HTML5 and CSS3 took

More information

IP Office DevLink Programmer's Guide

IP Office DevLink Programmer's Guide DevLink Programmer's Guide 15-601034 Issue 12e - (22 June 2010) 2010 AVAYA All Rights Reserved. Notices While reasonable efforts have been made to ensure that the information in this document is complete

More information

MAPINFO GRID ENGINE. MapBasic scripts. MIGRID.DLL functions. using. Jacques Paris

MAPINFO GRID ENGINE. MapBasic scripts. MIGRID.DLL functions. using. Jacques Paris MAPINFO GRID ENGINE MapBasic scripts using MIGRID.DLL functions Jacques Paris September 2001 This document contains 4 MapBasic code listings showing how to use calls to the MiGrid library. These examples

More information

Printing Patterns to PDF. by Lisa Shanley, Ph.D.

Printing Patterns to PDF. by Lisa Shanley, Ph.D. Printing Patterns to PDF by Lisa Shanley, Ph.D. Introduction PDF stands for Portable Document Format. It is a file format that was created to represent documents independent of specific application software

More information

PTC Mathcad Prime 3.0 Keyboard Shortcuts

PTC Mathcad Prime 3.0 Keyboard Shortcuts PTC Mathcad Prime 3.0 Shortcuts Swedish s Regions Inserting Regions Operator/Command Description Shortcut Swedish Area Inserts a collapsible area you can collapse or expand to toggle the display of your

More information

FrontPage 2003: Forms

FrontPage 2003: Forms FrontPage 2003: Forms Using the Form Page Wizard Open up your website. Use File>New Page and choose More Page Templates. In Page Templates>General, choose Front Page Wizard. Click OK. It is helpful if

More information

The Center for Teaching, Learning, & Technology

The Center for Teaching, Learning, & Technology The Center for Teaching, Learning, & Technology Instructional Technology Workshops Microsoft Excel 2010 Formulas and Charts Albert Robinson / Delwar Sayeed Faculty and Staff Development Programs Colston

More information

Flash MX Image Animation

Flash MX Image Animation Flash MX Image Animation Introduction (Preparing the Stage) Movie Property Definitions: Go to the Properties panel at the bottom of the window to choose the frame rate, width, height, and background color

More information

Section 3.1 Quadratic Functions and Models

Section 3.1 Quadratic Functions and Models Section 3.1 Quadratic Functions and Models DEFINITION: A quadratic function is a function f of the form fx) = ax 2 +bx+c where a,b, and c are real numbers and a 0. Graphing Quadratic Functions Using the

More information

User Manual Microsoft Dynamics AX Add-on LabAX Label Printing

User Manual Microsoft Dynamics AX Add-on LabAX Label Printing User Manual Microsoft Dynamics AX Add-on LabAX Label Printing Version 1.7 Last Update: 17.04.2011 User Manual Microsoft Dynamics AX Add-on LabAX Label Printing Page 2 / 23 Contents 1 Introduction... 3

More information

Creating and Using Links and Bookmarks in PDF Documents

Creating and Using Links and Bookmarks in PDF Documents Creating and Using Links and Bookmarks in PDF Documents After making a document into a PDF, there may be times when you will need to make links or bookmarks within that PDF to aid navigation through the

More information

APPLICATION NOTE. Getting Started with pylon and OpenCV

APPLICATION NOTE. Getting Started with pylon and OpenCV APPLICATION NOTE Getting Started with pylon and OpenCV Applicable to all Basler USB3 Vision, GigE Vision, and IEEE 1394 cameras Document Number: AW001368 Version: 01 Language: 000 (English) Release Date:

More information

An Overview of Java. overview-1

An Overview of Java. overview-1 An Overview of Java overview-1 Contents What is Java Major Java features Java virtual machine Java programming language Java class libraries (API) GUI Support in Java Networking and Threads in Java overview-2

More information

Save Time and Eliminate Data Entry Errors

Save Time and Eliminate Data Entry Errors Save Time and Eliminate Data Entry Errors Table of Contents 1. Introduction... 1 2. Software Installation... 1 3. Generating the Installation Security Key... 7 4. Software Modules... 10 5. Data Entry Management...11

More information

iw Document Manager Cabinet Converter User s Guide

iw Document Manager Cabinet Converter User s Guide iw Document Manager Cabinet Converter User s Guide Contents Contents.................................................................... 1 Abbreviations Used in This Guide................................................

More information

000350 invoke self "createradio" using radio 000360 "radio one " line 120 pos 250

000350 invoke self createradio using radio 000360 radio one  line 120 pos 250 Pagina:1/6 000010 IDENTIFICATION DIVISION. 000020 PROGRAM-ID. guitest. 000030 ENVIRONMENT DIVISION. 000040 DATA DIVISION. 000050 WORKING-STORAGE SECTION. 000060 000070 01 check1 pic x. 000070 01 check

More information

Switch on the system

Switch on the system Page 1 von 8 Please note: If images acquired on IMCES instruments are used in publications we would be grateful if you could also put in an acknowledgement to the facility Switch on the system Switch on

More information

Printer Setup. What Is the Printer Setup Module?... B-2. How to Access the Printer Setup Module... B-3. Reference Information. Standard Procedures

Printer Setup. What Is the Printer Setup Module?... B-2. How to Access the Printer Setup Module... B-3. Reference Information. Standard Procedures Printer Setup A ColorDesigner housekeeping setup option that allows you to select a system printer as well as the information to print on formula labels that you attach to paint cans. What Is the Printer

More information

Writer Guide. Chapter 15 Using Forms in Writer

Writer Guide. Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer Copyright This document is Copyright 2005 2008 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

SonicWALL GMS Custom Reports

SonicWALL GMS Custom Reports SonicWALL GMS Custom Reports Document Scope This document describes how to configure and use the SonicWALL GMS 6.0 Custom Reports feature. This document contains the following sections: Feature Overview

More information

PRADO v3.1 Quickstart Tutorial 1

PRADO v3.1 Quickstart Tutorial 1 PRADO v3.1 Quickstart Tutorial 1 Qiang Xue and Wei Zhuo January 14, 2007 1 Copyright 2005-2006. All Rights Reserved. Contents Contents i Preface xv License xvii 1 Getting Started 1 1.1 Welcome to the PRADO

More information

How to develop n-tier applications for ios using kbmmw

How to develop n-tier applications for ios using kbmmw How to develop n-tier applications for ios using kbmmw starter expert Delphi XE2 With the latest kbmmw beta, it's possible to use just about all of its main functionality on iphones, ipod Touch and ipads.

More information

Regression Verification: Status Report

Regression Verification: Status Report Regression Verification: Status Report Presentation by Dennis Felsing within the Projektgruppe Formale Methoden der Softwareentwicklung 2013-12-11 1/22 Introduction How to prevent regressions in software

More information

Chapter 15 Using Forms in Writer

Chapter 15 Using Forms in Writer Writer Guide Chapter 15 Using Forms in Writer OpenOffice.org Copyright This document is Copyright 2005 2006 by its contributors as listed in the section titled Authors. You can distribute it and/or modify

More information

Crystal Reports Designer Version 10

Crystal Reports Designer Version 10 Crystal Reports Designer Version 10 Exporting to Microsoft Excel Overview Contents This document is intended to assist you in creating or modifying a report in Crystal Reports Designer, version 10, that

More information

USB CASH DRAWER INTERFACE. Introduction

USB CASH DRAWER INTERFACE. Introduction USB CASH DRAWER INTERFACE Introduction USB is an interface communication standard that was designed to allow multiple devices to connect to a single port on a supporting host device. Multiple devices are

More information

G.H. Raisoni College of Engineering, Nagpur. Department of Information Technology

G.H. Raisoni College of Engineering, Nagpur. Department of Information Technology Practical List 1) WAP to implement line generation using DDA algorithm 2) WAP to implement line using Bresenham s line generation algorithm. 3) WAP to generate circle using circle generation algorithm

More information

8/23/13 Configuring the Wonderware SECS-II/GEM Host Creator (SERIAL-RS232)

8/23/13 Configuring the Wonderware SECS-II/GEM Host Creator (SERIAL-RS232) Tech Note 202 Configuring the Wonderware SECS-II/GEM Host Creator (SERIAL- RS232) All Tech Notes and KBCD documents and software are provided "as is" without warranty of any kind. See the Terms of Use

More information

Creating and Deploying an Air Application

Creating and Deploying an Air Application Creating and Deploying an Air Application Note: The starter and solution files for this project do not include the LiveCycle Data Services technology that you implemented in Exercise 9. Removing that code

More information

5.17 GUI. Xiaoyi Jiang Informatik I Grundlagen der Programmierung

5.17 GUI. Xiaoyi Jiang Informatik I Grundlagen der Programmierung AWT vs. Swing AWT (Abstract Window Toolkit; Package java.awt) Benutzt Steuerelemente des darunterliegenden Betriebssystems Native Code (direkt für die Maschine geschrieben, keine VM); schnell Aussehen

More information

FORM-ORIENTED DATA ENTRY

FORM-ORIENTED DATA ENTRY FORM-ORIENTED DATA ENTRY Using form to inquire and collect information from users has been a common practice in modern web page design. Many Web sites used form-oriented input to request customers opinions

More information

Tantalis GATOR Expanded Image Help Guide

Tantalis GATOR Expanded Image Help Guide Tantalis GATOR Expanded Image Help Guide Instructions for Increasing Image Resolution and Large size Printing The following are suggestions for printing an image using the Enabled MrSID plug-in and for

More information

Legal Notes. Regarding Trademarks. Model supported by the KX printer driver. 2010 KYOCERA MITA Corporation

Legal Notes. Regarding Trademarks. Model supported by the KX printer driver. 2010 KYOCERA MITA Corporation Legal Notes Unauthorized reproduction of all or part of this guide is prohibited. The information in this guide is subject to change for improvement without notice. We cannot be held liable for any problems

More information

Delphi 2010 DataSnap: Your data where you want it, how you want it.

Delphi 2010 DataSnap: Your data where you want it, how you want it. White Paper Delphi 2010 DataSnap: Your data where you want it, how you want it. Bob Swart Bob Swart Training & Consultancy (ebob42) October 2009 Corporate Headquarters EMEA Headquarters Asia-Pacific Headquarters

More information

Data Warehouse Troubleshooting Tips

Data Warehouse Troubleshooting Tips Table of Contents "Can't find the Admin layer "... 1 "Can't locate connection document "... 3 Column Headings are Missing after Copy/Paste... 5 Connection Error: ORA-01017: invalid username/password; logon

More information

THERMAL TICKET PRINT SERVER USER MANUAL

THERMAL TICKET PRINT SERVER USER MANUAL USER MANUAL 1. Configuring your thermal ticket printer 1.1. Dymo LabelWriter series printer set up 1.2. Star TSP series printer set up 1.3. Citizen CL series printer setup 2. Configuring the print server

More information

LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide. Rev. 03 (November, 2001)

LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide. Rev. 03 (November, 2001) LPR for Windows 95/98/Me/2000/XP TCP/IP Printing User s Guide Rev. 03 (November, 2001) Copyright Statement Trademarks Copyright 1997 No part of this publication may be reproduced in any form or by any

More information

Programmer s Label Guide

Programmer s Label Guide Ship Manager API Label Guide Programmer s Label Guide January 2006 Legal Terms and Conditions Use of this system constitutes your agreement to the service conditions in the current FedEx Service Guide,

More information

PL / SQL Basics. Chapter 3

PL / SQL Basics. Chapter 3 PL / SQL Basics Chapter 3 PL / SQL Basics PL / SQL block Lexical units Variable declarations PL / SQL types Expressions and operators PL / SQL control structures PL / SQL style guide 2 PL / SQL Block Basic

More information

How-To: Submitting PDF forms to SharePoint from custom websites

How-To: Submitting PDF forms to SharePoint from custom websites How-To: Submitting PDF forms to SharePoint from custom websites Introduction This How-To document describes the process of creating PDF forms using PDF Share Forms tools, and posting the form on a non-sharepoint

More information

Important Information and Setup Instructions

Important Information and Setup Instructions Important Information and Setup Instructions This CD-ROM is set up for Adobe Reader version 9.0 or higher. If you must use an earlier version (e.g. because Adobe does not have a 9.0 or later version available

More information

PRI-(BASIC2) Preliminary Reference Information Mod date 3. Jun. 2015

PRI-(BASIC2) Preliminary Reference Information Mod date 3. Jun. 2015 PRI-(BASIC2) Table of content Introduction...2 New Comment...2 Long variable...2 Function definition...3 Function declaration...3 Function return value...3 Keyword return inside functions...4 Function

More information

Royal Mail Despatch Manager Online Printer Installation Guide

Royal Mail Despatch Manager Online Printer Installation Guide Royal Mail Despatch Manager Online Printer Installation Guide Getting you started Thank you for opting to use Royal Mail s Despatch Manager Online (DMO) system. To help get you started successfully please

More information

CDOT Linking Excel Documents to MicroStation

CDOT Linking Excel Documents to MicroStation CDOT Linking Excel Documents to MicroStation This document guides you through linking Excel spreadsheets to MicroStation. This workflow uses the example of linking a standard CDOT tab sheet but the concepts

More information

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

Dialog 4220 Lite/Dialog 4222 Office

Dialog 4220 Lite/Dialog 4222 Office System Telephones for MD110 Communication System User Guide Cover Page Graphic Place the graphic directly on the page, do not care about putting it in the text flow. Select Graphics > Properties and make

More information

Airport Planning and Design. Excel Solver

Airport Planning and Design. Excel Solver Airport Planning and Design Excel Solver Dr. Antonio A. Trani Professor of Civil and Environmental Engineering Virginia Polytechnic Institute and State University Blacksburg, Virginia Spring 2012 1 of

More information