Handout zur Vorlesung OOC++ am

Größe: px
Ab Seite anzeigen:

Download "Handout zur Vorlesung OOC++ am"

Transkript

1 Handout zur Vorlesung OOC++ am QString (analog zu den Strings aus C++; beherrscht aber z.b. den Unicode-Zeichensatz) int contains(qstring &pattern) - wie oft ist pattern im String enthalten? QString left(int num) - liefert num Character ab Anfang des aktuellen Strings QString right(int num) - liefert num Character vor Ende des aktuellen String int find(char ch) - Position des Characters ch in String const char * QString::latin1() - konvertiert den Inhalt des QStrings in ein char-array (Zeichensatz = Latin1) QFile (File IO) Konstruktor: QFile(const QString & name) - Datei name öffnen bool open(int ioflags) - setzt Dateimodus (Lesen/Schreiben) bool open(int ioflags, int fd) - macht aus einem Filedeskriptor ein Qfile; Lese- bzw. Schreibmodus wird in ioflags angegeben QTextStream (ähnlich zur C++ Stringstream-Klasse; schreiben in (Q)Strings, IODevice, File...) Konstruktor: QTextStream(QIODevice *io) (z.b. QSocket und Qfile sind QIODevices!!) z.b. QTextStream &operator<<(qstring &s)etc. QObject (Basisklasse (fast) aller QT-Klassen) QObject *sender(); Ermitteln des Absenderobjekts eines Signals in einer Qt-Slot-Funktion QApplication (GUI-Eventloop) extern QApplication * qapp; aktuell aktive Application - immer global ansprechbar z.b. für qapp->quit(); Konstruktor: QApplication(int argc,char**argv, bool gui): GUI enabled true/false QListBox (Auswahlmöglichkeit aus einer Liste) QString currenttext(); aktuell markierter Text in der Liste clear(); komplettes Löschen der Liste insertitem(qstring &s); Einfügen eines QStrings in die Liste QListBoxItem *finditem(qstring &s); Liefert einen Zeiger auf ein durch s repräsentiertes Listenelement setcurrentitem(qlistboxitem *l); markiert den durch l repräsentierten Listeneintrag QLineEdit (eine Eingabe/Ausgabezeile) void setreadonly(bool wert); true: nur Textausgabe; false: auch Texteingabe QString text(); liefert den aktuell eingegebenen Text void returnpressed [signal]; tritt auf bei Drücken von RETURN im Textfeld QTextEdit (sehr mächtiger Texteditor, der auch HTML und Richtextformat beherrscht) void setreadonly(bool wert); true: nur Textausgabe; false: auch Texteingabe void settextformat(textformat f); f kann sein: o PlainText: Text wird im Original angezeigt o RichText: HTML und RTF-Tags werden automatisch interpretiert und angezeigt void insert(qstring) - fügt Text an die aktuelle Cursorposition ein Qlabel (Textausgabe oder Bilddarstellung in einem Widget) Konstruktor QLabel(QWidget * parent, const char * name = 0, WFlags f = 0 ) QT-Ergänzung

2 QVBox, QHBox (einfaches vertikales bzw. horizontales Geometrie-Management/Widgetanordnung) QWidget w; QHBox hb(&w); QLabel lb("eingabe:", &hb); QLineEdit le(&hb); hb.adjustsize(); w.adjustsize(); //Größe autom. anpassen! MAP (nicht Qt, sondern C++ STL!) map<typ1, typ2> mymap; map<typ1, typ2>::iterator i;... mymap.erase(i); löscht das durch den Iterator i repräsentierte Element aus der Map mymap Einschub: Wiederholung Client-Server-Kommunikation über ein TCP-IP-Netzwerk (z.b. Internet) die TCP-Kommunikation zwischen 2 Rechnern wird durch 5 Parameter eindeutig festgelegt: o IP-Adresse bzw. Name des Servers (z.b. theseus.mathematik.uni-ulm.de) o IP-Adresse bzw. Name des Client o Protokollfamilie (hier immer TCP - es wäre aber auch z.b.udp möglich) o lokaler Port des Servers - der sollte beim Aufsetzen des Servers eingetragen werden und dann nach aussen bekannt sein: z.b. Port 80 für Webserver o lokaler Port des Clients - wird meist automatisch beim Verbindungsaufbau vergeben die Kommunikation zwischen Client und Server erfolgt bidirektional über sog. Sockets bidirektional: über die Socktes kann sowohl gelesen wie auch geschrieben werden Sockets werden im UNIX/Windows-Bereich durch sog. Filedeskriptoren (kleine Integerzahlen) repräsentiert; "normale" Systemcalls zum Lesen/Schreiben: read() und write() Achtung: die Ports kann nur der SysAdmin vergeben; richtig "freie" Ports finden sich im Bereich bis QSocket (Schreib/Leseverbindung für einen Client über TCP/IP) void connecttohost(qstring &host, int port)- Verbindung zum Zielhost herstellen void connected()[signal] - Signal tritt ein, wenn Verbindung zum Host hergestellt ist bool canreadline() - eine komplette Zeile incl. newline kann gelesen werden QString readline() - komplette Zeile aus der Verbindung auslesen void close() - Verbindung beenden void connectionclosed()[signal] - Signal tritt ein, wenn die Verbindung abbricht void readyread()[signal] - Signal tritt ein, wenn Daten zum Lesen angekommen sind void error(int) [signal] - (Netzwerk-)Fehler(-nummer) void delayedclosefinished()[signal] - Daten werden evtl. erst mit Zeitverzögerung nach einem close() geschrieben. Signal trifft dann ein, wenn alle Daten geschrieben wurden. void setsocket(int sock) - erzeugt ein QSocket-Objekt aus dem Filedeskriptor sock QServerSocket (abstrakte Klasse; erzeugt TCP/IP-Server; Kommunikation geschieht dann via QSocket) QServerSocket(int port) - versucht einen lokalen TCP-Server auf Port port aufzusetzen bool ok()- ist z.b. dann false, wenn auf dem gewünschten Port nicht gehorcht werden kann virtual void newconnection(int sockid)=0; diese Funktion muss überladen werden; sie wird aufgerufen, wenn sich ein Client an den Port anbinden will; socket repräsentiert den Socket-Filedeskriptor für die neue Verbindung; via QSocket socket und dann socket.setsocket(sockid) kann aus dem Filedeskriptor ein QSocket-Objekt für die eigentliche Kommunikation erzeugt werden QT-Ergänzung

