I A Form és a párbeszédablakok I.1. MessageBox osztály MessageBox.Show(szöveg[,cím[,gombok[,ikon[,defaultbutton]]]]);

Size: px
Start display at page:

Download "I A Form és a párbeszédablakok I.1. MessageBox osztály MessageBox.Show(szöveg[,cím[,gombok[,ikon[,defaultbutton]]]]);"

Transcription

1 I A Form és a párbeszédablakok I.1. MessageBox osztály MessageBox.Show(szöveg[,cím[,gombok[,ikon[,defaultbutton]]]]); szöveg, cím gomb ikon defaultbutton String - MessageBoxButtons.OK - MessageBoxIcon.Asterix.Error.OKCancel.Question - MessageBoxDefaultButton.Button1.Button2 - felsorolás - felsorolas.button3 - felsorolás 1

2 I.2. Közös dialógusok colordialog.color fontdialog.font openfiledialog, savefiledialog.initialdirectory.defaultextension.filename.showdialog() - DialogResult I.3 Modális és nem modális párbeszédablakok Form.Show() Form.ShowDialog(); vezérlő.dialogresult DialogResult.OK if (f.dialogresult==dialogresult.ok).cancel - felsorolt 1. Készítsünk párbeszédablakot! 2. Állítsuk be a háttérszínt! 2

3 openfiledialog1.initialdirectory = Application.ExecutablePath; openfiledialog1.filter = "txt files (*.txt) *.txt All files (*.*) *.*"; openfiledialog1.filterindex = 2; if ( openfiledialog1.showdialog() == System.Windows.Forms.DialogResult.OK ) String s1=openfiledialog1.filename; String s2=openfiledialog1.filename+"_"; File.Copy(s1,s2); this.text = openfiledialog1.filename; II Állománykezelés II.1 File dialógusok opendialog savedialog Filter, FilterIndex, MultiSelect FileName / FileNames openfiledialog1.initialdirectory = "c:\\"; openfiledialog1.filter = "txt files (*.txt) *.txt All files (*.*) *.*"; openfiledialog1.filterindex = 2; if ( openfiledialog1.showdialog() == System.Windows.Forms.DialogResult.OK ) this.text = openfiledialog1.filename; II.2 File Class using System.IO; static bool Exists(String path) static void Delete(String path) static void Copy(String source, String dest); static void Copy( String source, String dest, bool overwrite ) static void Replace(String mit, String mivel, String backup); static void Replace(String mit, String mivel, String backup, bool siker);

4 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; using System.Windows.Forms; namespace dialog static class Program /// <summary> /// The main entry point for the application. /// </summary> [STAThread] static void Main() Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); //Application.Run(new Dialog()); 4

5 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace dialog public partial class Dialog : Form public string inf; public Dialog() InitializeComponent(); private void button1_click(object sender, EventArgs e) this.close(); private void button2_click(object sender, EventArgs e) this.close(); private void textbox1_textchanged(object sender, EventArgs e) inf = textbox1.text; 5

6 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.IO; namespace dialog public partial class Form1 : Form public Form1() InitializeComponent(); private void button1_click(object sender, EventArgs e) if (DialogResult.OK== MessageBox.Show("Hello", "Üzenet", MessageBoxButtons.OKCancel, MessageBoxIcon.Question)) this.text = "OK"; else this.text = "Mégse"; 6

7 private void button2_click(object sender, EventArgs e) Dialog d = new Dialog(); if (d.showdialog() == DialogResult.OK) this.text = d.inf; else this.text = "Nem változott"; private void button3_click(object sender, EventArgs e) Dialog d = new Dialog(); d.show(); int i = 12; private void színtoolstripmenuitem_click(object sender, EventArgs e) colordialog1.color = Color.Yellow; if (colordialog1.showdialog() == DialogResult.OK) this.backcolor = colordialog1.color; private void betűtiptoolstripmenuitem_click(object sender, EventArgs e) fontdialog1.font = label1.font; if (fontdialog1.showdialog() == DialogResult.OK) label1.font = fontdialog1.font; label1.text = label1.font.name; 7

8 private void Form1_Load(object sender, EventArgs e) label1.text = label1.font.name; private void fileopentoolstripmenuitem_click(object sender, EventArgs e) openfiledialog1.initialdirectory = "C:\\"; openfiledialog1.filter = "(Minden file) *.* (Szöveg file) *.txt"; openfiledialog1.filterindex = 0; if (openfiledialog1.showdialog() == DialogResult.OK) this.text = openfiledialog1.filename; else this.text = "Semmi"; private void openfiledialog1_fileok(object sender, CancelEventArgs e) private void filesavetoolstripmenuitem_click(object sender, EventArgs e) if (savefiledialog1.showdialog() == DialogResult.OK) this.text = savefiledialog1.filename; 8

9 private void deletetoolstripmenuitem_click(object sender, EventArgs e) if (openfiledialog1.showdialog() == DialogResult.OK) File.Delete(openFileDialog1.FileName); private void filecopytoolstripmenuitem_click(object sender, EventArgs e) if (openfiledialog1.showdialog()== DialogResult.OK) if (savefiledialog1.showdialog() == DialogResult.OK) File.Copy( openfiledialog1.filename, savefiledialog1.filename); 9

