chtopo_apitraining2010 Documentation

Größe: px
Ab Seite anzeigen:

Download "chtopo_apitraining2010 Documentation"

Transkript

1 chtopo_apitraining2010 Documentation Release 1.0 Cedric Moullet May 25, 2010

2

3 CONTENTS 1 Presentation 1 2 Introduction OpenLayers ExtJS GeoExt GeoAdmin API GeoAdmin API Indices and tables 27 i

4 ii

5 CHAPTER ONE PRESENTATION GeoAdmin API PDF GeoAdmin API ODP 1

6 2 Chapter 1. Presentation

7 CHAPTER TWO INTRODUCTION 2.1 OpenLayers OpenLayers makes it easy to put a dynamic map in any web page. It can display map tiles and markers loaded from any source. Note: In order to play with OpenLayers, it is needed to reference the OpenLayers library. Simply add the following code in the html page: <script src= ></script> Map Instances of OpenLayers.Map are interactive maps embedded in a web page. To test: openlayers_map.html <html> <head> <title>openlayers Map</title> <script src=" <script type="text/javascript"> var map, layer; function init() { map = new OpenLayers.Map( map ); layer = new OpenLayers.Layer.WMS("OpenLayers WMS", " {layers: basic } ); map.addlayer(layer); map.zoomtomaxextent(); } </script> </head> <body onload="init()"> <div id="map"></div> </body> </html> 3