3 Einzelheiten zum Kommunikationsserverbeispiel aus der Vorlesung Server: der Server (server.cc) horcht per Default auf Port mit telnet theseus.mathematik.uni-ulm.de kann man ihn auch ohne Qt von überall in der Welt aus ansprechen der Server läuft im Non-Gui-Mode unter Qt: QApplication a(argc, argv, false) der Server interpretiert die folgenden Kommandos: o LIST! - schicke eine Liste aller gerade angemeldeten Teilnehmer; beim Neuanmelden oder Ausscheiden eines Teilnehmers werden die anderen automatisch mit der neuen Liste benachrichtigt o USER!meinname - melde Teilnehmer meinname am Server an o QUIT! - Teilnehmer verläßt den Server wieder o SEND!name!text - sende Text text an Teilnehmer mit Namen name class server : public QServerSocket - Server beruht auf Basisklasse QServerSocket, überlädt und definiert im wesentlichen die rein viruelle Methode newconnection() der Basisklasse; hier wird pro Chatteilnehmer ein QSocket erzeugt Client: der Client (client.cc) bekommt beim Start des Programms als Parameter den Namen des Zielhosts mit, auf dem der Server läuft; gibt man nichts an, wird angenommen, dass der Server auf dem gleichen Rechner wie der Client läuft (localhost) Aufbau des GUIs: class Client : public QVBox Qhbox *hb0 TextEdit - Chat-Anzeige plain Text readonly ListBox für die Anzeige der Teilnehmer; an den markierten Teilnehmer wird der Chat-Text QVbox Qhbox *hb1 Qhbox *hb2 LineEdit: Eingabe des Usernamens LineEdit: Eingabe des Chat-Textes QT-Ergänzung

4 Serverklasse: class server : public QServerSocket Q_OBJECT public: server( int port=port, QObject* mparent=0, const char* name = 0 ) : QServerSocket( port ); virtual void newconnection( int socket ); // called for each client private slots: void slotdeletesocket(); // called after a socket has been closed void slotincomingdata(); // called when data is arriving void lostconnection(); // called when a client closes the connection private: std::map<qstring, QSocket*> user; // user list void senduserlist(qsocket*); // send user list to all clients ; Clientklasse: // Qvbox: all added widgets will be displayed vertically in their insert order class Client : public QVBox Q_OBJECT // provided for own slots public: Client( const QString &host, int port ); ~Client(); private slots: void closeconnection(); // used for closing the socket connection void sendname(); // send username to server and enable textfield void sendtoserver(); // used to send one text line to the server void socketreadyread(); // slot called when server data arrives void socketconnected(); // called, when server connection is established void socketconnectionclosed(); // server closes the connection!! void socketerror( int e ); // network error occurred private: QSocket *socket; // socket connection to server QTextEdit *infotext; // displayed chat text QLineEdit *username; // my user name QLineEdit *inputtext; // input text line for chat QListBox *userlist; // current list of participating users ; QT-Ergänzung

5 Scribble-Beispiel scribble.h #include <QApplication.h> #include <qmenubar.h> #include <qmessagebox.h> #include <qpainter.h> #include <qpixmap.h> #include <qpopupmenu.h> #include <qwidget.h> // menu item's corresponding numbers enum MenuIDs COLOR_MENU_ID_BLACK, COLOR_MENU_ID_RED, COLOR_MENU_ID_BLUE, COLOR_MENU_ID_GREEN, COLOR_MENU_ID_YELLOW ; * A class that lets the user draw with the mouse. The * window knows how to redraw itself. class ScribbleWindow : public QWidget Q_OBJECT // necessary because ScribbleWindow contains slots public: ScribbleWindow(); ~ScribbleWindow(); protected: virtual void mousepressevent( QMouseEvent* );// mouse button pressed virtual void mousemoveevent( QMouseEvent* ); // moved AND button pressed virtual void paintevent( QPaintEvent* ); // widget must be repainted virtual void resizeevent( QResizeEvent* ); // widget was resized private slots: void slotabout(); void slotaboutqt(); void slotcolormenu( int ); private: QPoint _last; QColor _currentcolor; // tell me more about the program // tell me more about Qt // new color has been selected // point where button was pressed // current painting color QPixmap _buffer; // buffer copy of the screen QMenuBar* _menubar; // menu bar :-) QPopupMenu* _filemenu; // menu item filemenu :-) QPopupMenu* _colormenu; //... (read and understand!) QPopupMenu* _helpmenu; //... (read and understand!) ; QT-Ergänzung

