Belajar Gambas

Total Page:16

File Type:pdf, Size:1020Kb

Belajar Gambas I. BELAJAR GAMBAS Pada pertemuan kali ini kita akan belajar salah satu pemrograman dalam Linux. Ada banyak pemrograman dalam Linux seperti halnya pada Windows, tapi yang akan kita bahas sekarang adalah Gambas. Gambas, Apaan tuh? Boleh dikatakan Gambas adalah Visual basic-Nya Linux. Anda yang telah mengenal Visual Basic di windows pasti akan sangat familiar dengan scrip dalam Gambas, meskipun tidak semua skrip sama. Gambas murni proyek open source di bawah naungan GPL(General Public License). Jadi sifatnya Open source alias Free. Instalasi Gambas Kalau dalam Linux Anda tidak terinstal gambas maka Anda dapat mendownload di URLnya, http://gambas.sourceforge.net. Jika paketnya sudah anda dapatkan maka langkah pertama yang harus dilakukan Adalah dengan perintah : $ tar -xjpvf gambas-xxx.tar.bz2 , atau $tar xzpvf gambas-xxx.tar.gz kemudian lakukan konfigurasi dan instalasi dengan perintah berikut: $cd gambas-xxx $./configure $make $make install tunggu beberapa saat hingga proses selesai. pastikan tidak ada kesalahan pada saat penginstalan. Menjalankan Gambas Untuk menjalankan Gambas dapat dilakukan dengan beberapa cara, bisa melalui konsol atau melalui menu start > gambas. Jika sudah terinstal maka cara berikut bisa Anda lakukan: tekan kombinasi tombol Alt+F2 > ketikan gambas lalu tekan enter, maka jendela kerja gambas akan muncul seprti pada gambar1. Komponen dalam Gambas Ketika menjalankan Gambas, yang pertama muncul adalah jendela selamat datang. pada jendela ini ada beberapa pilihan seperti New project untuk membuat projek baru, Open project untuk membuka projek yang sudah kita buat, Recent project untuk membuka projek yang terakhir kita buka, Exsample untuk melihat contoh -contoh yang telah tersedia. kalau Anda pusing atau gak semangat tinggal quit aja. Jika kita pilih pilihan new project maka akan muncul wizard Create a new project untuk menentukan tipe proyek dan tempat dimana kita akan menyimpan proyek kita. pilih tombol Next dan pilih Create a Graphical Project lalu tekan tombol Next. Ketikan nama project pada Select The Name of Project dan Judul Project pada Select the title of the project. Pilih direkori tempat project kita akan disimpan lalu tekan Next dan OK. Setelah tahap demi tahap selesai maka akan tampil jendela Area kerja yang Gambas. Coba Anda lihat Mirip Visual Basic khan? Gb1. Area Kerja Gambas Menu Jendela menu merupakan area kerja utama pembuatan aplikasi. pada jendela ini terdapat Menu File untuk membuat projec, membuka projec, dan menyimpan project. Menu Project adalah area kerja untuk melakukan kompilasi, package program, dan penambahan komponen. untuk Menu lainnya bisa anda eksplorasi sendiri. Jika perlu bantuan bisa lewat menu help. Gb2. Tampilan Menu ToolBox Toolbox standarnya berisi komponen -komponen yang merupakan sarana untuk membentuk user interface seperti label, text, table, combo, radiobutton, button dan lain -lain. Untuk menambhkan objek pada toolbox dapat dilakukan dengan cara klik pada menu Project > Component > lalu pilih tab Component. Gb3. Tampilan Toolbox Form Jendela ini merupakan tempat untuk meletakan objek atau kontrol yang dibutuhkan seperti label, button, text, combo, table dan lain sebagainya. Untuk menambahkan form dengan klik kanan pada project > New > Form. Gb4. Tampilan Form Jendel Properties Berisi daftar properti untuk objek( Form atau kontrol) yang dipilih dan berfungsi untuk mengatur karakteristiknya, seperi nama, ukuran, dan lain -lain. Gb5. Tampilan Properti Jendela Layout Merupakan tempat untuk menuliskan kode -kode utuk objek yang dibuat. Jendela ini bisa dimunculkan melalui menu View atau dengan menekan Ctrl+W. Gb6. Jendela Kode II. Membuat Program Mungkin Anda sudah bosan dengan teori teori di atas dan sudah tidak sabar untuk belajar membuat program. OK yang harus Anda lakukan terlebih dahulu adalah dengan memasang telinga, mata dan pikiran. Dengarkanlah bisikan yang ada dalam pikiran, lalu kerjakan dan praktikan program di bawah ini. 2.1 Program Text-Radio Dalam beberapa tutorial pemrograman mungkin Anda akan mendapatkan pada program pertama dengan membuat ªHellowordº atau ªHello duniaº, tapi di sini Anda akan langsung disuguhkan dengan program yang ªwahº. Anda mestinya akan tahu apa makna dari kata wah tersebut. Program pertama ini kita akan belajar bagaimana menggunaan TexBox, RadioButton, CheckBox serta event pada masing -masing kontrol. 1. Jalankah program Gambas dan ikuti langkah -langkah seperti yang telah dijelaskan di atas 2. Buat tampilan sebagai berikut: Gb 2.1 Desain form Program Text-Radio 3. Atur masing -masing kontrol seperti dalam tabel berikut: NO. Objek Properti Nilai 1. Frame1 Text Masukan Kata/ Kalimat 2. Texbox1 Text (Kosongkan) 3. Frame2 Text Out Put 4. Label1 Text Gambas 5. Frame3 Text Warna 6. RadioButton1 Text Merah 7. RadioButton2 Text Biru 8. RadioButton3 Text Hijau 9. Frame4 Text Style 10. CheckBox1 Text Italic 11. CheckBox2 Text Bold 12. CheckBox3 Text Underline 4. Ketikan Kode berikut pada masing masing objek Arahkan pArahkan pointer mouse pada kontol textbox1, klik kanan dan pilih event lalu change. Ketikan kode berikut. PUBLIC SUB TextBox1_Change() label1.Text=textbox1.Text END Arahkan pointer mouse pada kontol RadioButton1, klik kanan , pilih event lalu pilh click. Ketikan kode berikut. PUBLIC SUB RadioButton1_Click() ©warna label1 =biru label1.ForeColor=&H5500FF& END Arahkan pointer mouse pada kontol RadioButton2, klik kanan , pilih event lalu pilh click. Ketikan kode berikut. PUBLIC SUB RadioButton2_Click() ©warna label1 =biru label1.ForeColor=&HAA0000& END Arahkan pointer mouse pada kontol RadioButton3, klik kanan , pilih event lalu pilh click. Ketikan kode berikut. PUBLIC SUB RadioButton3_Click() ©warna label1=hijau label1.ForeColor=&H005500& END Arahkan pointer mouse pada kontol CheckBox1, klik kanan , pilih event lalu pilh click. Ketikan kode berikut. PUBLIC SUB CheckBox1_Click() ©font dari label1 italic jika checkbox1 bernilai true(checkbox1 dicentang) label1.Font.Italic=checkbox1.Value END Arahkan pointer mouse pada kontol CheckBox2, klik kanan , pilih event lalu pilh click. Ketikan kode berikut. PUBLIC SUB CheckBox2_Click() ©font dari label1 tebal jika checkbox2 bernilai true(checkbox2 dicentang) label1.Font.Bold=checkbox2.Value END Arahkan pointer mouse pada kontol CheckBox3, klik kanan , pilih event lalu pilh click. Ketikan kode berikut. PUBLIC SUB CheckBox3_Click() ©font dari label1 underline jika checkbox3 bernilai true(checbox3 dicentang) label1.Font.Underline=checkbox3.Value END Catatan: Pastikan formnya sebagai start program. Caranya dengan klik kanan pada form tersebut dan pilih startup class. Jalankan dengan mengklik tombol run Coba Anda isikan dan hasilnya akan seperti gambar berikut. Gb 2.2 Hasil Eksekusi Program Text-Radio Pada Program yang telah kita buat ada beberapa hal yang perlu kita perhatikan, yaitu penggunaan event pada masing -masing objek atau kontrol. Ada dua event yang kita pelajari dari program yang telah kita buat yaitu event Change dan Click. Tidak semua Objek memiliki event yang sama sebagai contoh event change ini ada pada Textbox tetapi tidak dimilik oleh Button, Checkbox dan RadioButton. Event Change berarti pada saat terjadi perubahan pada kontol maka kode perintah yang ada di dalamnya akan dijalankan. Event Click berarti pada saat objek diklik maka kode perintah yang ada dalam kontol tersebut akan dijalankan. Demikian program pertama telah kita buat. Jika Anda belum puas maka lanjutkan pada pembuatan program berikutnya. Semangat terus pantang mundur. 2.2. Program Password Pada Program kali ini kita akan belajar menggunakan pesan 1. Buatlah tampilan sebagai berikut: Gb 2.3 Rancangan Form Program Password 2. Atur Properti Objek seperti pada tabel berikut: No. Objek Properi Nilai 1 Label1 Text Password 2. Textbox1 Text kosongkan Password True 3. Button1 Text &OK 4. Button2 Text &Keluar 3. Double klik pada tombol OK dan ketikan kode berikut: PUBLIC SUB Button1_Click() ©melihat isi teksbox jika "addsafar" maka menuju pernyataan case IF textbox1.Text="addsafar" THEN SELECT CASE message.Question("Password Anda benar, Ingin mengulang lagi ?","yes","no") CASE 1 textbox1.Text="" CASE 2 ME.Close END SELECT ELSE message.Warning("password anda salah","ok") textbox1.text="" ENDIF END 4. Double klik pada tombo OK dan ketikna kode berikut: PUBLIC SUB Button2_Click() ME.Close END Coba Anda jalankan dengan mengklik tombol run. Ketikan password, jika password benar maka akan ditampilkan seperti gambar berikut: Gb 2.4. Pesan Jika Passwod benar Pada program di atas terdapat perintah message. Perintah ini adalah untuk menampilkan pesan seperti msgbox dalam Visual Basic. Option Question merupakan pilihan untuk ikon dalam pesan yaitu berupa Tanda tanya. Sedangkan Wanring akan menampilkan icon peringatan pada pesan. Pada program juga terdapta pernyataan Case dan If. Untuk klausa Case dan If akan dibahas pada Bab yang akan datang. 2.3. Program Aritmatika Untuk Program Gambas3 ini kita akan mencoba program yang mungkin akan mengingatkan Anda pada Pelajaran SD atau TK doeloe. Dalam hitung menghitung saya yakin Anda semua sudah pintar, tapi disini kita akan melatih logika kita dalam membuat program Aritmatika. Mudah kok. Gak ada basa basi lagi langsung saja praktekin, hayati setiap gerakan, setiap baris program dan renungkan apa yang dapat dipetik dari pelajaran ini :) 1. Buatlah rancangan Form seperti gambar dibawah ini: Gb 2.5. Desain Form untuk Program Gambas3 2. Atur masing masing kontrol No Objek Propeti Nilai 1. Label1 Text Bilangan 1 2. Label2 Text Bilangan 2 3. Label3 Text Operasi 4. Label4 Text Hasil 5. TextBox1
Recommended publications
  • Manualgambas.Pdf
    Introducción Este míni-manual esta pensado y orientado para los asistentes al taller de Gambas. Dado que, a priori, esperamos la asistencia de gente sin conocimientos previos de programación este texto va a ser escueto y muy elemental. Además de dar una formación teórica básica tiene el propósito de servir como chuleta para poder consultar las sintaxis más elementales como por ejemplo de las condicionales, bucles, etc. Nuestra herramienta: GAMBAS Vamos a usar Gambas, un lenguaje de programación visual similar al Visual Basic de Microsoft. Gambas dispone de su propio IDE. Un IDE, por sus siglas en inglés, es un entorno de desarrollo integrado. Gambas es lo que se conoce como un lenguaje de programación interpretado y como ocurre con GNU que es un acrónimo recurrente (Gnu No es Unix) Gambas significa Gambas Almost Means BASic, que traducido al castellano es Gambas Casi es BASic. Los IDE's son unos programas que aglutinan todo lo que necesitamos para programar. Tenemos un editor para picar (vamos a ir introduciéndonos en la jerga del programador) código, con resaltado por colores, autocompletado para ayudarnos en la edición, señalización de errores, etc. Un depurador para poder controlar la ejecución del programa y evaluar su comportamiento con sus inspectores de variables, objetos, etc. Un compilador para generar los binarios, bytecodes, ejecutables, etc. Un empaquetador para crear los instaladores. Además disponen de otras herramientas como gestores de servicios SVC para el control de versiones como GIT o similares. Editores de conexión a bases de datos, etc. Lo primero que vemos al ejecutar Gambas la ventana de bienvenida y nos da varias opciones, abrir un proyecto existente, crear uno nuevo o abrir recientes.
    [Show full text]
  • B4X Booklets
    B4X Booklets B4X Getting started Copyright: © 2018 Anywhere Software Edition 1.4 Last update : 2018.11.28 Table of contents 2 B4X Getting started 1 B4X .............................................................................................................................................. 5 2 Getting started B4A..................................................................................................................... 6 2.1 B4A Trial version ................................................................................................................. 7 2.2 Installing B4A and Android SDK ........................................................................................ 8 2.2.1 Installing Java JDK .......................................................................................................... 8 2.2.2 Installing Android SDK ................................................................................................... 9 2.2.3 Installing B4A .................................................................................................................. 9 2.3 B4A Configure Paths in the IDE ........................................................................................ 11 2.4 Installation problem ........................................................................................................... 12 2.5 B4A Choice of the language .............................................................................................. 12 2.6 B4A Connecting a real device...........................................................................................
    [Show full text]
  • A Suitable Asset for Shrimp Aquaculture ?
    * *** * * * * *** * EUROPEAN COMMISSION Contract 99/362 - B7/6200 Environmental sustainability of brackishwater aquaculture in the Mekong delta - Vietnam GAMBAS Volume 1 - Summary report June 2004 Institute of ·-~. ...,..,. , Oceanography Nha Trang EUROPEAN COMMISSION Con tract 99/362 - B7 /6200 Environmental sustainability of brackishwater aquaculture in the Mekong delta - Vietnam GAMBAS Volume 1 - Sutnmary report 1 June 2004 Editors: Jacques Populos (1), Pascal Raux (2), Jean-Louis Martin (3), Yves Auda (4) (1) IFREMER, BP70, 29280 PLOUZANE, France (2) CEDEM, UBO, Rue de Kergoat, BREST (3) IFREMER/CREMA, BP5, 17137 L'HOUMEAU, France (4) CESBIO, BPI 2801,31401 Toulouse Cedex 4- France IFREMER, BREST GAMBAS Partnership lfœmer Inslltut Français de lnstitute of Institut de Université de Université Paul Research in Institute of Recherche pour Oceanography of Recherche pour le Bretagne Sabatier, LET Aquaculture Nb2 Fisheries l'Exploitation de la Nha Trang, Développement Occidentale, (Laboratoire (R/A2- Ho Chi Economies and Mer Vietnam CEDEM (Centre d'Ecologie MmhCity) Planning (IFEP de Droit et Terrestre) -Hanoi} d'Economie de la Mer) Preface Jacques Populus, Coordinator - This Gambas report contains two parts. The summary report (Volume 1) gives an account of the project intervention from May 2000 to Decembcr 2003, and a digest of the project's results and deliverables. The comprehensive report (Volume 2) contains the details of the scientific research and the technical results brought about by the project. Besides, a CD/ROM containing ali the technical reports, publications and maps generated in the frame of Gambas is available from the coordinator. _ Many people have contributed to this work. We did our best to mention their names where they contributed to the work and report, at the head of each chapter.
    [Show full text]
  • Windows Api Examples
    Windows Api Examples Petur J. Skulason. <mailto:[email protected]?subject=Windows Api Examples> http://www.est.is/~pjs/RealBasic/ http://u225.nett.is/~pjs/ All this is free to use in any application (commercial - shareware - freeware). Also to extract examples and post as examples from other websites. (I do not take any responsibility for how good this is, I dont call for any credit mony or anythink else ... ) These are few examples that I have found on lists, and by experimenting with Windows API calls and browsing MSDN website (http://msdn.microsoft.com/ ). Many text’s are copyed from MSDN website in this document are from MSDN website. Examples are tested on Win98 system, HP OmniBook XE2, compiled on PowerBook G3, PPC7300, LC475. Some of examples are working correctly. Most of examples are working, but some are not working, possible that i’am doing somthing wrong, but they are there. Comments, bugs, other samples welcome. Even requests for more samples. I might try to look at it and see if its possible. PS: In this document I have put some links to MSDN webpage’s. If you are running Internet Explorer then you might need to ‘disconnect java script’ couse then ie might show only part of page. Either run ie with *.js ‘OFF’ or use an other browser, like iCab or Netscape. (As of aug 30, 2000 then pages are displayed correct... problem might be solved... ) When declaring functions/subs then one is calling library, like user32.dll . Can omitt the name extension, use like Lib “user32” instead of Lib “user32.dll”.
    [Show full text]
  • Porting VB Applications to Linux and Mac OS X
    Porting VB Applications to Linux and Mac OS X A how-to guide for Visual Basic developers by Hank Marquis Hank Marquis has been using Visual Basic since version 1.0. He is author of A Visual Basic Programmer's Toolkit (APress), The Visual Basic 6.0 Bible (IDG) and over 35 articles published in CTO/BackOffice, Visual Basic Programmer's Journal (VBPJ), Visual Studio Magazine (VSM) and Microsoft MSDN. He is currently CTO of SlayFire Software Co., creating optimization and performance tools for REALbasic. Reach him at [email protected] or www.slayfiresoftware.com. Table of Contents Porting Options Beginning Assumptions Porting Considerations Language Keywords Code Syntax Data Types Language Structure User Interface Project Structure Platform APIs Other Considerations Visual Basic Project Converter Additional Resources Table 1. Porting Considerations Table 2. Visual Basic and REALbasic Datatypes Table 3. Getting Ready: The Step by Step Process Preparing Your Code to Use VB Project Converter © 2004 REAL Software, Inc. and Hank Marquis. All rights reserved. Page 1 of 17 Porting Visual Basic applications to Linux and Mac OS X A how-to guide for Visual Basic developers In this white paper, I'll show how you can preserve your investment in Visual Basic by porting your code to Linux and/or Macintosh using REAL Software's REALbasic. I'll provide some examples, share some experience and give you a roadmap for how to port—and how not to port—your Visual Basic apps cross- platform. My intent is to save you some time and pain. For porting our VB projects, we will use REALbasic 5.5.3 for Windows, a modern software development environment that is quite similar to Microsoft Visual Basic® in terms of the GUI and syntax.
    [Show full text]
  • Visual Basic 2017 Made Easy
    Visual Basic 2017 Made Easy By Dr.Liew 1 Disclaimer Visual Basic 2017 Made Easy is an independent publication and is not affiliated with, nor has it been authorized, sponsored, or otherwise approved by Microsoft Corporation. Trademarks Microsoft, Visual Basic, Excel and Windows are either registered trademarks or trademarks of Microsoft Corporation in the United States and/or other countries. All other trademarks belong to their respective owners. Liability The purpose of this book is to provide basic guides for people interested in Visual Basic 2017 programming. Although every effort and care has been taken to make The information as accurate as possible, the author shall not be liable for any error, Harm or damage arising from using the instructions given in this book. ​ Copyright ® 2017 Liew Voon Kiong All rights reserved. No Part of this e-book may be reproduced, in any form or by any means, without permission in writing from the author. 2 Acknowledgement I would like to express my sincere gratitude to many people who have made their contributions in one way or another to the successful publication of this book. My special thanks go to my children Xiang, Yi and Xun who have contributed their ideas and help in editing this book. I would also like to appreciate the support provided by my beloved wife Kim Huang and my youngest daughter Yuan. I would also like to thank the millions of readers who have visited my Visual Basic Tutorial website at vbtutor.net for ​ ​ ​ their support and encouragement. About the Author Dr. Liew Voon Kiong holds a bachelor’s degree in Mathematics, a master’s degree in Management and a doctorate in Business Administration.
    [Show full text]
  • Beginning Realbasic from Novice to Professional
    Beginning REALbasic From Novice to Professional ■■■ Jerry Lee Ford, Jr. Beginning REALbasic: From Novice to Professional Copyright © 2006 by Jerry Lee Ford, Jr. All rights reserved. No part of this work may be reproduced or transmitted in any form or by any means, electronic or mechanical, including photocopying, recording, or by any information storage or retrieval system, without the prior written permission of the copyright owner and the publisher. ISBN-13 (pbk): 978-1-59059-634-0 ISBN-10 (pbk): 1-59059-634-X Printed and bound in the United States of America 9 8 7 6 5 4 3 2 1 Trademarked names may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, we use the names only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. Lead Editor: Chris Mills Technical Reviewer: Allan Kent Editorial Board: Steve Anglin, Ewan Buckingham, Gary Cornell, Jason Gilmore, Jonathan Gennick, Jonathan Hassell, James Huddleston, Chris Mills, Matthew Moodie, Dominic Shakeshaft, Jim Sumser, Keir Thomas, Matt Wade Project Manager: Richard Dal Porto Copy Edit Manager: Nicole LeClerc Copy Editor: Marcia Baker Assistant Production Director: Kari Brooks-Copony Production Editor: Lori Bring Compositor: Pat Christenson Proofreader: Linda Seifert Indexer: Broccoli Information Management Artist: April Milne Cover Designer: Kurt Krames Manufacturing Director: Tom Debolski Distributed to the book trade worldwide by Springer-Verlag New York, Inc., 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax 201-348-4505, e-mail [email protected], or visit http://www.springeronline.com.
    [Show full text]
  • BASIC Programming with Unix Introduction
    LinuxFocus article number 277 http://linuxfocus.org BASIC programming with Unix by John Perr <johnperr(at)Linuxfocus.org> Abstract: About the author: Developing with Linux or another Unix system in BASIC ? Why not ? Linux user since 1994, he is Various free solutions allows us to use the BASIC language to develop one of the French editors of interpreted or compiled applications. LinuxFocus. _________________ _________________ _________________ Translated to English by: Georges Tarbouriech <gt(at)Linuxfocus.org> Introduction Even if it appeared later than other languages on the computing scene, BASIC quickly became widespread on many non Unix systems as a replacement for the scripting languages natively found on Unix. This is probably the main reason why this language is rarely used by Unix people. Unix had a more powerful scripting language from the first day on. Like other scripting languages, BASIC is mostly an interpreted one and uses a rather simple syntax, without data types, apart from a distinction between strings and numbers. Historically, the name of the language comes from its simplicity and from the fact it allows to easily teach programming to students. Unfortunately, the lack of standardization lead to many different versions mostly incompatible with each other. We can even say there are as many versions as interpreters what makes BASIC hardly portable. Despite these drawbacks and many others that the "true programmers" will remind us, BASIC stays an option to be taken into account to quickly develop small programs. This has been especially true for many years because of the Integrated Development Environment found in Windows versions allowing graphical interface design in a few mouse clicks.
    [Show full text]
  • Comparison of Programming Languages - Wikipedia, the Free
    Comparison of programming languages - Wikipedia, the free ... https://en.wikipedia.org/wiki/Comparison_of_programming_... Object- Event- Other Language Intended use Imperative Functional Procedural Generic Reflective Standardized? Oriented Driven Paradigm(s) Application, ActionScript 3.0 Yes Yes Yes 1996, ECMA client-side, Web concurrent,[4] [5] Application, distributed, 1983, 2005, 2012, ANSI, Ada embedded, Yes Yes Yes[2] Yes[3] imperative ISO, GOST 27831-88[7] realtime, system object- oriented[6] Highly domain- specific, Aldor Yes Yes Yes No symbolic computing ALGOL 58 Application Yes No ALGOL 60 Application Yes 1960, IFIP WG 2.1, ISO[8] 1968, IFIP WG 2.1, GOST ALGOL 68 Application Yes concurrent 27974-88,[9] Parallel Ateji PX Yes pi calculus No application Application, array-oriented, APL 1989, ISO data processing tacit any, syntax is usually highly Assembly General Yes specific, related No language to the target processor GUI automation AutoHotkey (macros), highly Yes No domain-specific GUI automation AutoIt (macros), highly Yes Yes Yes No domain-specific 1983, ANSI Application, (http://portal.acm.org BASIC Yes Yes education /citation.cfm?id=988221), ISO Application, BBj Yes Yes No business, Web Application, BeanShell Yes Yes Yes Yes [10] scripting In progress, JCP BitC System Yes Yes No BLISS System Yes No Application, BlitzMax Yes Yes Yes No game Boo Application No domain-specific, Bro Yes Yes No application Application, [11] system, 1989, ANSI C89, ISO C90, C general purpose, Yes Yes ISO C99, ISO C11[12] low-level operations 1998, ISO/IEC
    [Show full text]
  • Preview Vbscript Tutorial (PDF Version)
    VBScript About the Tutorial Microsoft VBScript (Visual Basic Script) is a general-purpose, lightweight and active scripting language developed by Microsoft that is modelled on Visual Basic. Nowadays, VBScript is the primary scripting language for Quick Test Professional (QTP), which is a test automation tool. This tutorial will teach you how to use VBScript in your day-to-day life of any Web-based or automation project development. Audience This tutorial has been prepared for beginners to help them understand the basic-to- advanced functionality of VBScript. After completing this tutorial, you will find yourself at a moderate level of expertise in using Microsoft VBScript from where you can take yourself to the next levels. Prerequisites You need to have a good understanding of any computer programming language in order to make the most of this tutorial. If you have done programming in any client-side languages like Javascript, then it will be quite easy for you to learn the ropes of VBScript. Copyright & Disclaimer © Copyright 2015 by Tutorials Point (I) Pvt. Ltd. All the content and graphics published in this e-book are the property of Tutorials Point (I) Pvt. Ltd. The user of this e-book is prohibited to reuse, retain, copy, distribute, or republish any contents or a part of contents of this e-book in any manner without written consent of the publisher. We strive to update the contents of our website and tutorials as timely and as precisely as possible, however, the contents may contain inaccuracies or errors. Tutorials Point (I) Pvt. Ltd. provides no guarantee regarding the accuracy, timeliness, or completeness of our website or its contents including this tutorial.
    [Show full text]
  • Consolidated Annual Activity Report of the European GNSS Agency Year
    SIGNED Ref.: EUSPA-OED-SPR-RPT-A11836 Version: 1.0 AB decision no: EUSPA-AB-01-21-06-04 Consolidated Annual Activity Report of the European GNSS Agency Year 2020 [n pursuance of Financial Regulation 2018/1046, Commission Delegated Regulation No 2019/7151] 1 Commission Delegated Regulation (EU) 2019/715 on the framework financial regulation for the bodies set up under the TFEU and Euratom Treaty and referred to in Article 70 of Regulation (EU, Euratom) 2018/1046 of the European Parliament and of the Council (OJ L 122, 10.5.2019, p. 1). Ref.: EUSPA-OED-SPR-RPT-A11836 Version: 1.0 AB decision no: EUSPA-AB-01-21-06-04 Table of Contents TABLE OF CONTENTS .............................................................................................................................. 2 ADMINISTRATIVE BOARD’S ANALYSIS AND ASSESSMENT ............................................................................................ 5 NOTE BY THE CHAIR OF THE SECURITY ACCREDITATION BOARD .................................................................................. 7 NOTE BY THE EXECUTIVE DIRECTOR ..................................................................................................................... 10 EXECUTIVE SUMMARY ......................................................................................................................... 12 1. ACHIEVEMENTS IN 2020 ................................................................................................................... 14 1.1 SECURITY ACCREDITATION ACTIVITIES (WBS 2.04, WBS 2.05,
    [Show full text]
  • Iot Governance, Privacy and Security Issues EUROPEAN RESEARCH CLUSTER on the INTERNET of THINGS
    Internet of Things IoT Governance, Privacy and Security Issues EUROPEAN RESEARCH CLUSTER ON THE INTERNET OF THINGS January, 2015 “Just as energy is the basis of life itself, and ideas the source of innovation, so is innovation the vital spark of all human change, improvement and progress.” Ted Levitt IERC Coordinators: HINGS Ovidiu Vermesan, Coordinator IERC Cluster, [email protected] T Peter Friess, Coordinator IERC Cluster, European Commission, [email protected] Authors Gianmarco Baldini, (DG JRC-EC) Trevor Peirce (Avanta Global), Maarten Botterman (GNKS Consult) Maria Chiara Talacchini, (DG JRC-EC) NTERNET OF I Angela Pereira (DG JRC – EC) Marcus Handte (University of Duisburg-Essen), Domenico Rotondi (TXT Group), Henrich C. Pöhls (Passau University), Ovidiu Vermesan (SINTEF), Atta Baddii (University of Reading), Bertrand Copigneaux (Inno Ag), Schreckling, Daniel (Passau University), THE ON LUSTER Luca Vigano (University of Verona), C Gary Steri (DG JRC – EC) Salvatore Piccione (TXT Group), Panagiotis Vlacheas (UPRC) Vera Stavroulaki (UPRC) ESEARCH Dimitris Kelaidonis (UPRC) R Ricardo Neisse (DG JRC-EC) Elias Tragos (ICS - FORTH), Philippe Smadja (GEMALTO) Christine Hennebert (CEA LETI) Martin Serrano (National University of Ireland Galway) UROPEAN E Stefano Severi (Jacobs University) - Giuseppe Abreu (Jacobs University) Peter T. Kirstein (University College London) Socrates Varakliotis (University College London) IERC Antonio Skarmeta (University of Murcia) Contributing SDOs, Projects and Initiatives ••• 2 / 128 iCore, GAMBAS, BUTLER, CEN/CENELEC, ETSI, ISO, PROBE-IT, SPaCIoS, IoT@Work, COMPOSE, RERUM, OpenIoT, IoT6, Value-Ageing IERC Acknowledgements The IERC would like to thank the European Commission services for their support in the planning and preparation of this document.
    [Show full text]