Conexión SQL Server C#

Conexión SQL Server C# Conexión SQL Server C# Form1.cs using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms;

More information

How To Create A Database In Araba

How To Create A Database In Araba create database ARABA use ARABA create table arac ( plaka varchar(15), marka varchar(15), model varchar(4)) create table musteri ( tck varchar(11), ad varchar(15), soy varchar(15)) drop table kiralama

More information

Ing. Javier Calvo Moreno

Ing. Javier Calvo Moreno CODIGOS PARA HACER UN BLOCK DE NOTAS CON LAS FUNCIONES: Nuevo, Abrir, Guardar, Guardar Como, Imprimir, Formato fuente, Salir. Ing. Javier Calvo Moreno Nota: Son las opciones básicas, ustedes pueden agregar

More information

{ oledbdataadapter1.updatecommand.commandtext = "update personel set ad='" + textbox2.text + "' where id=" + textbox1.text; oledbconnection1.

{ oledbdataadapter1.updatecommand.commandtext = update personel set ad=' + textbox2.text + ' where id= + textbox1.text; oledbconnection1. private void Form1_Load(object sender, EventArgs e) oledbdataadapter1.fill(dataset11); private void button1_click(object sender, EventArgs e) oledbdataadapter1.update(dataset11); private void Form1_Load(object

More information

Aucune validation n a été faite sur l exemple.

Aucune validation n a été faite sur l exemple. Cet exemple illustre l utilisation du Type BLOB dans la BD. Aucune validation n a été faite sur l exemple. using System; using System.Collections.Generic; using System.ComponentModel; using System.Data;

More information

PROCEDURE INSERTION(NUM IN EMPLOYES.NUMEMP%TYPE, NOM VARCHAR2, PRENOM IN VARCHAR2, PPHOTO IN BLOB, SALAIRE IN NUMBER);

PROCEDURE INSERTION(NUM IN EMPLOYES.NUMEMP%TYPE, NOM VARCHAR2, PRENOM IN VARCHAR2, PPHOTO IN BLOB, SALAIRE IN NUMBER); Le Package CREATE OR REPLACE PACKAGE GESTIONEMPLOYES AS DECLARATION DE LA VARIABLE DE TYPE REF CURSOR DECLARATION DES PROCÉDURES ET FONCTIONS TYPE EMPRESULTAT IS REF CURSOR; PROCEDURE INSERTION(NUM IN

More information

A Step by Step Guide for Building an Ozeki VoIP SIP Softphone

A Step by Step Guide for Building an Ozeki VoIP SIP Softphone Lesson 3 A Step by Step Guide for Building an Ozeki VoIP SIP Softphone Abstract 2012. 01. 20. The third lesson of is a detailed step by step guide that will show you everything you need to implement for

More information

WINDOWS FORMS DEVELOPMENT

WINDOWS FORMS DEVELOPMENT WINDOWS FORMS DEVELOPMENT (with an introduction to ASP.NET) By Dr Kieran F. Mulchrone, School of Mathematical Sciences, UCC January, 2010. Page 1 of 55 CONTENTS Developing Simple Single Form Applications...

More information

Systems Programming & Scripting

Systems Programming & Scripting Systems Programming & Scripting Lecture 6: C# GUI Development Systems Prog. & Script. - Heriot Watt Univ 1 Blank Form Systems Prog. & Script. - Heriot Watt Univ 2 First Form Code using System; using System.Drawing;

More information

Tutorial 1: M/M/n Service System Simulation Tutorial 2: M/M/n Simulation using Excel input file Tutorial 3: A Production/Inventory System Simulation

Tutorial 1: M/M/n Service System Simulation Tutorial 2: M/M/n Simulation using Excel input file Tutorial 3: A Production/Inventory System Simulation SharpSim Tutorials Tutorial 1: M/M/n Service System Simulation Tutorial 2: M/M/n Simulation using Excel input file Tutorial 3: A Production/Inventory System Simulation Ali Emre Varol, Arda Ceylan, Murat

More information

如 何 在 C#.2005 中 使 用 ICPDAS I/O Card 的 DLL 檔 案

如 何 在 C#.2005 中 使 用 ICPDAS I/O Card 的 DLL 檔 案 如 何 在 C#.2005 中 使 用 ICPDAS I/O Card 的 DLL 檔 案 本 文 件 說 明 如 何 在 C#.Net 程 式 中 引 入 ICPDAS I/O Card 的 DLL 檔 案 [ 下 載 安 裝 DLL 驅 動 程 式 與 VC 範 例 程 式 ] 多 年 來, ICPDAS 完 整 的 提 供 了 全 系 列 PCI 與 ISA BUS I/O Card 在 Windows

More information

1.Tüm Kayıtları Getirme - Arama Yapma

1.Tüm Kayıtları Getirme - Arama Yapma 1.Tüm Kayıtları Getirme - Arama Yapma using System.Data.SqlClient; namespace Uygulama1 Burs public partial class Form1 : Form public Form1() InitializeComponent(); string sorgu; private void button1_click(object

More information

How To Develop A Mobile Application On Sybase Unwired Platform

How To Develop A Mobile Application On Sybase Unwired Platform Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 DOCUMENT ID: DC01285-01-0210-01 LAST REVISED: December 2011 Copyright 2011 by Sybase, Inc. All rights reserved. This publication

More information

ADOBE READER AND ACROBAT

ADOBE READER AND ACROBAT ADOBE READER AND ACROBAT IFILTER CONFIGURATION Table of Contents Table of Contents... 1 Overview of PDF ifilter 11 for 64-bit platforms... 3 Installation... 3 Installing Adobe PDF IFilter... 3 Setting

More information

See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically.

See the Developer s Getting Started Guide for an introduction to My Docs Online Secure File Delivery and how to use it programmatically. My Docs Online Secure File Delivery API: C# Introduction My Docs Online has provided HIPAA-compliant Secure File Sharing and Delivery since 1999. With the most recent release of its web client and Java

More information

Praktikum im Bereich Praktische Informatik Entwicklung eines Ray-Tracing Systems. computer graphics & visualization

Praktikum im Bereich Praktische Informatik Entwicklung eines Ray-Tracing Systems. computer graphics & visualization Praktikum im Bereich Praktische Informatik Entwicklung eines Ray-Tracing Systems Organizational Weekly Assignments + Preliminary discussion: Tuesdays 15:30-17:00 in room MI 02.13.010 Assignment deadline

More information

Tutorial: Windows Mobile Application Development. Sybase Unwired Platform 2.1 ESD #2

Tutorial: Windows Mobile Application Development. Sybase Unwired Platform 2.1 ESD #2 Tutorial: Windows Mobile Application Development Sybase Unwired Platform 2.1 ESD #2 DOCUMENT ID: DC01285-01-0212-01 LAST REVISED: March 2012 Copyright 2012 by Sybase, Inc. All rights reserved. This publication

More information

1. La classe Connexion class Connexion {

1. La classe Connexion class Connexion { 1. La classe Connexion class Connexion public static string chaine; IDbConnection cnx; IDbCommand cmd; IDataReader dr; private string chainesqlserver = "Data Source=localhost;Initial catalog=reservations;

More information

Introduction to Visual Studio and C#

Introduction to Visual Studio and C# Telemark University College Department of Electrical Engineering, Information Technology and Cybernetics Introduction to Visual Studio and C# HANS- PETTER HALVORSEN, 2014.03.12 Faculty of Technology, Postboks

More information

Mobile Application Development Using.NET

Mobile Application Development Using.NET Using.NET Page 2 of 163 TABLE OF CONTENT Chapter 1: Introduction & Creating First Mobile Application... 8.NET Compact Framework... 8 Design Considerations for Microsoft Smartphone Applications... 10 UI

More information

Windows Mobile Power Management

Windows Mobile Power Management Windows Mobile Power Management Joel Ivory Johnson Software Engineer, RDA Corporation jjohnson@rdacorp.com Introduction As a regular reader of the MSDN support forums and other online development community

More information

Chapter 14 WCF Client WPF Implementation. Screen Layout

Chapter 14 WCF Client WPF Implementation. Screen Layout Chapter 14 WCF Client WPF Implementation Screen Layout Window1.xaml

More information

How To Design An Eprescription System

How To Design An Eprescription System DESIGNING AND DEVELOPMENT OF AN E-PRESCRIPTION SYSTEM BY Nasir Ahmed Bhuiyan ID: 101-15-954 This Report Presented in Partial Fulfillment of the Requirements for the Degree of Bachelor of Science Computer

More information

Sequential-Access ve Random-Access dosya işlemleri için örnek programlar

Sequential-Access ve Random-Access dosya işlemleri için örnek programlar Sequential-Access ve Random-Access dosya işlemleri için örnek programlar using System; Class Library projesi içinde OgrenciKayit ve OgrenciKayitRandom sınıfları namespace OgrenciLibrary Sıralı erişimli

More information

Einführung in die Windows Store App Entwicklung mit C# und XAML. Modul 2 Datenbindung und Zugriff auf das lokale Dateisystem

Einführung in die Windows Store App Entwicklung mit C# und XAML. Modul 2 Datenbindung und Zugriff auf das lokale Dateisystem Einführung in die Windows Store App Entwicklung mit C# und XAML Modul 2 Datenbindung und Zugriff auf das lokale Dateisystem Oktober 2013 www.softed.de Referentin Beate Lay C# Programmierung SharePoint

More information

BACKING UP A DATABASE

BACKING UP A DATABASE BACKING UP A DATABASE April 2011 Level: By : Feri Djuandi Beginner Intermediate Expert Platform : MS SQL Server 2008, Visual C# 2010 Pre requisites: Suggested to read the first part of this document series

More information

ASP and ADO (assumes knowledge of ADO)

ASP and ADO (assumes knowledge of ADO) ASP.NET (2) These slides are meant to be for teaching purposes only and only for the students that are registered in CSE4413 and should not be published as a book or in any form of commercial product,

More information

ASP.NET(C#) ile Kayıt Listeleme, Silme ve Düzenleme İşlemi

ASP.NET(C#) ile Kayıt Listeleme, Silme ve Düzenleme İşlemi ASP.NET(C#) ile Kayıt Listeleme, Silme ve Düzenleme İşlemi Web.config içerisine aşağıdaki kod eklenir.

More information

OBJECTIVE1: Understanding Windows Forms Applications

OBJECTIVE1: Understanding Windows Forms Applications Lesson 5 Understanding Desktop Applications Learning Objectives Students will learn about: Windows Forms Applications Console-Based Applications Windows Services OBJECTIVE1: Understanding Windows Forms

More information

Pablo's SOLID Software Development

Pablo's SOLID Software Development Pablo's SOLID Software Development The Los Techies crew is proud to compile a number of blog posts focused on a particular subject in addition to their regular blogging. Pablo's Topic of the Month for

More information

Using ilove SharePoint Web Services Workflow Action

Using ilove SharePoint Web Services Workflow Action Using ilove SharePoint Web Services Workflow Action This guide describes the steps to create a workflow that will add some information to Contacts in CRM. As an example, we will use demonstration site

More information

Log/Process/Hashing. Details. Activities. Processes

Log/Process/Hashing. Details. Activities. Processes Lab 9: Details Aim: Log/Process/Hashing To provide a foundation on how event logs are generated and to determine running processes, and to view and update logs. It also includes methods on using the hashing

More information

GENERATING SQL SCRIPTS FOR STORED PROCEDURES, FUNCTIONS, VIEWS & TRIGGERS

GENERATING SQL SCRIPTS FOR STORED PROCEDURES, FUNCTIONS, VIEWS & TRIGGERS GENERATING SQL SCRIPTS FOR STORED PROCEDURES, FUNCTIONS, VIEWS & TRIGGERS April 2011 Level: By : Feri Djuandi Beginner Intermediate Expert Platform : MS SQL Server 2008, Visual C# 2010 Pre requisites:

More information

Module 6: Validating User Input

Module 6: Validating User Input Module 6: Validating User Input Contents Overview 1 Multimedia: Validating User Input 2 Lesson: Restricting User Input 4 Lesson: Validating Field Data 17 Lesson: Validating Form Data 29 Review 36 Lab 6.1:

More information

'========================================================================== ==== Scans a range of A/D Input Channels

'========================================================================== ==== Scans a range of A/D Input Channels ========================================================================== ==== File: Library Call Demonstrated: background mode Purpose: continuously array. Demonstration: channels. Other Library Calls:

More information

Chapter 9 Delegates and Events

Chapter 9 Delegates and Events Chapter 9 Delegates and Events Two language features are central to the use of the.net FCL. We have been using both delegates and events in the topics we have discussed so far, but I haven t explored the

More information

Microsoft Virtual Labs. Building Windows Presentation Foundation Applications - C# - Part 1

Microsoft Virtual Labs. Building Windows Presentation Foundation Applications - C# - Part 1 Microsoft Virtual Labs Building Windows Presentation Foundation Applications - C# - Part 1 Table of Contents Building Windows Presentation Foundation Applications - C# - Part 1... 1 Exercise 1 Creating

More information

Async startup WPF Application

Async startup WPF Application Async startup WPF Application Friday, December 18, 2015 5:39 PM This document is from following the article here: https://msdn.microsoft.com/enus/magazine/mt620013.aspx While working through the examples

More information

Secure Routing and Identifying Hacking In P2p System

Secure Routing and Identifying Hacking In P2p System Gowsiga Subramaniam et al Int. Journal of Engineering Research and Applications RESEARCH ARTICLE OPEN ACCESS Secure Routing and Identifying Hacking In P2p System Gowsiga Subramaniam* 1, Senthilkumar Ponnusamy

More information

ASP.NET Dynamic Data

ASP.NET Dynamic Data 30 ASP.NET Dynamic Data WHAT S IN THIS CHAPTER? Building an ASP.NET Dynamic Data application Using dynamic data routes Handling your application s display ASP.NET offers a feature that enables you to dynamically

More information

C# Datenbank-Programmierung

C# Datenbank-Programmierung C# Datenbank-Programmierung Usings... 2 Verbindung herstellen SQL und Acces... 2 Verbindung schliessen SQL und Acces... 3 File open Dialog... 3 Lehar einfügen... 3 Lehar löschen... 4 Radio Button SQL &

More information

2009 Tutorial (DB4O and Visual Studio 2008 Express)

2009 Tutorial (DB4O and Visual Studio 2008 Express) Jákup Wenningstedt Hansen Side 1 12-10-2009 2009 Tutorial (DB4O and Visual Studio 2008 Express)...1 Download the Database...1 Installation of the Database...2 Creating the project in VS...3 Pointing VS

More information

MyChartWebPart.cs. // For SortList using System.Collections.Generic; using System.Collections; // For DataTable using System.Data;

MyChartWebPart.cs. // For SortList using System.Collections.Generic; using System.Collections; // For DataTable using System.Data; MyChartWebPart.cs // Standard SharePoint web part includes using System; using System.ComponentModel; using System.Web; using System.Web.UI; using System.Web.UI.WebControls; using System.Web.UI.WebControls.WebParts;

More information

Software Engineering 1 EEL5881 Spring 2009. Homework - 2

Software Engineering 1 EEL5881 Spring 2009. Homework - 2 Software Engineering 1 EEL5881 Spring 2009 Homework - 2 Submitted by Meenakshi Lakshmikanthan 04/01/2009 PROBLEM STATEMENT: Implement the classes as shown in the following diagram. You can use any programming

More information

Body Pose Tracking and Instrumented Personal Training using Kinect. Michael Sherman Capstone Project Report for BSEE Rutgers University

Body Pose Tracking and Instrumented Personal Training using Kinect. Michael Sherman Capstone Project Report for BSEE Rutgers University Body Pose Tracking and Instrumented Personal Training using Kinect Michael Sherman Capstone Project Report for BSEE Rutgers University Table of Contents Introduction... 3 Hardware... 4 Early stages...

More information

Alsafeer software for teaching computer literacy

Alsafeer software for teaching computer literacy Eastern Washington University EWU Digital Commons EWU Masters Thesis Collection Student Research and Creative Works 2013 Alsafeer software for teaching computer literacy Zieb Rabie Alqahtani Eastern Washington

More information

FANESE Faculdade de Administração e Negócios de Sergipe. Tópicos Avançados em Desenvolvimento WEB. Prof.: Fabio Coriolano.

FANESE Faculdade de Administração e Negócios de Sergipe. Tópicos Avançados em Desenvolvimento WEB. Prof.: Fabio Coriolano. FANESE Faculdade de Administração e Negócios de Sergipe Tópicos Avançados em Desenvolvimento WEB Prof.: Fabio Coriolano Aracaju/SE 2011 FANESE Faculdade de Administração e Negócios de Sergipe Sistemas

More information

The Photo Editor Application

The Photo Editor Application 29823 05 pp115-178 r4jm.ps 8/6/03 3:53 PM Page 115 C H A P T E R 5 The Photo Editor Application Unified Process: Elaboration Phase and Third Iteration This chapter discusses the third iteration of the

More information

Web Services in.net (1)

Web Services in.net (1) Web Services in.net (1) These slides are meant to be for teaching purposes only and only for the students that are registered in CSE4413 and should not be published as a book or in any form of commercial

More information

How to create a SMTP plugin for ArGoSoft Mail Server,.NET edition (AMS.NET edition) using Visual Studio 2005

How to create a SMTP plugin for ArGoSoft Mail Server,.NET edition (AMS.NET edition) using Visual Studio 2005 How to create a SMTP plugin for ArGoSoft Mail Server,.NET edition (AMS.NET edition) using Visual Studio 2005 About SMTP plugins for AMS.NET edition Plugins should be placed in.net assemblies. One assembly

More information

Using C# for Graphics and GUIs Handout #2

Using C# for Graphics and GUIs Handout #2 Using C# for Graphics and GUIs Handout #2 Learning Objectives: C# Arrays Global Variables Your own methods Random Numbers Working with Strings Drawing Rectangles, Ellipses, and Lines Start up Visual Studio

More information

Form Tasarımı - 5. Veri Tabanı Veri tabanı ismi; m Tablo ismi; mt

Form Tasarımı - 5. Veri Tabanı Veri tabanı ismi; m Tablo ismi; mt Form Tasarımı - 5 Veri Tabanı Veri tabanı ismi; m Tablo ismi; mt Kodlar Imports System.Data Imports System.Data.OleDb Imports System.Xml Imports System.IO Public Class Form5 Dim yeni As OleDbConnection

More information

Integration guide Rabo OmniKassa

Integration guide Rabo OmniKassa Integration guide Rabo OmniKassa 1 CONTENTS 1. Introduction... 4 2. Payment flows... 5 3. Protocol description... 7 3.1 POST fields... 7 3.1.1 the Data field syntax... 7 3.1.2 the Seal field syntax...

More information

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Windows 10 Apps Development

About the Tutorial. Audience. Prerequisites. Copyright & Disclaimer. Windows 10 Apps Development About the Tutorial Welcome to Windows 10 tutorial. This tutorial is designed for people who want to learn how to develop apps meant for Windows 10. After completing it, you will have a better understating

More information

A PROJECT REPORT ON. SkyDrive. Submitted for the partial fulfillment of the requirement for the Award of the degree of MASTER OF COMPUTER APPLICATION

A PROJECT REPORT ON. SkyDrive. Submitted for the partial fulfillment of the requirement for the Award of the degree of MASTER OF COMPUTER APPLICATION A PROJECT REPORT ON SkyDrive Submitted for the partial fulfillment of the requirement for the Award of the degree of MASTER OF COMPUTER APPLICATION By UTTAM KUWAR VERMA 11004101172 GALGOTIAS INSTITUTE

More information

WPF Shapes. WPF Shapes, Canvas, Dialogs 1

WPF Shapes. WPF Shapes, Canvas, Dialogs 1 WPF Shapes WPF Shapes, Canvas, Dialogs 1 Shapes are elements WPF Shapes, Canvas, Dialogs 2 Shapes draw themselves, no invalidation or repainting needed when shape moves, window is resized, or shape s properties

More information

WINDOWS PRESENTATION FOUNDATION LEKTION 3

WINDOWS PRESENTATION FOUNDATION LEKTION 3 WINDOWS PRESENTATION FOUNDATION LEKTION 3 Mahmud Al Hakim mahmud@alhakim.se www.alhakim.se COPYRIGHT 2015 MAHMUD AL HAKIM WWW.WEBACADEMY.SE 1 AGENDA Introduktion till Databindning (Data Binding) Element

More information

Capturx for SharePoint 2.0: Notification Workflows

Capturx for SharePoint 2.0: Notification Workflows Capturx for SharePoint 2.0: Notification Workflows 1. Introduction The Capturx for SharePoint Notification Workflow enables customers to be notified whenever items are created or modified on a Capturx

More information

Database Communica/on in Visual Studio/C# using Web Services. Hans- Pe=er Halvorsen, M.Sc.

Database Communica/on in Visual Studio/C# using Web Services. Hans- Pe=er Halvorsen, M.Sc. Database Communica/on in Visual Studio/C# using Web Services Hans- Pe=er Halvorsen, M.Sc. Background We will use Web Services because we assume that the the App should be used on Internet outside the Firewall).

More information

AWS Directory Service. AD Connector Administration Guide Version 1.0

AWS Directory Service. AD Connector Administration Guide Version 1.0 AWS Directory Service AD Connector Administration AWS Directory Service: AD Connector Administration Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks

More information

Save Actions User Guide

Save Actions User Guide Microsoft Dynamics CRM for Sitecore 6.6-8.0 Save Actions User Guide Rev: 2015-04-15 Microsoft Dynamics CRM for Sitecore 6.6-8.0 Save Actions User Guide A practical guide to using Microsoft Dynamics CRM

More information

The Modeling of Communication with Other. Systems in Process Automation Applications

The Modeling of Communication with Other. Systems in Process Automation Applications International Journal of Computing and Optimization Vol. 2, 2015, no. 1, 35-46 HIKARI Ltd, www.m-hikari.com http://dx.doi.org/10.12988/ijco.2015.5210 The Modeling of Communication with Other Systems in

More information

v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com

v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com v1.1.0 SimpleSQL SQLite manager for Unity3D echo17.com Table of Contents Table of Contents................................................................ ii 1. Overview 2. Workflow...................................................................

More information

USER GUIDE Appointment Manager

USER GUIDE Appointment Manager 2011 USER GUIDE Appointment Manager 0 Suppose that you need to create an appointment manager for your business. You have a receptionist in the front office and salesmen ready to service customers. Whenever

More information

İNTERNET TABANLI PROGRAMLAMA- 13.ders GRIDVIEW, DETAILSVIEW, ACCESSDATASOURCE NESNELERİ İLE BİLGİ GÖRÜNTÜLEME

İNTERNET TABANLI PROGRAMLAMA- 13.ders GRIDVIEW, DETAILSVIEW, ACCESSDATASOURCE NESNELERİ İLE BİLGİ GÖRÜNTÜLEME İNTERNET TABANLI PROGRAMLAMA- 13.ders GRIDVIEW, DETAILSVIEW, ACCESSDATASOURCE NESNELERİ İLE BİLGİ GÖRÜNTÜLEME Asp.Net kodları

More information

Web Services API Developer Guide

Web Services API Developer Guide Web Services API Developer Guide Contents 2 Contents Web Services API Developer Guide... 3 Quick Start...4 Examples of the Web Service API Implementation... 13 Exporting Warehouse Data... 14 Exporting

More information

Web Session Classes: Performance Metrics For N-Tier s Business Logic Issues

Web Session Classes: Performance Metrics For N-Tier s Business Logic Issues Web Session Classes: Performance Metrics For N-Tier s Business Logic Issues Ashok Kumar# #Banasthali University,Banasthali(Raj.)-India Dr. Saurabh Mukherjee $ Banasthali University,Banasthali(Raj.)-India

More information

X. Apéndice C. Listado de Códigos.

X. Apéndice C. Listado de Códigos. X. Apéndice C. Listado de Códigos. 10.1 Version2.aspx

More information

This tutorial has been designed for all those readers who want to learn WPF and to apply it instantaneously in different type of applications.

This tutorial has been designed for all those readers who want to learn WPF and to apply it instantaneously in different type of applications. About the Tutorial WPF stands for Windows Presentation Foundation. It is a powerful framework for building Windows applications. This tutorial explains the features that you need to understand to build

More information

EMC Documentum Application Connectors Software Development Kit

EMC Documentum Application Connectors Software Development Kit EMC Documentum Application Connectors Software Development Kit Version 6.8 Development Guide EMC Corporation Corporate Headquarters: Hopkinton, MA 01748-9103 1-508-435-1000 www.emc.com Legal Notice Copyright

More information

Objectives. RadioButton. Drag radio buttons to form. Chapter 3 Controls for Windows Forms 2004 Art Gittleman

Objectives. RadioButton. Drag radio buttons to form. Chapter 3 Controls for Windows Forms 2004 Art Gittleman Objectives Chapter 3 Controls for Windows Forms 2004 Art Gittleman Add controls to Make selections Add links Add images Choose a date or number Time events Make menu choices Respond to dialogs RadioButton

More information

Ambientes de Desenvolvimento Avançados

Ambientes de Desenvolvimento Avançados Ambientes de Desenvolvimento Avançados http://www.dei.isep.ipp.pt/~jtavares/adav/adav.htm Aula 17 Engenharia Informática 2006/2007 José António Tavares jrt@isep.ipp.pt 1.NET Web Services: Construção de

More information

Developer s Guide. Tobii EyeX SDK for.net. October 27, 2014 Tobii Technology

Developer s Guide. Tobii EyeX SDK for.net. October 27, 2014 Tobii Technology Developer s Guide Tobii EyeX SDK for.net October 27, 2014 Tobii Technology The Tobii EyeX Software Development Kit (SDK) for.net contains everything you need for building games and applications using the

More information

טכנולוגיית WPF מספקת למפתחים מודל תכנות מאוחד לחוויית בניית יישומיי. ניהול התצוגה מתבצע בשפת הסימון Extensible Application Markup ) XAML

טכנולוגיית WPF מספקת למפתחים מודל תכנות מאוחד לחוויית בניית יישומיי. ניהול התצוגה מתבצע בשפת הסימון Extensible Application Markup ) XAML WPF-Windows Presentation Foundation Windows WPF טכנולוגיית WPF מספקת למפתחים מודל תכנות מאוחד לחוויית בניית יישומיי Client חכמים המשלב ממשקי משתמש,תקשורת ומסמכים..(Behavior) לבין התנהגותו (User Interface)

More information

Implementing a WCF Service in the Real World

Implementing a WCF Service in the Real World Implementing a WCF Service in the Real World In the previous chapter, we created a basic WCF service. The WCF service we created, HelloWorldService, has only one method, called GetMessage. Because this

More information

wpf5concat Start Microsoft Visual Studio. File New Project WPF Application, Name= wpf5concat OK.

wpf5concat Start Microsoft Visual Studio. File New Project WPF Application, Name= wpf5concat OK. Start Microsoft Visual Studio. wpf5concat File New Project WPF Application, Name= wpf5concat OK. The Solution Explorer displays: Solution wpf5concat, wpf5concat, Properties, References, App.xaml, MainWindow.xaml.

More information

Week Date Teaching Attended 5 Feb 2013 Lab 4: Vulnerability Analysis & Enumeration/Toolkit 4

Week Date Teaching Attended 5 Feb 2013 Lab 4: Vulnerability Analysis & Enumeration/Toolkit 4 Week Date Teaching Attended 5 Feb 2013 Lab 4: Vulnerability Analysis & Enumeration/Toolkit 4 Aim: The aim of this lab is to investigate Network Scanning, System Enumeration, and Vulnerability Analysis,

More information

Manual Password Depot Server 8

Manual Password Depot Server 8 Manual Password Depot Server 8 Table of Contents Introduction 4 Installation and running 6 Installation as Windows service or as Windows application... 6 Control Panel... 6 Control Panel 8 Control Panel...

More information

AWS Directory Service. Administration Guide Version 1.0

AWS Directory Service. Administration Guide Version 1.0 AWS Directory Service Administration Guide AWS Directory Service: Administration Guide Copyright 2015 Amazon Web Services, Inc. and/or its affiliates. All rights reserved. Amazon's trademarks and trade

More information

Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter)

Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter) Sending Data from a computer to a microcontroller using a UART (Universal Asynchronous Receiver/Transmitter) Eric Bell 04/05/2013 Abstract: Serial communication is the main method used for communication

More information

Introduction to C# Programming and the.net Framework: (PDF)

Introduction to C# Programming and the.net Framework: (PDF) Introduction to C# Programming and the NET Framework: (PDF) Lesson 1: Introduction Underst anding t he Learning Sandbox Environment T he OST Plug-In Let's Do Something! Closing and Reopening a Solut ion

More information

CHAPTER 10: WEB SERVICES

CHAPTER 10: WEB SERVICES Chapter 10: Web Services CHAPTER 10: WEB SERVICES Objectives Introduction The objectives are: Provide an overview on how Microsoft Dynamics NAV supports Web services. Discuss historical integration options,

More information

HOBOlink Web Services V2 Developer s Guide

HOBOlink Web Services V2 Developer s Guide HOBOlink Web Services V2 Developer s Guide Onset Computer Corporation 470 MacArthur Blvd. Bourne, MA 02532 www.onsetcomp.com Mailing Address: P.O. Box 3450 Pocasset, MA 02559-3450 Phone: 1-800-LOGGERS

More information

Mapping Specification for DWG/DXF (MSD) C#.NET Code Samples

Mapping Specification for DWG/DXF (MSD) C#.NET Code Samples Mapping Specification for DWG/DXF (MSD) C#.NET Code Samples The code samples contained herein are intended as learning tools and demonstrate basic coding techniques used to implement MSD. They were created

More information

1. WPF Tutorial Page 1 of 431 wpf-tutorial.com

1. WPF Tutorial Page 1 of 431 wpf-tutorial.com 1. WPF Tutorial Page 1 of 431 1.1. About WPF 1.1.1. What is WPF? WPF, which stands for Windows Presentation Foundation, is Microsoft's latest approach to a GUI framework, used with the.net framework. But

More information

Gantt Control Developer Reference

Gantt Control Developer Reference Gantt Control Developer Reference.NET Language Guide VERSION 2.00 AUG 2012 Vordruckverlag Weise GmbH Bamberger Str. 4-6 01187 Dresden Germany http://www.gantt-komponente.de/ http://www.gantt-component.com/

More information

CRM Setup Factory Installer V 3.0 Developers Guide

CRM Setup Factory Installer V 3.0 Developers Guide CRM Setup Factory Installer V 3.0 Developers Guide Who Should Read This Guide This guide is for ACCPAC CRM solution providers and developers. We assume that you have experience using: Microsoft Visual

More information

ComponentOne. FilePicker for Silverlight

ComponentOne. FilePicker for Silverlight ComponentOne FilePicker for Silverlight Copyright 1987-2011 ComponentOne LLC. All rights reserved. Corporate Headquarters ComponentOne LLC 201 South Highland Avenue 3 rd Floor Pittsburgh, PA 15206 USA

More information

Windows Presentation Foundation Tutorial 1

Windows Presentation Foundation Tutorial 1 Windows Presentation Foundation Tutorial 1 PDF: Tutorial: A http://billdotnet.com/wpf.pdf http://billdotnet.com/dotnet_lecture/dotnet_lecture.htm Introduction 1. Start Visual Studio 2008, and select a

More information

Aplicação ASP.NET MVC 4 Usando Banco de Dados

Aplicação ASP.NET MVC 4 Usando Banco de Dados Aplicação ASP.NET MVC 4 Usando Banco de Dados Neste exemplo simples, vamos desenvolver uma aplicação ASP.NET MVC para acessar o banco de dados Northwind, que está armazenado no servidor SQL Server e, listar

More information

programming language are codified as ECMA (a non-profit standards body) and ISO international standards, which creates

programming language are codified as ECMA (a non-profit standards body) and ISO international standards, which creates DotGNU Write C# programs in Linux with the free and vendor-neutral DotGNU. BY MAYANK SHARMA ike many, I grew up programming in C and C++ before moving into LAMP-land and Python, Perl, and PHP. But like

More information

Save Actions User Guide

Save Actions User Guide Microsoft Dynamics CRM for Sitecore CMS 6.3-6.5 Save Actions User Guide Rev: 2012-04-26 Microsoft Dynamics CRM for Sitecore CMS 6.3-6.5 Save Actions User Guide A practical guide to using Microsoft Dynamics

More information

Introduction to the BackgroundWorker Component in WPF

Introduction to the BackgroundWorker Component in WPF Introduction to the BackgroundWorker Component in WPF An overview of the BackgroundWorker component by JeremyBytes.com The Problem We ve all experienced it: the application UI that hangs. You get the dreaded

More information

Introduction to Windows Presentation Foundation

Introduction to Windows Presentation Foundation Page 1 of 41 2009 Microsoft Corporation. All rights reserved. Windows Presentation Foundation Windows Presentation Foundation (WPF) is a next-generation presentation system for building Windows client

More information

How To Control Asp.Net Html And Html On A Pc Or Mac Or Mac (For Mac) On A Web Browser On A Mac Or Pc Or Pc (For Pc Or Ipad) On Pc Or Microsoft Mac Or Ipa (

How To Control Asp.Net Html And Html On A Pc Or Mac Or Mac (For Mac) On A Web Browser On A Mac Or Pc Or Pc (For Pc Or Ipad) On Pc Or Microsoft Mac Or Ipa ( Vakgroep ICT Webprogrammatie ASP.NET BASICS 2012 Rogier van der Linde HTML Controls en Web Controls HTML controls dienen voor de snelle omzetting van bestaande HTML pagina s, Web controls zijn veel flexibeler.

More information

Skyline Interactive Tool Support

Skyline Interactive Tool Support Skyline Interactive Tool Support Skyline supports external tools that extend Skyline functionality without directly integrating into the large and complex Skyline source code base. External Tools provide

More information

VB.NET - WEB PROGRAMMING

VB.NET - WEB PROGRAMMING VB.NET - WEB PROGRAMMING http://www.tutorialspoint.com/vb.net/vb.net_web_programming.htm Copyright tutorialspoint.com A dynamic web application consists of either or both of the following two types of

More information

EcgSoft. Software Developer s Guide to RestEcg. Innovative ECG Software. www.ecg-soft.com - e-mail: info@ecg-soft.com

EcgSoft. Software Developer s Guide to RestEcg. Innovative ECG Software. www.ecg-soft.com - e-mail: info@ecg-soft.com EcgSoft Software Developer s Guide to RestEcg Innovative ECG Software www.ecg-soft.com - e-mail: info@ecg-soft.com Open Interface This page is intentionally left blank Copyright EcgSoft, October 2012 Page

More information

Coding Standards for C#

Coding Standards for C# DotNetDaily.net Coding Standards for C# This document was downloaded from http://www.dotnetdaily.net/ You are permitted to use and distribute this document for any noncommercial purpose as long as you

More information

APPLICATION NOTE. Atmel AVR10006: XDK User Guide. Atmel Microcontrollers. Features. Description

APPLICATION NOTE. Atmel AVR10006: XDK User Guide. Atmel Microcontrollers. Features. Description APPLICATION NOTE Atmel AVR10006: XDK User Guide Atmel Microcontrollers Features Extension Developer s Kit user guide Generate and publish an Atmel Studio extension Atmel Studio IDE SDK Embedded SDK Description

More information