6 scribble.cc #include <QApplication.h> #include <qmenubar.h> #include <qmessagebox.h> #include <qpainter.h> #include <qpixmap.h> #include <qpopupmenu.h> #include <qwidget.h> #include "scribble.h" The constructor. Initializes the member variables and the menu * system. ScribbleWindow::ScribbleWindow() _currentcolor = black; // don't blank the window before repainting setbackgroundmode( NoBackground ); /* The next lines build the menu bar. We first create the menus * one by one, then add them to the menu bar. _filemenu = new QPopupMenu; // create a file menu _filemenu->insertitem( "&Quit", QApp, SLOT( quit() ) ); _colormenu = new QPopupMenu; // create a color menu _colormenu->insertitem( "B&lack", COLOR_MENU_ID_BLACK ); _colormenu->insertitem( "&Red", COLOR_MENU_ID_RED ); _colormenu->insertitem( "&Blue", COLOR_MENU_ID_BLUE ); _colormenu->insertitem( "&Green", COLOR_MENU_ID_GREEN ); _colormenu->insertitem( "&Yellow", COLOR_MENU_ID_YELLOW ); QObject::connect( _colormenu, SIGNAL( activated( int ) ), this, SLOT( slotcolormenu( int ) ) ); _helpmenu = new QPopupMenu; // create a help menu _helpmenu->insertitem( "&About QtScribble", this, SLOT( slotabout() ) ); _helpmenu->insertitem( "About &Qt", this, SLOT( slotaboutqt() ) ); _menubar = new QMenuBar( this ); // create a menu bar _menubar->insertitem( "&File", _filemenu ); _menubar->insertitem( "&Color", _colormenu ); _menubar->insertseparator(); _menubar->insertitem( "&Help", _helpmenu ); * The destructor. Does nothing for now. ScribbleWindow::~ScribbleWindow() * This virtual method is called whenever the user presses the * mouse over the window. It just records the position of the mouse * at the time of the click. void ScribbleWindow::mousePressEvent( QMouseEvent* event ) _last = event->pos(); // retrieve the coordinates from the event * This virtual method is called whenever the user moves the mouse * while the mouse button is pressed (this is also known as * "dragging"). If we had called setmousetracking( true ) before, QT-Ergänzung

7 * this method would also be called when the mouse was moved without * any button pressed. We know that we haven't, and thus don't have * to check whether any buttons are pressed. void ScribbleWindow::mouseMoveEvent( QMouseEvent* event ) // create a QPainter object for drawing onto the window QPainter windowpainter; // and another QPainter object for drawing into an off-screen pixmap QPainter bufferpainter; // start painting windowpainter.begin( this ); // this painter paints onto the window bufferpainter.begin( &_buffer ); // and this one in the buffer // set a standard pen with the currently selected color windowpainter.setpen( _currentcolor ); bufferpainter.setpen( _currentcolor ); // draw a line in both the window and the buffer windowpainter.drawline( _last, event->pos() ); bufferpainter.drawline( _last, event->pos() ); // done with painting windowpainter.end(); bufferpainter.end(); // remember the current mouse position _last = event->pos(); * This virtual method is called whenever the widget needs * painting, such as when it has been obscured and then revealed again. void ScribbleWindow::paintEvent( QPaintEvent* event ) // copy the image from the buffer pixmap to the window bitblt( this, 0, 0, &_buffer ); * This virtual method is called whenever the window is resized. We * use it to make sure that the off-screen buffer is always the same * size as the window. * In order to retain the original drawing, it is first copied * to a temporary buffer. After the main buffer has been resized and * filled with white, the image is copied from the temporary buffer to * the main buffer. void ScribbleWindow::resizeEvent( QResizeEvent* event ) QPixmap save( _buffer ); _buffer.resize( event->size() ); _buffer.fill( white ); bitblt( &_buffer, 0, 0, &save ); void ScribbleWindow::slotAbout() QMessageBox::information( this, "About QtScribble 2", "This is the QtScribble 2 application\n" QT-Ergänzung

8 "Copyright by Matthias Kalle Dalheimer\n" "slightly adepted by Matthias Grabert\n" ); void ScribbleWindow::slotAboutQt() QMessageBox::aboutQt( this, "About Qt" ); void ScribbleWindow::slotColorMenu( int item ) switch( item ) case COLOR_MENU_ID_BLACK: _currentcolor = black; case COLOR_MENU_ID_RED: _currentcolor = red; case COLOR_MENU_ID_BLUE: _currentcolor = blue; case COLOR_MENU_ID_GREEN: _currentcolor = green; case COLOR_MENU_ID_YELLOW: _currentcolor = yellow; int main( int argc, char* argv[] ) QApplication myapp( argc, argv ); ScribbleWindow* mywidget = new ScribbleWindow(); mywidget->setgeometry( 50, 50, 400, 400 ); myapp.setmainwidget( mywidget ); mywidget->show(); return myapp.exec(); QT-Ergänzung

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

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-Portal is an application which enables to submit VGM information directly to Hamburg Süd via our e-portal web page. You can choose to insert VGM information directly, or download

Mehr

Cameraserver mini. commissioning. Ihre Vision ist unsere Aufgabe

Cameraserver mini. commissioning. Ihre Vision ist unsere Aufgabe Cameraserver mini commissioning Page 1 Cameraserver - commissioning Contents 1. Plug IN... 3 2. Turn ON... 3 3. Network configuration... 4 4. Client-Installation... 6 4.1 Desktop Client... 6 4.2 Silverlight

Mehr

Quick manual: iphone_vpn