8 2.1.2 Editing Toolbar Editing Toolbar To test: openlayers_editing_toolbar.html <html xmlns=" <head> <title>openlayers Editing Toolbar </title> <script src=" <script type="text/javascript"> var lon = 5; var lat = 40; var zoom = 5; var map, layer; function init() { layer = new OpenLayers.Layer.WMS("OpenLayers WMS", " {layers: basic } ); vlayer = new OpenLayers.Layer.Vector("Editable"); map = new OpenLayers.Map( map, { controls: [ new OpenLayers.Control.PanZoom(), new OpenLayers.Control.EditingToolbar(vlayer) ] map.addlayers([layer, vlayer]); map.setcenter(new OpenLayers.LonLat(lon, lat), zoom); } </script> </head> <body onload="init()"> <div id="map"></div> </body> </html> Documentation Web Site: API documentation: Examples: Tutorial: Trac: 4 Chapter 2. Introduction

9 2.2 ExtJS Ext JS is a cross-browser JavaScript library for building rich internet applications. It provides a very large list of UI components. Note: In order to play with ExtJS, it is needed to reference the ExtJS library and the associated css. For simplicity, we have prepared an accessible build with CacheFly. Then, simply add the following code in the html page: <script type= text/javascript src= ></script> <link rel= stylesheet type= text/css href= /> Ext Hello World Create your own html page with the following code extjs_hello_world.html. If you open it in a browser, you should get a message Hello World! You have ExtJS configured correctly! <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso " /> <title id= title >ExtJS Hello World</title> <script type="text/javascript" src=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript"> Ext.onReady(function(){ alert("hello World! You have ExtJS configured correctly!"); //end onready </script> </head> <body> </body> </html> Ext.Viewport The Viewport renders itself to the document body, and automatically sizes itself to the size of the browser viewport and manages window resizing. There may only be one Viewport created in a page. Let s have a look at the configuration of a viewport: To test: extjs_viewport.html <html> <head> <meta http-equiv="content-type" content="text/html; charset=iso "/> <title id= title >ExtJS Viewport</title> <script type="text/javascript" src=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript"> Ext.onReady(function() { 2.2. ExtJS 5

10 new Ext.Viewport({ layout: border, items: [ { region: north, html: <h1 class="x-panel-header">page Title</h1>, autoheight: true, border: false, margins: }, { region: west, collapsible: true, title: Navigation, xtype: treepanel, width: 200, autoscroll: true, split: true, loader: new Ext.tree.TreeLoader(), root: new Ext.tree.AsyncTreeNode({ expanded: true, children: [ { text: Menu Option 1, leaf: true }, { text: Menu Option 2, leaf: true }, { text: Menu Option 3, leaf: true } ] }), rootvisible: false, listeners: { click: function(n) { Ext.Msg.alert( Navigation Tree Click, You clicked: " + n.attributes. } } }, { region: center, xtype: tabpanel, items: { title: Default Tab, html: The first tab\ s content. Others may be added dynamically } }, { region: south, title: Information, collapsible: true, html: Information goes here, split: true, height: 100, 6 Chapter 2. Introduction

11 minheight: 100 } ] //end onready </script> </head> <body> </body> </html> Documentation Web Site: API documentation: Examples: GeoExt GeoExt brings together the geospatial know how of OpenLayers with the user interface savvy of Ext JS to help you build powerful desktop style GIS apps on the web with JavaScript. Note: In order to play with GeoExt, it is needed to reference the OpenLayers, ExtJS and GeoExt library. For GeoExt, simply add the following code in the html page: <script src= ></script> GeoExt.MapPanel A GeoExt MapPanel is an OpenLayers map integrated into an ExtJS Panel. To test: geoext_mappanel.html <html> <head> <title>geoext Map Panel</title> <script type="text/javascript" src=" <link rel="stylesheet" type="text/css" href=" <script src=" <script src=" type="text/javascript"></script> <script type="text/javascript"> Ext.onReady(function() { var map = new OpenLayers.Map(); var layer = new OpenLayers.Layer.WMS( "Blue Marble", " GeoExt 7

12 {layers: "bluemarble"} ); map.addlayer(layer); new GeoExt.MapPanel({ renderto: gxmap, height: 400, width: 600, map: map, title: GeoExt Map Panel </script> </head> <body> <div id="gxmap"></div> </body> </html> GeoExt.Action GeoExt provides the GeoExt.Action class for adaptating a control to an object that can be inserted in a toolbar or in a menu. To test: geoext_action.html <html> <head> <title>geoext Action</title> <script type="text/javascript" src=" <link rel="stylesheet" type="text/css" href=" <script src=" <script type="text/javascript" src=" <script type="text/javascript"> Ext.onReady(function() { var map = new OpenLayers.Map(); var wms = new OpenLayers.Layer.WMS( "bluemarble", " {layers: bluemarble } ); var vector = new OpenLayers.Layer.Vector("vector"); map.addlayers([wms, vector]); var ctrl, toolbaritems = [], action, actions = {}; // ZoomToMaxExtent control, a "button" control action = new GeoExt.Action({ control: new OpenLayers.Control.ZoomToMaxExtent(), map: map, text: "max extent" 8 Chapter 2. Introduction

13 actions["max_extent"] = action; toolbaritems.push(action); toolbaritems.push("-"); // Navigation control and DrawFeature controls // in the same toggle group action = new GeoExt.Action({ text: "nav", control: new OpenLayers.Control.Navigation(), map: map, // button options togglegroup: "draw", allowdepress: false, pressed: true, // check item options group: "draw", checked: true actions["nav"] = action; toolbaritems.push(action); action = new GeoExt.Action({ text: "draw poly", control: new OpenLayers.Control.DrawFeature( vector, OpenLayers.Handler.Polygon ), map: map, // button options togglegroup: "draw", allowdepress: false, // check item options group: "draw" actions["draw_poly"] = action; toolbaritems.push(action); action = new GeoExt.Action({ text: "draw line", control: new OpenLayers.Control.DrawFeature( vector, OpenLayers.Handler.Path ), map: map, // button options togglegroup: "draw", allowdepress: false, // check item options group: "draw" actions["draw_line"] = action; toolbaritems.push(action); toolbaritems.push("-"); // SelectFeature control, a "toggle" control action = new GeoExt.Action({ text: "select", control: new OpenLayers.Control.SelectFeature(vector, { type: OpenLayers.Control.TYPE_TOGGLE, hover: true 2.3. GeoExt 9

14 }), map: map, // button options enabletoggle: true actions["select"] = action; toolbaritems.push(action); toolbaritems.push("-"); // Navigation history - two "button" controls ctrl = new OpenLayers.Control.NavigationHistory(); map.addcontrol(ctrl); action = new GeoExt.Action({ text: "previous", control: ctrl.previous, disabled: true actions["previous"] = action; toolbaritems.push(action); action = new GeoExt.Action({ text: "next", control: ctrl.next, disabled: true actions["next"] = action; toolbaritems.push(action); toolbaritems.push("->"); // Reuse the GeoExt.Action objects created above // as menu items toolbaritems.push({ text: "menu", menu: new Ext.menu.Menu({ items: [ // ZoomToMaxExtent actions["max_extent"], // Nav new Ext.menu.CheckItem(actions["nav"]), // Draw poly new Ext.menu.CheckItem(actions["draw_poly"]), // Draw line new Ext.menu.CheckItem(actions["draw_line"]), // Select control new Ext.menu.CheckItem(actions["select"]), // Navigation history control actions["previous"], actions["next"] ] }) var mappanel = new GeoExt.MapPanel({ renderto: "mappanel", height: 400, width: 600, map: map, 10 Chapter 2. Introduction

15 </script> center: new OpenLayers.LonLat(5, 45), zoom: 4, tbar: toolbaritems <style type="text/css"> /* work around an Ext bug that makes the rendering of menu items not as one would expect */.ext-ie.x-menu-item-icon { left: -24px; }.ext-strict.x-menu-item-icon { left: 3px; }.ext-ie6.x-menu-item-icon { left: -24px; }.ext-ie7.x-menu-item-icon { left: -24px; } </style> </head> <body> <div id="mappanel"></div> </body> </html> Documentation Web Site: API documentation: Examples: Tutorial: Trac: User Extension: GeoExt 11

16 12 Chapter 2. Introduction

17 CHAPTER THREE GEOADMIN API 3.1 GeoAdmin API Tutorial 1: GeoNames search Add a GeoNames search within a map. The explanations about the GeoNames GeoExt User Extension can be found here: Step 1 Create an empty html page which references the necessary libraries (GeoAdmin + GeoNames UX) and stylesheets. <html> <head> <title>geoadmin - GeoNames</title> <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript" src=" <script type="text/javascript" src=" </head> <body> </body> </html> Step 2 Add and stylize the div used to place the map and the search combo. <html> <head> <title>geoadmin - GeoNames</title> <link rel="stylesheet" type="text/css" href=" 13

18 <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript" src=" <script type="text/javascript" src=" </head> <body> <div id="map" style="width:100%;height:100%;border:0px;"></div> <div id="search" style="position:absolute; top:25px; left:50px; z-index:1000;"></div> </body> </html> Step 3 Instantiate first the GeoAdmin API. Then, create a map with the GeoAdmin API and place it in the map div. The createmap functions returns an OpenLayers map. <html> <head> <title>geoadmin - GeoNames</title> <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript" src=" <script type="text/javascript" src=" <script type="text/javascript"> Ext.onReady(function() { var geo = new geoadmin.api(); var map = geo.createmap({ div: map, easting: , northing: , zoom: 3 </script> </head> <body> <div id="map" style="width:100%;height:100%;border:0px;"></div> <div id="search" style="position:absolute; top:25px; left:50px; z-index:1000;"></div> </body> </html> Step 4 Add a GeoNames search combo in the search div and link it with the map. You can also try to show specific layers. Layer list is under: 14 Chapter 3. GeoAdmin API

19 <html> <head> <title>geoadmin - GeoNames</title> <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript" src=" <script type="text/javascript" src=" <script type="text/javascript"> Ext.onReady(function() { var geo = new geoadmin.api(); var map = geo.createmap({ div: map, easting: , northing: , zoom: 3 var combosearch = new GeoExt.ux.GeoNamesSearchCombo({ map: map, zoom: 8, renderto: search </script> </head> <body> <div id="map" style="width:100%;height:100%;border:0px;"></div> <div id="search" style="position:absolute; top:25px; left:50px; z-index:1000;"></div> </body Solution Solution: geoadmin_geonames.html Tutorial 2: Standardmarkierung für Standort Ergebnis: 3.1. GeoAdmin API 15

20 16 Chapter 3. GeoAdmin API

21 chtopo_apitraining2010 Documentation, Release 1.0 Schritt 1: Bestimmen Koordinaten Mit Rechtem Mausklick wird von gewünschter Position über Pop up Koordinaten zurückgegeben In diesem Beispiel: GeoAdmin API 17

22 Schritt 2: in CMS Redaktoren System für gewünschte Ziel Website API laden <meta http-equiv="pragma" content="no-cache"/> <meta http-equiv="cache-control" content="no-cache"/> <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <link rel="stylesheet" type="text/css" href=" <script type="text/javascript" src=" 18 Chapter 3. GeoAdmin API

23 3.1. GeoAdmin API 19

24 Schritt 3: Erstellen Sie einen Neuen Paragraphen Schritt 4: Wählen Sie Ihren Paragraphentyp -> HTML Schritt 5: HTML Code editieren 20 Chapter 3. GeoAdmin API

25 Folgenden Code eingeben, wobei easting und northing auf die Koordinaten Werte aus Schritt 1 angepasst werden sollte: <script type="text/javascript"> window.onload=init; function init(){ Ext.onReady(function() { geo7 = new geoadmin.api(); geo7.createmap({ div: mymap8, easting: , northing: , zoom: 8 geo7.showmarker(); } </script> <div id="mymap8" style="width:531px;height:370px;border:0px solid black;"></div> Schritt 6: Speichern und publizieren Standort ist eingebunden! Tutorial 3: Standardmarkierung für Standort mit weiteren Hintergrunddaten Ergebnis: 3.1. GeoAdmin API 21

26 Schritt 1: den gewünschten Datensatz in geo.admin.ch auswählen In diesem Beispiel geht es um den Adressdatensatz. Über die Funktionen Permalink: 22 Chapter 3. GeoAdmin API

27 chtopo_apitraining2010 Documentation, Release 1.0 Kopieren sie die Adressen URL. In diesem Beispiel hier ist es: Der Datensatz Identifikator für die Adressen ist in diesem Fall: ch.bfs.gebaeude_wohnungs_register Schritt 2: Wie in Schritt 2-4 aus Tutorial 2 neuen Paragraph erstellen Schritt 3: Wie in Schritt 5 aus Tutorial 2 HTML Code editieren Mit layers Wird der entsprechenden Datensatz hinzugefügt, Mit layers_opacity dessen Transparenz gesteuert Mit bgopacity wird die Transparenz der Pixelkarte gesteuert: 0 ist komplett transparent <script type="text/javascript"> window.onload=init; function init(){ Ext.onReady(function() { geo3 = new geoadmin.api(); geo3.createmap({ div: mymap3, easting: , northing: , zoom: 7, 3.1. GeoAdmin API 23

28 layers: ch.bfs.gebaeude_wohnungs_register, layers_opacity: 0.78, bgopacity: 0 geo3.showmarker(); } </script> <div id="mymap3" style="width:531px;height:370px;border:0px solid black;"></div> Schritt 4: Speichern und publizieren Standort ist eingebunden! Es erklärt sich nun von selbst wie eine Karte nur mit Luftbild und Markierung erstellt wird Tutorial 4: Standardmarkierung für Standort mit PopUp mit weiteren Infos Ergebnis: 24 Chapter 3. GeoAdmin API

29 Schritt 1: Wie in Schritt 1-4 aus Tutorial 2 neuen Paragraph erstellen Schritt 2: Wie in Schritt 5 aus Tutorial 2 HTML Code editieren Wir generieren in A) eine Leere Karte. Die Funktion ShowMarker aus den vorgehenden Übungen erweitern wir. In B) fügen wir für den ersten Ort mittels folgenden Parametern: easting, northing die Koordinaten für den ersten Standort ein html enthält den Inhalt des PopUps in Form von HTML, es können Text, Bilder etc eingefügt werden. In diesem Beispiel sind es Text und ein Logo. In C) wird ein weiterer Standort hinzugefügt. <script type="text/javascript"> window.onload=init; function init(){ Ext.onReady(function() { //A ) Leere Karte geo7 = new geoadmin.api(); geo7.createmap({ div: mymap8 //B) Wabern geo7.showmarker({ easting: , northing:197466, html: <h1>swisstopo</h1><br>seftigenstrasse 264<br>P.O. Box 3084 Wabern<br> <img src=" //C) Duebendorf geo7.showmarker({ easting: , northing:250896, html: <h1>swisstopo Flugdienst</h1><br>Militärflugplatz<br>8600 Dübendorf <br> <img src="htt } </script> <div id="mymap8" style="width:531px;height:370px;border:0px solid black;"></div> Schritt 4: Speichern und publizieren Standorte mit PopUp sind eingebunden! Wenn mehrer Punkte eingebunden werden sollten, empfiehlt sich die Verwendung von KML files, eine Anleitung dazu unter: 3.1. GeoAdmin API 25

30 Reference You can learn more about the API functions, for example: createmap: showmarker: Exercice 1 Add measure tools within a map. Explanations about the Measure GeoExt User Extensions: Solution: geoadmin_measure.html Exercice 2 Integrate with Street View. Explanations about the StreetView GeoExt User Extensions: Solution: geoadmin_streetview.html Documentation Web Site: Tutorial: Examples: MapFish API tutorial: MapFish API doc: 26 Chapter 3. GeoAdmin API

31 CHAPTER FOUR INDICES AND TABLES Index Module Index Search Page 27

Programmierschnittstelle API 2 für CMS Day Communiqué: Beispiele Standort

Programmierschnittstelle API 2 für CMS Day Communiqué: Beispiele Standort Eidgenössisches Departement für Verteidigung, Bevölkerungsschutz und Sport VBS armasuisse Bundesamt für Landestopografie swisstopo Programmierschnittstelle API 2 für CMS Day Communiqué: Beispiele Standort

Mehr

NEWSLETTER. FileDirector Version 2.5 Novelties. Filing system designer. Filing system in WinClient

NEWSLETTER. FileDirector Version 2.5 Novelties. Filing system designer. Filing system in WinClient Filing system designer FileDirector Version 2.5 Novelties FileDirector offers an easy way to design the filing system in WinClient. The filing system provides an Explorer-like structure in WinClient. The

Mehr

USB Treiber updaten unter Windows 7/Vista

USB Treiber updaten unter Windows 7/Vista USB Treiber updaten unter Windows 7/Vista Hinweis: Für den Downloader ist momentan keine 64 Bit Version erhältlich. Der Downloader ist nur kompatibel mit 32 Bit Versionen von Windows 7/Vista. Für den Einsatz

Mehr

Dokumentation für Popup (lightbox)

Dokumentation für Popup (lightbox) Dokumentation für Popup (lightbox) Für das Popup muss eine kleine Anpassung im wpshopgermany Plugin vorgenommen werden und zwar in der Datei../wp-content/plugins/wpshopgermany/controllers/WarenkorbController.class.php

Mehr

Exercise (Part XI) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part XI) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part XI) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

p^db=`oj===pìééçêíáåñçêã~íáçå=

p^db=`oj===pìééçêíáåñçêã~íáçå= p^db=`oj===pìééçêíáåñçêã~íáçå= Error: "Could not connect to the SQL Server Instance" or "Failed to open a connection to the database." When you attempt to launch ACT! by Sage or ACT by Sage Premium for

Mehr

!! Um!in!ADITION!ein!HTML51Werbemittel!anzulegen,!erstellen!Sie!zunächst!ein!neues! Werbemittel!des!Typs!RichMedia.!!!!!!

!! Um!in!ADITION!ein!HTML51Werbemittel!anzulegen,!erstellen!Sie!zunächst!ein!neues! Werbemittel!des!Typs!RichMedia.!!!!!! HTML5&Werbemittel/erstellen/ Stand:/06/2015/ UminADITIONeinHTML51Werbemittelanzulegen,erstellenSiezunächsteinneues WerbemitteldesTypsRichMedia. Hinweis:// DasinADITIONzuhinterlegende RichMedia1Werbemittelbestehtimmer

Mehr

KURZANLEITUNG. Firmware-Upgrade: Wie geht das eigentlich?

KURZANLEITUNG. Firmware-Upgrade: Wie geht das eigentlich? KURZANLEITUNG Firmware-Upgrade: Wie geht das eigentlich? Die Firmware ist eine Software, die auf der IP-Kamera installiert ist und alle Funktionen des Gerätes steuert. Nach dem Firmware-Update stehen Ihnen

Mehr

How-To-Do. Communication to Siemens OPC Server via Ethernet

How-To-Do. Communication to Siemens OPC Server via Ethernet How-To-Do Communication to Siemens OPC Server via Content 1 General... 2 1.1 Information... 2 1.2 Reference... 2 2 Configuration of the PC Station... 3 2.1 Create a new Project... 3 2.2 Insert the PC Station...

Mehr

VPN / IPSec Verbindung mit dem DI 804 HV und dem SSH Sentinel

VPN / IPSec Verbindung mit dem DI 804 HV und dem SSH Sentinel VPN / IPSec Verbindung mit dem DI 804 HV und dem SSH Sentinel Einstellungen des DI 804 HV : Setzen Sie "DDNS" auf "Enabled". Bitte tragen Sie unter "Hostname" Ihren Namen, den Sie bei DynDNS eingerichtet

Mehr

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number.

Magic Figures. We note that in the example magic square the numbers 1 9 are used. All three rows (columns) have equal sum, called the magic number. Magic Figures Introduction: This lesson builds on ideas from Magic Squares. Students are introduced to a wider collection of Magic Figures and consider constraints on the Magic Number associated with such

Mehr

How-To-Do. Hardware Configuration of the CC03 via SIMATIC Manager from Siemens

How-To-Do. Hardware Configuration of the CC03 via SIMATIC Manager from Siemens How-To-Do Hardware Configuration of the CC03 via SIMATIC Manager from Siemens Content Hardware Configuration of the CC03 via SIMATIC Manager from Siemens... 1 1 General... 2 1.1 Information... 2 1.2 Reference...

Mehr

Order Ansicht Inhalt

Order Ansicht Inhalt Order Ansicht Inhalt Order Ansicht... 1 Inhalt... 1 Scope... 2 Orderansicht... 3 Orderelemente... 4 P1_CHANG_CH1... 6 Function: fc_ins_order... 7 Plug In... 8 Quelle:... 8 Anleitung:... 8 Plug In Installation:...

Mehr

TopPlusOpen. Einbindung des Dienstes

TopPlusOpen. Einbindung des Dienstes Einbindung des Dienstes Inhaltsverzeichnis 1 Grundlegendes... 3 1.1 Kurzbeschreibung... 3 1.2 Web-Adressen... 3 2 Einbindung in Geoinformationssysteme... 4 2.1 Einbindung des WM(T)S in QGIS... 4 2.2 Einbindung

Mehr

SharePoint 2010 Mobile Access

SharePoint 2010 Mobile Access Erstellung 23.05.2013 SharePoint 2010 Mobile Access von TIMEWARP IT Consulting GmbH Stephan Nassberger Hofmühlgasse 17/1/5 A-1060 Wien Verantwortlich für das Dokument: - Stephan Nassberger (TIMEWARP) 1

Mehr

Word-CRM-Upload-Button. User manual

Word-CRM-Upload-Button. User manual Word-CRM-Upload-Button User manual Word-CRM-Upload for MS CRM 2011 Content 1. Preface... 3 2. Installation... 4 2.1. Requirements... 4 2.1.1. Clients... 4 2.2. Installation guidelines... 5 2.2.1. Client...

Mehr

p^db=`oj===pìééçêíáåñçêã~íáçå=

p^db=`oj===pìééçêíáåñçêã~íáçå= p^db=`oj===pìééçêíáåñçêã~íáçå= How to Disable User Account Control (UAC) in Windows Vista You are attempting to install or uninstall ACT! when Windows does not allow you access to needed files or folders.

Mehr

Application Note. Import Jinx! Scenes into the DMX-Configurator

Application Note. Import Jinx! Scenes into the DMX-Configurator Application Note Import Jinx! Scenes into the DMX-Configurator Import Jinx! Scenen into the DMX-Configurator 2 The Freeware Jinx! is an user friendly, well understandable software and furthermore equipped

Mehr

1. General information... 2 2. Login... 2 3. Home... 3 4. Current applications... 3

1. General information... 2 2. Login... 2 3. Home... 3 4. Current applications... 3 User Manual for Marketing Authorisation and Lifecycle Management of Medicines Inhalt: User Manual for Marketing Authorisation and Lifecycle Management of Medicines... 1 1. General information... 2 2. Login...

Mehr

BFV Widgets Kurzdokumentation

BFV Widgets Kurzdokumentation BFV Widgets Kurzdokumentation Mit Hilfe eines BFV-Widgets lassen sich die neuesten Ergebnisse und die aktuellen Tabellen des BFV auf der eigenen nicht kommerziellen Webseite mit wenig Aufwand einbeten.

Mehr

{ Light up the Web } Oliver Scheer. Evangelist Microsoft Deutschland

{ Light up the Web } Oliver Scheer. Evangelist Microsoft Deutschland { Light up the Web } Oliver Scheer Evangelist Microsoft Deutschland { Light up the Web } Oliver Scheer Evangelist Microsoft Deutschland Was ist Silverlight? Tools für Silverlight Designer-Developer-Workflow

Mehr

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part II) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part II) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

Der Adapter Z250I / Z270I lässt sich auf folgenden Betriebssystemen installieren:

Der Adapter Z250I / Z270I lässt sich auf folgenden Betriebssystemen installieren: Installationshinweise Z250I / Z270I Adapter IR USB Installation hints Z250I / Z270I Adapter IR USB 06/07 (Laden Sie den Treiber vom WEB, entpacken Sie ihn in ein leeres Verzeichnis und geben Sie dieses

Mehr

SanStore: Kurzanleitung / SanStore: Quick reference guide

SanStore: Kurzanleitung / SanStore: Quick reference guide SanStore Rekorder der Serie MM, MMX, HM und HMX Datenwiedergabe und Backup Datenwiedergabe 1. Drücken Sie die Time Search-Taste auf der Fernbedienung. Hinweis: Falls Sie nach einem Administrator-Passwort

Mehr

Cross-Platform Mobile Apps

Cross-Platform Mobile Apps Cross-Platform Mobile Apps 05. Juni 2013 Martin Wittemann Master of Science (2009) Arbeitet bei 1&1 Internet AG Head of Frameworks & Tooling Tech Lead von qooxdoo Plattformen Java ME 12 % Rest 7 % Android

Mehr

Top Tipp. Ref. 08.05.23 DE. Verwenden externer Dateiinhalte in Disclaimern. (sowie: Verwenden von Images in RTF Disclaimern)

Top Tipp. Ref. 08.05.23 DE. Verwenden externer Dateiinhalte in Disclaimern. (sowie: Verwenden von Images in RTF Disclaimern) in Disclaimern (sowie: Verwenden von Images in RTF Disclaimern) Ref. 08.05.23 DE Exclaimer UK +44 (0) 845 050 2300 DE +49 2421 5919572 sales@exclaimer.de Das Problem Wir möchten in unseren Emails Werbung

Mehr

«Integration in WebSite» HTML-/Javascript-Code-Beispiele

«Integration in WebSite» HTML-/Javascript-Code-Beispiele QuickInfo «Integration in WebSite» HTML-/Javascript-Code-Beispiele Fragen? Ihre Umfrage soll direkt in resp. auf Ihrer WebSite erscheinen? Die Möglichkeiten für eine technische Integration an exakten Stellen

Mehr

Java Tools JDK. IDEs. Downloads. Eclipse. IntelliJ. NetBeans. Java SE 8 Java SE 8 Documentation

Java Tools JDK. IDEs.  Downloads. Eclipse. IntelliJ. NetBeans. Java SE 8 Java SE 8 Documentation Java Tools JDK http://www.oracle.com/technetwork/java/javase/ Downloads IDEs Java SE 8 Java SE 8 Documentation Eclipse http://www.eclipse.org IntelliJ http://www.jetbrains.com/idea/ NetBeans https://netbeans.org/

Mehr

Version/Datum: 1.5 13-Dezember-2006

Version/Datum: 1.5 13-Dezember-2006 TIC Antispam: Limitierung SMTP Inbound Kunde/Projekt: TIC The Internet Company AG Version/Datum: 1.5 13-Dezember-2006 Autor/Autoren: Aldo Britschgi aldo.britschgi@tic.ch i:\products\antispam antivirus\smtp

Mehr

Exercise (Part V) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part V) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part V) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

job and career for women 2015

job and career for women 2015 1. Überschrift 1.1 Überschrift 1.1.1 Überschrift job and career for women 2015 Marketing Toolkit job and career for women Aussteller Marketing Toolkit DE / EN Juni 2015 1 Inhalte Die Karriere- und Weiter-

Mehr

Tube Analyzer LogViewer 2.3

Tube Analyzer LogViewer 2.3 Tube Analyzer LogViewer 2.3 User Manual Stand: 25.9.2015 Seite 1 von 11 Name Company Date Designed by WKS 28.02.2013 1 st Checker 2 nd Checker Version history Version Author Changes Date 1.0 Created 19.06.2015

Mehr

Titelbild1 ANSYS. Customer Portal LogIn

Titelbild1 ANSYS. Customer Portal LogIn Titelbild1 ANSYS Customer Portal LogIn 1 Neuanmeldung Neuanmeldung: Bitte Not yet a member anklicken Adressen-Check Adressdaten eintragen Customer No. ist hier bereits erforderlich HERE - Button Hier nochmal

Mehr

Kurzanleitung um Transponder mit einem scemtec TT Reader und der Software UniDemo zu lesen

Kurzanleitung um Transponder mit einem scemtec TT Reader und der Software UniDemo zu lesen Kurzanleitung um Transponder mit einem scemtec TT Reader und der Software UniDemo zu lesen QuickStart Guide to read a transponder with a scemtec TT reader and software UniDemo Voraussetzung: - PC mit der

Mehr

ONLINE LICENCE GENERATOR

ONLINE LICENCE GENERATOR Index Introduction... 2 Change language of the User Interface... 3 Menubar... 4 Sold Software... 5 Explanations of the choices:... 5 Call of a licence:... 7 Last query step... 9 Call multiple licenses:...

Mehr

NVR Mobile Viewer for iphone/ipad/ipod Touch

NVR Mobile Viewer for iphone/ipad/ipod Touch NVR Mobile Viewer for iphone/ipad/ipod Touch Quick Installation Guide DN-16111 DN-16112 DN16113 2 DN-16111, DN-16112, DN-16113 for Mobile ios Quick Guide Table of Contents Download and Install the App...

Mehr

Readme-USB DIGSI V 4.82

Readme-USB DIGSI V 4.82 DIGSI V 4.82 Sehr geehrter Kunde, der USB-Treiber für SIPROTEC-Geräte erlaubt Ihnen, mit den SIPROTEC Geräten 7SJ80/7SK80 über USB zu kommunizieren. Zur Installation oder Aktualisierung des USB-Treibers

Mehr

Multivariate Tests mit Google Analytics

Multivariate Tests mit Google Analytics Table of Contents 1. Einleitung 2. Ziele festlegen 3. Einrichtung eines Multivariate Tests in Google Analytics 4. Das JavaScript 5. Die Auswertung der Ergebnisse Multivariate Tests mit Google Analytics

Mehr

Eclipse User Interface Guidelines

Eclipse User Interface Guidelines SS 2009 Softwarequalität 06.05.2009 C. M. Bopda, S. Vaupel {kaymic/vaupel84}@mathematik.uni-marburg.de Motivation (Problem) Motivation (Problem) Eclipse is a universal tool platform - an open, extensible

Mehr

JTAGMaps Quick Installation Guide

JTAGMaps Quick Installation Guide Index Index... 1 ENGLISH... 2 Introduction... 2 Requirements... 2 1. Installation... 3 2. Open JTAG Maps... 4 3. Request a free JTAG Maps license... 4 4. Pointing to the license file... 5 5. JTAG Maps

Mehr

vcdm im Wandel Vorstellung des neuen User Interfaces und Austausch zur Funktionalität V

vcdm im Wandel Vorstellung des neuen User Interfaces und Austausch zur Funktionalität V vcdm im Wandel Vorstellung des neuen User Interfaces und Austausch zur Funktionalität V0.1 2018-10-02 Agenda vcdm User Interface History Current state of User Interface User Interface X-mas 2018 Missing

Mehr

Anleitung zur Nutzung der OFML Daten von Cascando in pcon.planner

Anleitung zur Nutzung der OFML Daten von Cascando in pcon.planner Anleitung zur Nutzung der OFML Daten von Cascando in pcon.planner In dieser Anleitung wird die Nutzung von OFML-Daten von Cascando in pcon.planner Schritt für Schritt erläutert. 1. Cascando Produkte in

Mehr

Géoservices - Nouveautés 2012 ou tout ce que l IFDG peut faire pour vous

Géoservices - Nouveautés 2012 ou tout ce que l IFDG peut faire pour vous armasuisse Géoservices - Nouveautés 2012 ou tout ce que l IFDG peut faire pour vous Cédric Moullet You want geodata in your maps? Use the WMTS geoservice! http://youtu.be/hrtpryqutok?t=18s swisstopo web

Mehr

Markus BöhmB Account Technology Architect Microsoft Schweiz GmbH

Markus BöhmB Account Technology Architect Microsoft Schweiz GmbH Markus BöhmB Account Technology Architect Microsoft Schweiz GmbH What is a GEVER??? Office Strategy OXBA How we used SharePoint Geschäft Verwaltung Case Management Manage Dossiers Create and Manage Activities

Mehr

https://portal.microsoftonline.com

https://portal.microsoftonline.com Sie haben nun Office über Office365 bezogen. Ihr Account wird in Kürze in dem Office365 Portal angelegt. Anschließend können Sie, wie unten beschrieben, die Software beziehen. Congratulations, you have

Mehr

Wählen Sie das MySQL Symbol und erstellen Sie eine Datenbank und einen dazugehörigen User.

Wählen Sie das MySQL Symbol und erstellen Sie eine Datenbank und einen dazugehörigen User. 1 English Description on Page 5! German: Viele Dank für den Kauf dieses Produktes. Im nachfolgenden wird ausführlich die Einrichtung des Produktes beschrieben. Für weitere Fragen bitte IM an Hotmausi Congrejo.

Mehr

miditech 4merge 4-fach MIDI Merger mit :

miditech 4merge 4-fach MIDI Merger mit : miditech 4merge 4-fach MIDI Merger mit : 4 x MIDI Input Port, 4 LEDs für MIDI In Signale 1 x MIDI Output Port MIDI USB Port, auch für USB Power Adapter Power LED und LOGO LEDs Hochwertiges Aluminium Gehäuse

Mehr

Installation Guide/ Installationsanleitung. Spring 16 Release

Installation Guide/ Installationsanleitung. Spring 16 Release Guide/ Installationsanleitung Spring 16 Release Visit AppExchange (appexchange.salesforce.com) and go to the CONNECT for XING listing. Login with your Salesforce.com user is required. Click on Get It Now.

Mehr

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL USER GUIDE June 2016

VGM. VGM information. HAMBURG SÜD VGM WEB PORTAL USER GUIDE June 2016 Overview The Hamburg Süd VGM Web portal is an application that enables you to submit VGM information directly to Hamburg Süd via our e-portal Web page. You can choose to enter VGM information directly,

Mehr

Contents. Interaction Flow / Process Flow. Structure Maps. Reference Zone. Wireframes / Mock-Up

Contents. Interaction Flow / Process Flow. Structure Maps. Reference Zone. Wireframes / Mock-Up Contents 5d 5e 5f 5g Interaction Flow / Process Flow Structure Maps Reference Zone Wireframes / Mock-Up 5d Interaction Flow (Frontend, sichtbar) / Process Flow (Backend, nicht sichtbar) Flow Chart: A Flowchart

Mehr

Exercise (Part I) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1

Exercise (Part I) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part I) Notes: The exercise is based on Microsoft Dynamics CRM Online. For all screenshots: Copyright Microsoft Corporation. The sign ## is you personal number to be used in all exercises. All

Mehr

6KRSSLQJDW&DPGHQ/RFN 1LYHDX$

6KRSSLQJDW&DPGHQ/RFN 1LYHDX$ )HUWLJNHLW+ UYHUVWHKHQ 1LYHDX$ Wenn langsam und deutlich gesprochen wird, kann ich kurze Texte und Gespräche aus bekannten Themengebieten verstehen, auch wenn ich nicht alle Wörter kenne. 'HVNULSWRU Ich

Mehr

If you have any issue logging in, please Contact us Haben Sie Probleme bei der Anmeldung, kontaktieren Sie uns bitte 1

If you have any issue logging in, please Contact us Haben Sie Probleme bei der Anmeldung, kontaktieren Sie uns bitte 1 Existing Members Log-in Anmeldung bestehender Mitglieder Enter Email address: E-Mail-Adresse eingeben: Submit Abschicken Enter password: Kennwort eingeben: Remember me on this computer Meine Daten auf

Mehr

English. Deutsch. niwis consulting gmbh (https://www.niwis.com), manual NSEPEM Version 1.0

English. Deutsch. niwis consulting gmbh (https://www.niwis.com), manual NSEPEM Version 1.0 English Deutsch English After a configuration change in the windows registry, you have to restart the service. Requirements: Windows XP, Windows 7, SEP 12.1x With the default settings an event is triggered

Mehr

Hier mal einige Tipps zum Einbau vom "Anfy" Applets. Hier die Seite von "Anfy" und zum Download des Programms: http://www.anfyteam.

Hier mal einige Tipps zum Einbau vom Anfy Applets. Hier die Seite von Anfy und zum Download des Programms: http://www.anfyteam. Hier mal einige Tipps zum Einbau vom "Anfy" Applets. Hier die Seite von "Anfy" und zum Download des Programms: http://www.anfyteam.com/... ich habe "Version 2.1" und zeige hier Bilder und Beschreibungen

Mehr

Ingenics Project Portal

Ingenics Project Portal Version: 00; Status: E Seite: 1/6 This document is drawn to show the functions of the project portal developed by Ingenics AG. To use the portal enter the following URL in your Browser: https://projectportal.ingenics.de

Mehr

Designänderungen mit CSS und jquery

Designänderungen mit CSS und jquery Designänderungen mit CSS und jquery In der epages-administration gibt es in den Menüpunkten "Schnelldesign" und "Erweitertes Design" umfangreiche Möglichkeiten, das Design der Webseite anzupassen. Erfahrene

Mehr

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR

CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR (GERMAN EDITION) BY TIM ROHR READ ONLINE AND DOWNLOAD EBOOK : CNC ZUR STEUERUNG VON WERKZEUGMASCHINEN (GERMAN EDITION) BY TIM ROHR PDF Click button to download this ebook READ ONLINE AND DOWNLOAD CNC ZUR

Mehr

Daten fu r Navigator Mobile (ipad)

Daten fu r Navigator Mobile (ipad) [Kommentare] Inhalte Navigator Mobile für das ipad... 3 Programme und Dateien... 4 Folgende Installationen sind erforderlich:... 4 Es gibt verschiedene Dateiformate.... 4 Die Installationen... 5 Installation

Mehr

J RG IMMENDORFF STANDORT F R KRITIK MALEREI UND INSPIRATION ERSCHEINT ZUR AUSSTELLUNG IM MUSEUM LU

J RG IMMENDORFF STANDORT F R KRITIK MALEREI UND INSPIRATION ERSCHEINT ZUR AUSSTELLUNG IM MUSEUM LU J RG IMMENDORFF STANDORT F R KRITIK MALEREI UND INSPIRATION ERSCHEINT ZUR AUSSTELLUNG IM MUSEUM LU 8 Feb, 2016 JRISFRKMUIEZAIMLAPOM-PDF33-0 File 4,455 KB 96 Page If you want to possess a one-stop search

Mehr

Invitation - Benutzerhandbuch. User Manual. User Manual. I. Deutsch 2. 1. Produktübersicht 2. 1.1. Beschreibung... 2

Invitation - Benutzerhandbuch. User Manual. User Manual. I. Deutsch 2. 1. Produktübersicht 2. 1.1. Beschreibung... 2 Invitation - Inhaltsverzeichnis I. Deutsch 2 1. Produktübersicht 2 1.1. Beschreibung......................................... 2 2. Installation und Konfiguration 2 2.1. Installation...........................................

Mehr

AdOps Technische Spezifikationen

AdOps Technische Spezifikationen AdOps Technische Spezifikationen HTML5-Werbemittel (Desktop) Bei der Verwendung von Redirects müssen diese Spezifikationen nicht beachtet werden. Physische Anlieferung von HTML5-Werbemitteln + Trackings.

Mehr

NETWORK PREMIUM POP UP DISPLAY

NETWORK PREMIUM POP UP DISPLAY Premium Pop Up System seamless graphic precision very compact and versatile pop-up system quick to set up at any location comes in a number of different shapes; straight, curved, wave-shaped, stair formations,

Mehr

How to access licensed products from providers who are already operating productively in. General Information... 2. Shibboleth login...

How to access licensed products from providers who are already operating productively in. General Information... 2. Shibboleth login... Shibboleth Tutorial How to access licensed products from providers who are already operating productively in the SWITCHaai federation. General Information... 2 Shibboleth login... 2 Separate registration

Mehr

Informationen zur Verwendung des TFE-Portals / Information for Using the TFE portal

Informationen zur Verwendung des TFE-Portals / Information for Using the TFE portal Informationen zur Verwendung des TFE-Portals / Information for Using the TFE portal Inhalt / Content Vorraussetzungen für Java Web Start /... 3 Prerequisited for Java-WebStart... 3 Datenempfang /... 3

Mehr

Installation und Start der Software AQ2sp Installation and Start of the software AQ2sp

Installation und Start der Software AQ2sp Installation and Start of the software AQ2sp Installation and Start of the software Abhängig von Ihrer WINDOWS-Version benötigen Sie Administrator-Rechte zur Installation dieser Software. Geeignet für folgende WINDOWS-Versionen: Windows 98 SE Windows

Mehr

STRATEGISCHES BETEILIGUNGSCONTROLLING BEI KOMMUNALEN UNTERNEHMEN DER FFENTLICHE ZWECK ALS RICHTSCHNUR FR EIN ZIELGERICHTETE

STRATEGISCHES BETEILIGUNGSCONTROLLING BEI KOMMUNALEN UNTERNEHMEN DER FFENTLICHE ZWECK ALS RICHTSCHNUR FR EIN ZIELGERICHTETE BETEILIGUNGSCONTROLLING BEI KOMMUNALEN UNTERNEHMEN DER FFENTLICHE ZWECK ALS RICHTSCHNUR FR EIN ZIELGERICHTETE PDF-SBBKUDFZARFEZ41-APOM3 123 Page File Size 5,348 KB 3 Feb, 2002 TABLE OF CONTENT Introduction

Mehr

Klicken Sie auf den Reiter Newsfeed (1) in der oberen Menüleiste und wählen Sie dann links in der schmalen grauen Leiste Neuer Newsfeed (2) aus:

Klicken Sie auf den Reiter Newsfeed (1) in der oberen Menüleiste und wählen Sie dann links in der schmalen grauen Leiste Neuer Newsfeed (2) aus: Seite 1 Wenn Sie daran interessiert sind, aktuelle Informationen über Ihr Unternehmen auf Ihrer Internetpräsenz zu veröffentlichen, ist die Newsfeed-Funktion von meltwater news genau das richtige für Sie.

Mehr

How-To-Do. Hardware Configuration of the CPU 317NET with external CPs on the SPEED Bus by SIMATIC Manager from Siemens

How-To-Do. Hardware Configuration of the CPU 317NET with external CPs on the SPEED Bus by SIMATIC Manager from Siemens How-To-Do Hardware Configuration of the CPU 317NET with external CPs on the SPEED Bus by SIMATIC Manager from Siemens Content Hardware Configuration of the CPU 317NET with external CPs on the SPEED Bus

Mehr

ROOT Tutorial für HEPHY@CERN. D. Liko

ROOT Tutorial für HEPHY@CERN. D. Liko ROOT Tutorial für HEPHY@CERN D. Liko Was ist ROOT? Am CERN entwickeltes Tool zur Analyse von Daten Funktionalität in vielen Bereichen Objekte C++ Skriptsprachen Was kann ROOT Verschiedene Aspekte C++ as

Mehr

EEX Kundeninformation 2007-09-05

EEX Kundeninformation 2007-09-05 EEX Eurex Release 10.0: Dokumentation Windows Server 2003 auf Workstations; Windows Server 2003 Service Pack 2: Information bezüglich Support Sehr geehrte Handelsteilnehmer, Im Rahmen von Eurex Release

Mehr

Creating OpenSocial Gadgets. Bastian Hofmann

Creating OpenSocial Gadgets. Bastian Hofmann Creating OpenSocial Gadgets Bastian Hofmann Agenda Part 1: Theory What is a Gadget? What is OpenSocial? Privacy at VZ-Netzwerke OpenSocial Services OpenSocial without Gadgets - The Rest API Part 2: Practical

Mehr

nettrainment V3.0 - Login via BSH Intranet (One-Click)

nettrainment V3.0 - Login via BSH Intranet (One-Click) Für die deutsche Version bitte auf die Flagge klicken. nettrainment V3.0 - Login via BSH Intranet (One-Click) Introduction Single-Sign-On Service 20. March 2015 Training Europa Competence B S H H A U S

Mehr

TIMERATE AG Tel 044 422 65 15 Falkenstrasse 26 timerate@timerate.ch 8008 Zürich www.timerate.ch. Joomla Templates Kursunterlagen

TIMERATE AG Tel 044 422 65 15 Falkenstrasse 26 timerate@timerate.ch 8008 Zürich www.timerate.ch. Joomla Templates Kursunterlagen TIMERATE AG Tel 044 422 65 15 Falkenstrasse 26 timerate@timerate.ch 8008 Zürich www.timerate.ch Joomla Templates Kursunterlagen Ordnerstruktur in Joomla Inhaltsverzeichnis Ordnerstruktur in Joomla... 3

Mehr

Network premium POP UP Display

Network premium POP UP Display Premium Pop Up System seamless graphic precision very compact and versatile pop-up system quick to set up at any location comes in a number of different shapes; straight, curved, wave-shaped, stair formations,

Mehr

HiOPC Hirschmann Netzmanagement. Anforderungsformular für eine Lizenz. Order form for a license

HiOPC Hirschmann Netzmanagement. Anforderungsformular für eine Lizenz. Order form for a license HiOPC Hirschmann Netzmanagement Anforderungsformular für eine Lizenz Order form for a license Anforderungsformular für eine Lizenz Vielen Dank für Ihr Interesse an HiOPC, dem SNMP/OPC Gateway von Hirschmann

Mehr

Wie man heute die Liebe fürs Leben findet

Wie man heute die Liebe fürs Leben findet Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Click here if your download doesn"t start automatically Wie man heute die Liebe fürs Leben findet Sherrie Schneider Ellen Fein Wie

Mehr

Einführung Responsive Webdesign

Einführung Responsive Webdesign Einführung Responsive Webdesign Aktuelle Situation Desktop Webseiten Umsetzungen auch heute noch in den meisten Fällen Pixelbasiert JavaScript schafft Dynamik CSS schafft Trennung von Inhalt und Layout

Mehr

Karten aktualisieren Don t Panik

Karten aktualisieren Don t Panik Karten aktualisieren Don t Panik 1. Starten Sie Ihr Gerät und schalten Sie das Navigationsprogramm ein. 2. Klicken Sie auf das "Menü": 3. Klicken Sie anschließend auf "Einstellungen": 4. Bewegen Sie den

Mehr

Fast alle pdfs sind betroffen, Lösungsmöglichkeiten siehe Folgeseiten

Fast alle pdfs sind betroffen, Lösungsmöglichkeiten siehe Folgeseiten Fast alle pdfs sind betroffen, Lösungsmöglichkeiten siehe Folgeseiten Acrobat Reader Deutsch Dokumenteigenschaften oder Englisch Document Properties aufrufen mit Strg D oder cmd D Nicht eingebettete Schriften

Mehr

Signatur mit Formatierung

Signatur mit Formatierung Bedienungstip: Signatur mit Formatierung Seite 1 Signatur mit Formatierung Es können Signaturen hinterlegt werden, die beim Erstellen von Nachrichten automatisch angehängt werden. Das ist sehr praktisch,

Mehr

Can I use an older device with a new GSD file? It is always the best to use the latest GSD file since this is downward compatible to older versions.

Can I use an older device with a new GSD file? It is always the best to use the latest GSD file since this is downward compatible to older versions. EUCHNER GmbH + Co. KG Postfach 10 01 52 D-70745 Leinfelden-Echterdingen MGB PROFINET You will require the corresponding GSD file in GSDML format in order to integrate the MGB system: GSDML-Vx.x-EUCHNER-MGB_xxxxxx-YYYYMMDD.xml

Mehr

DataTables LDAP Service usage Guide

DataTables LDAP Service usage Guide DataTables LDAP Service usage Guide DTLDAP Usage Guide thomasktn@me.com / www.ktn.ch Benutzung des DTLDAP Service DataTables Der Service stellt einen JSON Feed für DataTables (http://www.datatables.net)

Mehr

i Korrekturlauf mit Acrobat Reader - Correction workflow using Acrobat Reader i.1 Vorbereitung / Preparations

i Korrekturlauf mit Acrobat Reader - Correction workflow using Acrobat Reader i.1 Vorbereitung / Preparations IPPS UND RICKS KORREKURLAUF MI ACROBA READER - CORRECION WORKFLOW USING ACROBA READER i Korrekturlauf mit Acrobat Reader - Correction workflow using Acrobat Reader i.1 Vorbereitung / Preparations VOREINSELLUNGEN

Mehr

Umstellung eines Outlook Kontos von ActiveSync zu IMAP. Changing an Outlook account from ActiveSync to IMAP

Umstellung eines Outlook Kontos von ActiveSync zu IMAP. Changing an Outlook account from ActiveSync to IMAP Outlook 2013/2016 Umstellung eines Outlook Kontos von ActiveSync zu IMAP Changing an Outlook account from ActiveSync to IMAP 18.04.2018 kim.uni-hohenheim.de kim@uni-hohenheim.de Diese Anleitung beschreibt

Mehr

Erstellen eines HTML-Templates mit externer CSS-Datei

Erstellen eines HTML-Templates mit externer CSS-Datei Erstellen eines HTML-Templates mit externer CSS-Datei Eigenschaften der Lösung Menü mit 2 Ebenen ohne Bilder, Menü besteht aus Text (Links) Durch CSS kann das Menü aber auch die Seite angepasst werden

Mehr

<Insert Picture Here> Application Express: Stand der Dinge und Ausblick auf Version 5.0

<Insert Picture Here> Application Express: Stand der Dinge und Ausblick auf Version 5.0 Application Express: Stand der Dinge und Ausblick auf Version 5.0 Oliver Zandner ORACLE Deutschland B.V. & Co KG Was erwartet Sie in diesem Vortrag? 1. Was ist APEX? Wozu ist es gut?

Mehr

Microsoft PowerPoint Herausgeber BerCom Training GmbH Stationsstrasse Uerikon. Kontakte:

Microsoft PowerPoint Herausgeber BerCom Training GmbH Stationsstrasse Uerikon. Kontakte: Herausgeber BerCom Training GmbH Stationsstrasse 26 8713 Uerikon Kontakte: 079 633 65 75 Autoren: Gabriela Bergantini 1. Auflage von Februar 2012 by BerCom Training GmbH Microsoft PowerPoint 2010 Tips

Mehr

HTML5 & SCC3. PC-Treff-BB VHS Aidlingen. Lothar R. Krukowski. Ein Überblick

HTML5 & SCC3. PC-Treff-BB VHS Aidlingen. Lothar R. Krukowski. Ein Überblick HTML5 & SCC3 Ein Überblick 13.10.201 Agenda Neue Strategie HTML5 CSS3 Besonderheiten Anwendungen Beispiele - ( how to start? ) Literatur Neue Strategie Letzte Version von HTML und CSS HTML5 Erstellen der

Mehr

Webdesign-Multimedia HTML und CSS

Webdesign-Multimedia HTML und CSS Webdesign-Multimedia HTML und CSS Thomas Mohr HTML Definition ˆ HTML (Hypertext Markup Language) ist eine textbasierte Auszeichnungssprache (engl. markup language) zur Strukturierung digitaler Dokumente

Mehr

Ablauf. Redaktions-Schulung. Schulungs Unterlagen. Typo3

Ablauf. Redaktions-Schulung. Schulungs Unterlagen. Typo3 Redaktions-Schulung Verein Netwerk Logistik 7. März 2008 Ralph Zimmermann Ablauf Redaktionssystem Allgemein Login Aufbau von Typo3 Seitenelemente Seitenelemente - Editieren /Hinzufügen Neue Seite anlegen

Mehr

Der transparente Look. Die Struktur, die oben angegeben wurde, ist im Anwendungsdesigner, wie in der nächsten Grafik ersichtlich, abgebildet.

Der transparente Look. Die Struktur, die oben angegeben wurde, ist im Anwendungsdesigner, wie in der nächsten Grafik ersichtlich, abgebildet. Intrapact Layout Allgemeines Das Layout einer Firma wird im Intrapact Manager, und dort im Layout Designer erstellt. Alle Eingaben im Layout Designer dienen dazu um die CSS/ASP Dateien zu generieren, die

Mehr

Introduction to Python. Introduction. First Steps in Python. pseudo random numbers. May 2016

Introduction to Python. Introduction. First Steps in Python. pseudo random numbers. May 2016 to to May 2016 to What is Programming? All computers are stupid. All computers are deterministic. You have to tell the computer what to do. You can tell the computer in any (programming) language) you

Mehr

Titelmasterformat Object Generator durch Klicken bearbeiten

Titelmasterformat Object Generator durch Klicken bearbeiten Titelmasterformat Object Generator durch Klicken bearbeiten How to model 82 screws in 2 minutes By Pierre-Louis Ruffieux 17.11.2014 1 Object Generator The object generator is usefull tool to replicate

Mehr

Es wird das Struts <html:option> Element erläutert und anhand von kleinen Beispielen der Umgang veranschaulicht.

Es wird das Struts <html:option> Element erläutert und anhand von kleinen Beispielen der Umgang veranschaulicht. Struts Code Peaces Element Es wird das Struts Element erläutert und anhand von kleinen Beispielen der Umgang veranschaulicht. Allgemeines Autor: Sascha Wolski Sebastian Hennebrüder

Mehr

DIE NEUORGANISATION IM BEREICH DES SGB II AUSWIRKUNGEN AUF DIE ZUSAMMENARBEIT VON BUND LNDERN UND KOMMUNEN

DIE NEUORGANISATION IM BEREICH DES SGB II AUSWIRKUNGEN AUF DIE ZUSAMMENARBEIT VON BUND LNDERN UND KOMMUNEN DIE NEUORGANISATION IM BEREICH DES SGB II AUSWIRKUNGEN AUF DIE ZUSAMMENARBEIT VON BUND LNDERN UND KOMMUNEN WWOM537-PDFDNIBDSIAADZVBLUK 106 Page File Size 4,077 KB 16 Feb, 2002 COPYRIGHT 2002, ALL RIGHT

Mehr

Einrichten einer mehrsprachigen Webseite mit Joomla (3.3.6)

Einrichten einer mehrsprachigen Webseite mit Joomla (3.3.6) Einrichten einer mehrsprachigen Webseite mit Joomla (3.3.6) 1. Loggen Sie sich im Administratorbereich ein und gehen Sie auf Extension > Extension Manager 2. Wählen Sie Install languages 3. Klicken Sie

Mehr

job and career at HANNOVER MESSE 2015

job and career at HANNOVER MESSE 2015 1. Überschrift 1.1 Überschrift 1.1.1 Überschrift job and career at HANNOVER MESSE 2015 Marketing Toolkit DE / EN 1 Inhalte Smart Careers engineering and technology 1 Logo Seite 3 2 Signatur Seite 4 3 Ankündigungstext

Mehr

Leitfaden für die Erstellung eines individuellen Stundenplans mit UnivIS/ How to make up your individual timetable with UnivIS

Leitfaden für die Erstellung eines individuellen Stundenplans mit UnivIS/ How to make up your individual timetable with UnivIS Leitfaden für die Erstellung eines individuellen Stundenplans mit UnivIS/ How to make up your individual timetable with UnivIS Liebe Austauschstudierende, ab dem Wintersemester (WiSe) 2014/15 finden Sie

Mehr