Quick manual: iphone_vpn Quick manual: iphone_vpn Rechenzentrum Garching der Max-Planck-Gesellschaft Klicken Sie auf den runden Knopf und wählen Sie anschließend im Menü Einstellungen aus. Click onto the round button and then

Mehr

Als erstes definiere ich einen Datentyp für einen Zeiger auf eine Funktion, die ein Element der Menge bearbeiten kann:

Als erstes definiere ich einen Datentyp für einen Zeiger auf eine Funktion, die ein Element der Menge bearbeiten kann: Dokumentation Die Implementation auf Basis eines Iterators 1.Art widerspricht etwas meinem bisherigen Design, weil ich in Konflikt mit den STL-Iteratoren komme. Da aber bereits feststeht, dass das Praktikum

Mehr

Programmier-Befehle - Woche 10

Programmier-Befehle - Woche 10 Funktionen Rekursion Selbstaufruf einer Funktion Jeder rekursive Funktionsaufruf hat seine eigenen, unabhängigen Variablen und Argumente. Dies kann man sich sehr gut anhand des in der Vorlesung gezeigten

Mehr

Weather forecast in Accra

Weather forecast in Accra Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature in Fahrenheit Temperature in Celsius 2 Converting Celsius to Fahrenheit f = 9 5 c + 32 tempc = 21

Mehr

Einführung in die Informatik und Programmierung (Informatik I)

Einführung in die Informatik und Programmierung (Informatik I) BERGISCHE UNIVERSITÄT GESAMTHOCHSCHULE WUPPERTAL GAUSS-STRASSE 20 42097 WUPPERTAL (Korrespondenzanschrift) 42119 WUPPERTAL (Lieferanschrift) TELEX 8 592 262 bughw TELEFAX (0202) 439-2901 TELEFON (0202)

Mehr

Quick Guide Home Network Mode

Quick Guide Home Network Mode Quick Guide Home Network Mode English > 1 German > 3 About the Home Network Mode EN Tivizen Nano & iplug normally work on their own created networks (whose SSID starts with tivizentv or iplug ) in which

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

Interaktive Simulationen Lektion 3/3: Grafische Ausgabe

Interaktive Simulationen Lektion 3/3: Grafische Ausgabe MÜNSTER Interaktive Simulationen Lektion 3/3: Grafische Ausgabe Prof. Dr. Christian Engwer & Andreas Buhr 30. April 2014 Was ist ein Widget? MÜNSTER Interaktive Simulationen 2 /24 Ein QWidget ist ein QObject

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

Objektorientierte Programmierung mit C++ (WS 2010)

Objektorientierte Programmierung mit C++ (WS 2010) Objektorientierte Programmierung mit C++ (WS 2010) Dr. Andreas F. Borchert, Tobias Brosch Institut für Angewandte Informationsverarbeitung Universität Ulm Blatt 11: Abgabetermin 19. Januar 2011 11 Uhr

Mehr

Accelerating Information Technology Innovation

Accelerating Information Technology Innovation Accelerating Information Technology Innovation http://aiti.mit.edu Ghana Summer 2011 Lecture 05 Functions Weather forecast in Accra Thursday Friday Saturday Sunday 30 C 31 C 29 C 28 C f = 9 5 c + 32 Temperature

Mehr

Programmier-Befehle - Woche 08

Programmier-Befehle - Woche 08 Datentypen Vektoren (mehrdim.) eines bestimmten Typs Erfordert: #include Wichtige Befehle: Definition: std::vector my vec (n rows, std::vector(n cols, init value)) Zugriff:

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

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

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

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

Einführung in die Programmierung GUI Programmierung Teil 3

Einführung in die Programmierung GUI Programmierung Teil 3 Einführung in die Programmierung GUI Programmierung Teil 3 30.01.2014 Jan Quadflieg & Andreas Thom Technische Universität Dortmund Lehrstuhl 11 - Algorithm Engineering Jan Quadflieg & Andreas Thom Einführung

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

Informatik für Mathematiker und Physiker Woche 7. David Sommer

Informatik für Mathematiker und Physiker Woche 7. David Sommer Informatik für Mathematiker und Physiker Woche 7 David Sommer David Sommer 30. Oktober 2018 1 Heute: 1. Repetition Floats 2. References 3. Vectors 4. Characters David Sommer 30. Oktober 2018 2 Übungen

Mehr

PeakTech Zeitprogramm erstellen über Excel - Beispiel / Timed programs with Excel Example

PeakTech Zeitprogramm erstellen über Excel - Beispiel / Timed programs with Excel Example PeakTech 6180 Zeitprogramm erstellen über Excel - Beispiel / Timed programs with Excel Example 1. Excel Datei erstellen / Create Excel file Öffnen Sie Excel und erstellen eine xls-datei unter einem beliebigen

Mehr

C++ Kurs Teil 3. Standard Template Library (STL) Kommunikation mit der shell Hyper Text Markup Language (HTML)

C++ Kurs Teil 3. Standard Template Library (STL) Kommunikation mit der shell Hyper Text Markup Language (HTML) C++ Kurs Teil 3 Standard Template Library (STL) Übersicht vector algorithm: sort, for_each map Kommunikation mit der shell Hyper Text Markup Language (HTML) O. Ronneberger: C++ Kurs Teil 3 Seite 1

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

FEBE Die Frontend-Backend-Lösung für Excel

FEBE Die Frontend-Backend-Lösung für Excel FEBE Die Frontend--Lösung für FEBE Die Frontend--Lösung für FEBE.pptx 8.04.206 0:43 FEBE Die Frontend--Lösung für Nutzer A alle_aufträge neuer_auftrag Auftragsänderung Nutzer B alle_aufträge neuer_auftrag

Mehr

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

Exercise (Part VIII) Anastasia Mochalova, Lehrstuhl für ABWL und Wirtschaftsinformatik, Kath. Universität Eichstätt-Ingolstadt 1 Exercise (Part VIII) 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.

Mehr

Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition)

Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition) Funktion der Mindestreserve im Bezug auf die Schlüsselzinssätze der EZB (German Edition) Philipp Heckele Click here if your download doesn"t start automatically Download and Read Free Online Funktion

Mehr

Materialien zu unseren Lehrwerken

Materialien zu unseren Lehrwerken Word order Word order is important in English. The word order for subjects, verbs and objects is normally fixed. The word order for adverbial and prepositional phrases is more flexible, but their position

Mehr

d:\c++\semesterarbeit\lottosix\lottosix.cpp /* ======================================================================== Dateiname: lottosix.

d:\c++\semesterarbeit\lottosix\lottosix.cpp /* ======================================================================== Dateiname: lottosix. /* ======================================================================== Dateiname: lottosix.cpp 1 Zweck: Semesterarbeit ============== Erstellt ein QWidget in welchem Lottozahlen gezogen und verglichen

Mehr

Guidance Notes for the eservice 'Marketing Authorisation & Lifecycle Management of Medicines' Contents

Guidance Notes for the eservice 'Marketing Authorisation & Lifecycle Management of Medicines' Contents Guidance Notes for the eservice 'Marketing Authorisation & Lifecycle Management of Medicines' Contents Login... 2 No active procedure at the moment... 3 'Active' procedure... 4 New communication (procedure

Mehr

Customer Support Info PP 80x

Customer Support Info PP 80x Driver Installation Open: Control Panel\Hardware and Sound\Devices and Printers Windows Treiber Installation Öffnen Ordner: Geräte und Drucker Add printer Drucker hinzufügen Add a local printer Choose

Mehr

Informatik - Übungsstunde

Informatik - Übungsstunde Informatik - Übungsstunde Jonas Lauener (jlauener@student.ethz.ch) ETH Zürich Woche 08-25.04.2018 Lernziele const: Reference const: Pointer vector: iterator using Jonas Lauener (ETH Zürich) Informatik

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

DIBELS TM. German Translations of Administration Directions

DIBELS TM. German Translations of Administration Directions DIBELS TM German Translations of Administration Directions Note: These translations can be used with students having limited English proficiency and who would be able to understand the DIBELS tasks better

Mehr

SAMPLE EXAMINATION BOOKLET

SAMPLE EXAMINATION BOOKLET S SAMPLE EXAMINATION BOOKLET New Zealand Scholarship German Time allowed: Three hours Total marks: 24 EXAMINATION BOOKLET Question ONE TWO Mark There are three questions. You should answer Question One

Mehr

Session 1: Classes and Applets

Session 1: Classes and Applets Session 1: Classes and Applets Literature Sprechen Sie Java, ISBN 3-89864-117-1, dpunkt deutsch Java für Studenten, ISBN 3-8273-7045-0, PearsonStudium deutsch Java in a Nutshell, ISBN: 0-59600-283-1, O'Reilly

Mehr

SETUP TOOL. Bedienungsanleitung User s Manual

SETUP TOOL. Bedienungsanleitung User s Manual Bedienungsanleitung User s Manual Bitte lesen Sie diese Anleitung vor der Inbetriebnahme sorgfältig durch Please read the instructions carefully before use 1. Eigenschaften Das Setup Tool ist ein speziell

Mehr

NTP Synchronisierung NTP Synchronizer

NTP Synchronisierung NTP Synchronizer Q-App: NTP Synchronisierung NTP Synchronizer Q-App zur automatischen Datums und Zeitsynchronisierung Q-App for automatic date and time synchronization Beschreibung Der Workflow hat 2 Ebenen eine Administratoren-

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

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

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

Unified-E Standard WebHttp Adapter

Unified-E Standard WebHttp Adapter Unified-E Standard WebHttp Adapter Version: 1.5.0.2 und höher Juli 2017 Inhalt 1 Allgemeines... 2 2 Adapter-Parameter in Unified-E... 2 3 Symbolische Adressierung... 3 3.1 ReadValues-Methode... 4 3.2 WriteValues

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

Softwareupdate-Anleitung // Porty L 600 / Porty L 1200

Softwareupdate-Anleitung // Porty L 600 / Porty L 1200 Softwareupdate-Anleitung // Porty L 600 / Porty L 1200 1 Softwareupdate-Anleitung // Porty L 600 / Porty L 1200 HENSEL-VISIT GmbH & Co. KG Robert-Bunsen-Str. 3 D-97076 Würzburg-Lengfeld GERMANY Tel./Phone:

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

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

Motivation. Einfu hrung in die Programmierung GUI Programmierung Teil 2. Problemstellungen. Problemstellungen Jan Quadflieg & Andreas Thom

Motivation. Einfu hrung in die Programmierung GUI Programmierung Teil 2. Problemstellungen. Problemstellungen Jan Quadflieg & Andreas Thom Motivation Motivation II Motivation I Motivation I Einfu hrung in die Programmierung GUI Programmierung Teil 2 26.01.2012 SDSS LSST telescopes Images Spectra Images Spectra Sloan Digital Sky Survey (SDSS):

Mehr

Informatik 1 Kurzprüfung 2 LÖSUNG

Informatik 1 Kurzprüfung 2 LÖSUNG Informatik 1 Kurzprüfung 2 LÖSUNG Herbstsemester 2013 Dr. Feli Friedrich 4.12.2013 Name, Vorname:............................................................................ Legi-Nummer:..............................................................................

Mehr

Dexatek's Alexa Smart Home Skills Instruction Guide

Dexatek's Alexa Smart Home Skills Instruction Guide Dexatek's Alexa Smart Home Skills Instruction Guide Version 0.3 Author Esther Date 01/10/18 ~ 1 ~ Revision History Version Date Editor Remark 0.1 2017/04/05 Esther Initial version 0.2 2018/01/09 Esther

Mehr

Level 1 German, 2016

Level 1 German, 2016 90886 908860 1SUPERVISOR S Level 1 German, 2016 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 2.00 p.m. Wednesday 23 November 2016 Credits: Five Achievement

Mehr

Level 2 German, 2013

Level 2 German, 2013 91126 911260 2SUPERVISOR S Level 2 German, 2013 91126 Demonstrate understanding of a variety of written and / or visual German text(s) on familiar matters 9.30 am Monday 11 November 2013 Credits: Five

Mehr

Übungsstunde: Informatik 1 D-MAVT

Übungsstunde: Informatik 1 D-MAVT Übungsstunde: Informatik 1 D-MAVT Daniel Bogado Duffner Übungsslides unter: n.ethz.ch/~bodaniel Bei Fragen: bodaniel@student.ethz.ch Daniel Bogado Duffner 25.04.2018 1 Ablauf Self-Assessment Pointer Iterators

Mehr

~10 RESET 3.3V 5V GND GND VIN

~10 RESET 3.3V 5V GND GND VIN Abgabe Dieses Übungsblatt ist bis Freitag, 09.05. um 12:00 per E-Mail an den eigenen Tutoren abzugeben. Bennennung beispielsweise $Matrikelnummer_Abgabe_$Blattnummer.$Format. 1 Automatische Ampelsteuerung

Mehr

Installation und Einrichtung unter Windows 7/8/10. Installation and configuration for Windows 7/8/10

Installation und Einrichtung unter Windows 7/8/10. Installation and configuration for Windows 7/8/10 AFS-Client Installation und Einrichtung unter Windows 7/8/10 Installation and configuration for Windows 7/8/10 18.04.2018 kim.uni-hohenheim.de kim@uni-hohenheim.de Bitte sowohl diese Anleitung als auch

Mehr

How-To-Do. OPC-Server with MPI and ISO over TCP/IP Communication. Content. How-To-Do OPC-Server with MPI- und ISO over TCP/IP Communication

How-To-Do. OPC-Server with MPI and ISO over TCP/IP Communication. Content. How-To-Do OPC-Server with MPI- und ISO over TCP/IP Communication How-To-Do OPC-Server with MPI and ISO over TCP/IP Content OPC-Server with MPI and ISO over TCP/IP... 1 1 General... 2 1.1 Information... 2 1.2 Reference... 2 2 Procedure for the Setup of the OPC Server...

Mehr

Level 1 German, 2014

Level 1 German, 2014 90886 908860 1SUPERVISOR S Level 1 German, 2014 90886 Demonstrate understanding of a variety of German texts on areas of most immediate relevance 9.30 am Wednesday 26 November 2014 Credits: Five Achievement

Mehr

Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition)

Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes-Benz Click here if your download doesn"t start automatically Mercedes OM 636: Handbuch und Ersatzteilkatalog (German Edition) Mercedes-Benz

Mehr

User Manual BB-anywhere

User Manual BB-anywhere User Manual BB-anywhere LOGIN PROCEDURE 1. Click the Start button, choose All Programs (right above the search box) and select BB-ANYWHERE from the Start menu: BB-anywhere in a nutshell Regardless whether

Mehr

Fortgeschrittene Kapitel: Grafische Ausgabe mit C++ Karl Gmeiner

Fortgeschrittene Kapitel: Grafische Ausgabe mit C++ Karl Gmeiner Fortgeschrittene Kapitel: Grafische Ausgabe mit C++ Karl Gmeiner 2015 1 Software-Frameworks am Beispiel von Qt 1.1 Software-Frameworks Software-Frameworks stellen Datenstrukturen, Algorithmen, Entwurfsmuster

Mehr

Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise. Click here if your download doesn"t start automatically

Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise. Click here if your download doesnt start automatically Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise Click here if your download doesn"t start automatically Wer bin ich - und wenn ja wie viele?: Eine philosophische Reise Wer bin ich - und

Mehr

Informatik II. Giuseppe Accaputo, Felix Friedrich, Patrick Gruntz, Tobias Klenze, Max Rossmannek, David Sidler, Thilo Weghorn FS 2017

Informatik II. Giuseppe Accaputo, Felix Friedrich, Patrick Gruntz, Tobias Klenze, Max Rossmannek, David Sidler, Thilo Weghorn FS 2017 1 Informatik II Übung 6 Giuseppe Accaputo, Felix Friedrich, Patrick Gruntz, Tobias Klenze, Max Rossmannek, David Sidler, Thilo Weghorn FS 2017 Heutiges Programm 2 1 Klassen - Technisch 2 Prediscussion

Mehr

Benutzerhandbuch / User s Manual RUPS 2000 / -B1

Benutzerhandbuch / User s Manual RUPS 2000 / -B1 RUPS 2000 / RUPS 2000-B1 Benutzerhandbuch / User s Manual RUPS 2000 / -B1 Deutsch English Benutzerhandbuch RUPS 2000 / RUPS 2000-B1 Deutsch In diesem Benutzerhandbuch finden Sie eine Kurzanleitung zu Installation

Mehr

yasxtouch Firmware Update

yasxtouch Firmware Update Inhaltsverzeichnis /Content Inhalt Inhaltsverzeichnis /Content... 1 1. Funktionsweise / Functionality... 2 2. Speichern der Einstellungen / Backup Settings... 2 2.1 Anmelden am Serveradmin / Login Serveradmin...

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

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

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

Gamperl & Hatlapa GmbH Modem/WiFi settings

Gamperl & Hatlapa GmbH Modem/WiFi settings 1. Log in - Anmelden Pic001 device front / Gerätevorderseite Pic002 Login screen / Anmeldebildschirm Connect your computer to one of the Ethernetports on the front (Pic001) of the modem. Start your browser

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

The process runs automatically and the user is guided through it. Data acquisition and the evaluation are done automatically.

The process runs automatically and the user is guided through it. Data acquisition and the evaluation are done automatically. Q-App: UserCal Advanced Benutzerdefinierte Kalibrierroutine mit Auswertung über HTML (Q-Web) User defined calibration routine with evaluation over HTML (Q-Web) Beschreibung Der Workflow hat 2 Ebenen eine

Mehr

Level 2 German, 2016

Level 2 German, 2016 91126 911260 2SUPERVISOR S Level 2 German, 2016 91126 Demonstrate understanding of a variety of written and / or visual German texts on familiar matters 2.00 p.m. Tuesday 29 November 2016 Credits: Five

Mehr

Was ist QT? Beispiele: KDE Google Earth Mathematika

Was ist QT? Beispiele: KDE Google Earth Mathematika Einführung in QT Was ist QT? QT ist eine Klassenbibliothek für plattformübergreifende Programmierung graphischer Benutzeroberflächen QT ist für verschiedene Graphikplattformen wie X11 (Unix), Windows,

Mehr

Motivation. Einführung in die Programmierung GUI Programmierung Teil 3. Problemstellungen. Problemstellungen

Motivation. Einführung in die Programmierung GUI Programmierung Teil 3. Problemstellungen. Problemstellungen Einführung in die Programmierung GUI Programmierung Teil 3 30.01.2014 Motivation Motivation II Motivation I Jan Quadflieg & Andreas Thom SDSS and LSST telescopes Images and and Spectra Technische Universität

Mehr

PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB

PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB Read Online and Download Ebook PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: ENGLISCH LERNEN MIT JUSTUS, PETER UND BOB DOWNLOAD EBOOK : PONS DIE DREI??? FRAGEZEICHEN, ARCTIC ADVENTURE: Click link bellow

Mehr

Algorithmen und Datenstrukturen Musterlösung 5

Algorithmen und Datenstrukturen Musterlösung 5 Algorithmen und Datenstrukturen Musterlösung 5 Martin Avanzini Thomas Bauereiß Herbert Jordan René Thiemann

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

VPN-Client Apple macos El Capitan (10.11)

VPN-Client Apple macos El Capitan (10.11) VPN-Client Apple macos El Capitan (10.11) Konfiguration und Installation des internen VPN-Clients und Cisco AnyConnect VPN-Clients Configuring and installing the internal VPN client and Cisco AnyConnect

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

Konfiguration von eduroam. Configuring eduroam

Konfiguration von eduroam. Configuring eduroam eduroam Windows 8.1 / 10 Konfiguration von eduroam Configuring eduroam 08.10.2018 kim.uni-hohenheim.de kim@uni-hohenheim.de Wissenschaftliche Einrichtungen und Universitäten bieten einen weltweiten Internetzugang

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

VPN-Client Apple macos El Capitan (10.11)

VPN-Client Apple macos El Capitan (10.11) VPN-Client Apple macos El Capitan (10.11) Konfiguration und Installation des internen VPN-Clients und Cisco AnyConnect VPN-Clients Configuring and installing the internal VPN client and Cisco AnyConnect

Mehr

Kapitel zu bearbeitende Aufgaben: 6.1 bis :

Kapitel zu bearbeitende Aufgaben: 6.1 bis : Kapitel 6.3.1 1. zu bearbeitende Aufgaben: 6.1 bis 6.5 6.1: 6.2: === Day 23 === 9: pause 10: 11: 12: 13: lunch 14: 15: 16: 17: meeting 6.3: 6.4: PRG1_OOP8_ALG3_SS.docx Seite 1 von 10 http://hslu.ximit.ch

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

Handbuch der therapeutischen Seelsorge: Die Seelsorge-Praxis / Gesprächsführung in der Seelsorge (German Edition)

Handbuch der therapeutischen Seelsorge: Die Seelsorge-Praxis / Gesprächsführung in der Seelsorge (German Edition) Handbuch der therapeutischen Seelsorge: Die Seelsorge-Praxis / Gesprächsführung in der Seelsorge (German Edition) Reinhold Ruthe Click here if your download doesn"t start automatically Handbuch der therapeutischen

Mehr

Grundlagen MATLAB. Vorlesung Batteriemodellierung mit MATLAB

Grundlagen MATLAB.  Vorlesung Batteriemodellierung mit MATLAB Vorlesung Batteriemodellierung mit MATLAB Grundlagen MATLAB KIT Universität des Landes Baden-Württemberg und nationales Forschungszentrum in der Helmholtz-Gemeinschaft Batteriemodellierung mit MATLAB Vorlesung

Mehr

Visuelle Kryptographie. Anwendung von Zufallszahlen

Visuelle Kryptographie. Anwendung von Zufallszahlen Visuelle Kryptographie Anwendung von Zufallszahlen Verschlüsseln eines Bildes Wir wollen ein Bild an Alice und Bob schicken, so dass Verschlüsseln eines Bildes Wir wollen ein Bild an Alice und Bob schicken,

Mehr

Programmier-Befehle - Woche 09

Programmier-Befehle - Woche 09 Zeiger und Iteratoren Zeiger (generell) Adresse eines Objekts im Speicher Wichtige Befehle: Definition: int* ptr = address of type int; (ohne Startwert: int* ptr = 0;) Zugriff auf Zeiger: ptr = otr ptr

Mehr

Configuring and installing the Cisco AnyConnect VPN client

Configuring and installing the Cisco AnyConnect VPN client VPN-Client Linux Konfiguration und Installation des Cisco-AnyConnect VPN-Clients Configuring and installing the Cisco AnyConnect VPN client 17. Juli 2017 kim.uni hohenheim.de kim@uni hohenheim.de Über

Mehr

Beschreibung zum Übergangsstück 2spur auf 1spur (V13KDH10087)

Beschreibung zum Übergangsstück 2spur auf 1spur (V13KDH10087) Beschreibung zum Übergangsstück 2spur auf 1spur (V13KDH10087) Einsatzgebiet: Dieses Gleisobjekt dient dazu, auf einfache Art und Weise den Übergang von einer alten 2spurigen Straße auf das neuere Einwegsystem

Mehr

Dynamische Datentypen. Destruktor, Copy-Konstruktor, Zuweisungsoperator, Dynamischer Datentyp, Vektoren

Dynamische Datentypen. Destruktor, Copy-Konstruktor, Zuweisungsoperator, Dynamischer Datentyp, Vektoren Dynamische Datentypen Destruktor, Copy-Konstruktor, Zuweisungsoperator, Dynamischer Datentyp, Vektoren Probleme mit Feldern (variabler Länge) man kann sie nicht direkt kopieren und zuweisen Probleme mit

Mehr

NotesSession.GetPropertyBroker( )

NotesSession.GetPropertyBroker( ) Bestandteile von CA Laufen im Rich Client (Notes oder Expeditor) oder via Portal Server im Browser NSF-Komponenten sind Notes-Designelemente Eclipse Komponenten sind Eclipse ViewParts lokale oder Websphere

Mehr

Anleitung Händlerbewerbung und File-Exchange- Server. Instruction How To Become a Dealer and File-Exchange-Server

Anleitung Händlerbewerbung und File-Exchange- Server. Instruction How To Become a Dealer and File-Exchange-Server Anleitung Händlerbewerbung und File-Exchange- Server Instruction How To Become a Dealer and File-Exchange-Server Sie möchten Händler bei TurboPerformance werden oder einfach nur den TurboPerformance-File-Server

Mehr

Installation/setup notes

Installation/setup notes Installation/setup notes Notes applicable for the software: stute.x1d Loudspeaker Designer stute.x1a Audio Analyzer stute.scpi SCPI controller DCX.Server Install/Test our software for free (Demo) Download

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

Android APP NVR Viewer

Android APP NVR Viewer Android APP NVR Viewer User Manual DN-16111 DN-16112 DN16113 2 DN-16111, DN-16112, DN-16113 for Android User Manual Table of Contents Download the APP... 3 Running the app - Add NVR... 3 Running the app

Mehr

Verschlüsseln eines Bildes. Visuelle Kryptographie. Verschlüsseln eines Bildes. Verschlüsseln eines Bildes

Verschlüsseln eines Bildes. Visuelle Kryptographie. Verschlüsseln eines Bildes. Verschlüsseln eines Bildes Verschlüsseln eines Bildes Visuelle Kryptographie Anwendung von Zufallszahlen Wir wollen ein Bild an Alice und Bob schicken, so dass Alice allein keine Information über das Bild bekommt Bob allein keine

Mehr

DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS

DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS Read Online and Download Ebook DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE SONDERAUSGABE BY LISA MOOS DOWNLOAD EBOOK : DAS ERSTE MAL UND IMMER WIEDER. ERWEITERTE Click link bellow and free register to download

Mehr

DAS ZUFRIEDENE GEHIRN: FREI VON DEPRESSIONEN, TRAUMATA, ADHS, SUCHT UND ANGST. MIT DER BRAIN-STATE-TECHNOLOGIE DAS LEBEN AUSBALANCIEREN (GE

DAS ZUFRIEDENE GEHIRN: FREI VON DEPRESSIONEN, TRAUMATA, ADHS, SUCHT UND ANGST. MIT DER BRAIN-STATE-TECHNOLOGIE DAS LEBEN AUSBALANCIEREN (GE DAS ZUFRIEDENE GEHIRN: FREI VON DEPRESSIONEN, TRAUMATA, ADHS, SUCHT UND ANGST. MIT DER BRAIN-STATE-TECHNOLOGIE DAS LEBEN AUSBALANCIEREN (GE READ ONLINE AND DOWNLOAD EBOOK : DAS ZUFRIEDENE GEHIRN: FREI

Mehr

Bedienungsanleitung / Manual für il-debug_i Interface für den Debugger il_debug

Bedienungsanleitung / Manual für il-debug_i Interface für den Debugger il_debug Bedienungsanleitung / Manual für il-debug_i Interface für den Debugger il_debug Ing.Büro Stefan Lehmann Fürstenbergstraße 8a D-77756 Hausach Tel. (07831) 452 Fax (07831) 96428 E-Mail SL@iL-online.de Internet

Mehr