12512oam 2200625 450 991015165500332120230803221415.00-273-79356-X(CKB)2550000001307931(MiAaPQ)EBC5173619(MiAaPQ)EBC5832064(MiAaPQ)EBC5175151(MiAaPQ)EBC5137646(MiAaPQ)EBC6400245(Au-PeEL)EBL5137646(CaONFJC)MIL613617(OCoLC)1024260438(EXLCZ)99255000000130793120210428d2014 uy 0engurcnu||||||||rdacontentrdamediardacarrierVisual Basic 2012 how to program /Paul Deitel, Abbey Deitel, Harvey DeitelSixth, International edition.Boston :Deitel,[2014]©20141 online resource (682 pages)How to program seriesRevision of: Deitel, Paul J. Simply visual basic 2010. Boston : Pearson, 2013.Includes index.0-273-79328-4 1-306-82366-8 Cover -- Contents -- Preface -- Before You Begin -- 1 Introduction to Computers, the Internet and Visual Basic -- 1.1 Introduction -- 1.2 Hardware and Moore's Law -- 1.3 Data Hierarchy -- 1.4 Computer Organization -- 1.5 Machine Languages, Assembly Languages and High-Level Languages -- 1.6 Object Technology -- 1.7 Internet and World Wide Web -- 1.8 Visual Basic -- 1.8.1 Object-Oriented Programming -- 1.8.2 Event-Driven Programming -- 1.8.3 Visual Programming -- 1.8.4 Internet and Web Programming -- 1.8.5 Other Key Contemporary Programming Languages -- 1.9 Microsoft's .NET -- 1.9.1 .NET Framework -- 1.9.2 Common Language Runtime -- 1.10 Microsoft's Windows® Operating System -- 1.11 Windows Phone 8 for Smartphones -- 1.11.1 Selling Your Apps in the Windows Phone Marketplace -- 1.11.2 Free vs. Paid Apps -- 1.11.3 Testing Your Windows Phone Apps -- 1.12 Windows Azure™ and Cloud Computing -- 1.13 Visual Studio Integrated Development Environment -- 1.14 Test-Driving the Visual Basic Advanced Painter App in Visual Studio 2012 -- 2 Dive Into Visual Studio Express 2012 for Windows Desktop -- 2.1 Introduction -- 2.2 Overview of the Visual Studio 2012 IDE -- 2.3 Menu Bar and Toolbar -- 2.4 Navigating the Visual Studio IDE -- 2.4.1 Solution Explorer -- 2.4.2Toolbox -- 2.4.3 Properties Window -- 2.5 Using Help -- 2.6 Using Visual App Development to Create a Simple App that Displays Text and an Image -- 2.7 Wrap-Up -- 2.8 Web Resources -- 3 Introduction to Visual Basic Programming -- 3.1 Introduction -- 3.2 Programmatically Displaying Text in a Label -- 3.2.1 Analyzing the Program -- 3.2.2 Modifying ASimpleApp to Programmatically Change the Label's Text Property -- 3.3 Addition Program -- 3.4 Building the Addition Program -- 3.5 Memory Concepts -- 3.6 Arithmetic -- 3.7 Decision Making: Equality and Relational Operators -- 3.8 Wrap-Up.4 Introduction to Problem Solving and Control Statements -- 4.1 Introduction -- 4.2 Algorithms -- 4.3 Pseudocode Algorithm -- 4.4 Control Structures -- 4.5 If...Then Selection Statement -- 4.6 If...Then...Else Selection Statement -- 4.7 Nested If...Then...Else Selection Statements -- 4.8 Repetition Statements -- 4.9 Compound Assignment Operators -- 4.10 Formulating Algorithms: Counter-Controlled Repetition -- 4.11 Formulating Algorithms: Nested Control Statements -- 4.12 Using the Debugger: Locating a Logic Error -- 4.12.1 Breakpoints and Running the Program -- 4.12.2 Data Tip Box -- 4.12.3 Locals Window -- 4.12.4 Using the Step Over Command to Execute Statements -- 4.13Wrap-Up -- 5 Problem Solving and Control Statements: Part 2 -- 5.1 Introduction -- 5.2 For...Next Repetition Statement -- 5.2.1 For...Next Statement Header Components -- 5.2.2 General Form of a For...Next Statement -- 5.2.3 Declaring the Control Variable Before a For...Next Statement -- 5.2.4 Using Expressions in the For...Next Statement's Header -- 5.2.5 For...Next Statement UML Activity Diagram -- 5.2.6 Local Type Inference -- 5.3 Examples Using the For...Next Statement -- 5.4 App: Interest Calculator -- 5.5 Formulating Algorithms: Nested Repetition Statements -- 5.6 Select...Case Multiple-Selection Statement -- 5.7 Do...Loop While and Do...Loop Until Repetition Statements -- 5.8 Using Exit to Terminate Repetition Statements -- 5.9 Using Continue in Repetition Statements -- 5.10 Logical Operators -- 5.11 App: Dental Payment Calculator -- 5.12Wrap-Up -- 6 Methods -- 6.1 Introduction -- 6.2 Classes and Methods -- 6.3 Subroutines: Methods That Do Not Return a Value -- 6.4 Functions: Methods That Return a Value -- 6.5 Implicit Argument Conversions -- 6.6 Option Strict and Data-Type Conversions -- 6.7 Passing Arguments: Pass-by-Value vs. Pass-by-Reference -- 6.8 Scope of Declarations.6.9 Case Study: Random-Number Generation -- 6.9.1 Scaling and Shifting of Random Numbers -- 6.9.2 Randomly Selecting Images -- 6.9.3 Rolling Dice Repeatedly and Displaying Statistics -- 6.10 Case Study: A Game of Chance -- 6.11 Method Overloading -- 6.12 Optional Parameters -- 6.13 Using the Debugger: Debugging Commands -- 6.14Wrap-Up -- 7 Arrays -- 7.1 Introduction -- 7.2Arrays -- 7.3 Declaring and Allocating Arrays -- 7.4 Initializing the Values in an Array -- 7.5 Summing the Elements of an Array -- 7.6 Using Arrays to Analyze Survey Results -- 7.7 Die-Rolling App with an Array of Counters -- 7.8 Case Study: Flag Quiz -- 7.9 Passing an Array to a Method -- 7.10 For Each...Next Repetition Statement -- 7.11 Sorting an Array with Method Sort of Class Array -- 7.12 Searching an Array with Linear Search -- 7.13 Searching a Sorted Array with Array Method BinarySearch -- 7.14 Rectangular Arrays -- 7.15 Case Study: Maintaining Grades Using a Rectangular Array -- 7.16 Resizing an Array with the ReDim Statement -- 7.17Wrap-Up -- 8 Files -- 8.1 Introduction -- 8.2 Data Hierarchy -- 8.3 Files and Streams -- 8.4 Test-Driving the Credit Inquiry App -- 8.5 Writing Data Sequentially to a Text File -- 8.5.1 Class CreateAccounts -- 8.5.2 Opening the File -- 8.5.3 Managing Resources with the Using Statement -- 8.5.4 Adding an Account to the File -- 8.5.5 Closing the File and Terminating the App -- 8.6 Building Menus with the Windows Forms Designer -- 8.7 Credit Inquiry App: Reading Data Sequentially from a Text File -- 8.7.1 Implementing the Credit Inquiry App -- 8.7.2 Selecting the File to Process -- 8.7.3 Specifying the Type of Records to Display -- 8.7.4 Displaying the Records -- 8.8 Wrap-Up -- 9 Object-Oriented Programming: Classes and Objects -- 9.1 Introduction -- 9.2 Classes, Objects, Methods and Instance Variables -- 9.3 Account Class.9.4 Value Types and Reference Types -- 9.5 Case Study: Card Shuffling and Dealing Simulation -- 9.6 Case Study: Time Class -- 9.7 Class Scope -- 9.8 Object Initializers -- 9.9 Auto-Implemented Properties -- 9.10 Using Me to Access the Current Object -- 9.11 Garbage Collection -- 9.12 Shared Class Members -- 9.13 Const and ReadOnly Fields -- 9.14 Shared Methods and Class Math -- 9.15 Object Browser -- 9.16Wrap-Up -- 10 Object-Oriented Programming: Inheritance and Polymorphism -- 10.1 Introduction -- 10.2 Base Classes and Derived Classes -- 10.3 Business Case Study: Commission Employees Class Hierarchy -- 10.3.1 Creating Base Class CommissionEmployee -- 10.3.2 Creating Derived Class BasePlusCommissionEmployee -- 10.3.3 Testing Class BasePlusCommissionEmployee -- 10.4 Constructors in Derived Classes -- 10.5 Protected Members -- 10.6 Introduction to Polymorphism: A Polymorphic Video Game -- 10.7 Abstract Classes and Methods -- 10.8 Case Study: Payroll System Class Hierarchy Using Polymorphism -- 10.8.1 Abstract Base Class Employee -- 10.8.2 Concrete Derived Class SalariedEmployee -- 10.8.3 Concrete Derived Class CommissionEmployee -- 10.8.4 Indirect Concrete Derived Class BasePlusCommissionEmployee -- 10.8.5 Demonstrating Polymorphic Processing -- 10.9 Online Case Study: Interfaces -- 10.10Wrap-Up -- 11 Introduction to LINQ -- 11.1 Introduction -- 11.2 Querying an Array of Primitive-Type Elements Using LINQ -- 11.3 Querying an Array of Reference-Type Elements Using LINQ -- 11.4 Deferred Execution and Transforming Query Results -- 11.5 LINQ Resource Center -- 11.6Wrap-Up -- 12 Databases and LINQ -- 12.1 Introduction -- 12.2 Relational Databases -- 12.3 A Books Database -- 12.4 LINQ to Entities and the ADO.NET Entity Framework -- 12.5 Querying a Database with LINQ -- 12.5.1 Creating the ADO.NET Entity Data Model Class Library.12.5.2 Creating a Windows Forms Project and Configuring It to Use the Entity Data Model -- 12.5.3 Data Bindings Between Controls and the Entity Data Model -- 12.6 Dynamically Binding Query Results -- 12.6.1 Creating the Display Query Results GUI -- 12.6.2 Coding the Display Query Results App -- 12.7 Retrieving Data from Multiple Tables with LINQ -- 12.8 Creating a Master/Detail View App -- 12.8.1 Creating the Master/Detail GUI -- 12.8.2 Coding the Master/Detail App -- 12.9 Address Book Case Study -- 12.9.1 Creating the Address Book App's GUI -- 12.9.2 Coding the Address Book App -- 12.10 Tools and Web Resources -- 12.11Wrap-Up -- 13 Web App Development with ASP.NET -- 13.1 Introduction -- 13.2 Web Basics -- 13.3 Multitier App Architecture -- 13.4 Your First Web App -- 13.4.1 Building the WebTime App -- 13.4.2 Examining WebTime.aspx's Code-Behind File -- 13.5 Standard Web Controls: Designing a Form -- 13.6 Validation Controls -- 13.7 Session Tracking -- 13.7.1Cookies -- 13.7.2 Session Tracking with HttpSessionState -- 13.7.3 Options.aspx: Selecting a Programming Language -- 13.7.4 Recommendations.aspx: Displaying Recommendations Based on Session Values -- 13.8 Case Study: Database-Driven ASP.NET Guestbook -- 13.8.1 Building a Web Form that Displays Data from a Database -- 13.8.2 Modifying the Code-Behind File for the Guestbook App -- 13.9 Online Case Study: ASP.NET AJAX -- 13.10 Online Case Study: Password-Protected Books Database App -- 13.11Wrap-Up -- 14 Windows Forms GUI: A Deeper Look -- 14.1 Introduction -- 14.2 Controls and Components -- 14.3 Creating Event Handlers -- 14.4 Control Properties and Layout -- 14.5 GroupBoxes and Panels -- 14.6 ToolTips -- 14.7 Mouse-Event Handling -- 14.8 Keyboard-Event Handling -- 14.9 Menus -- 14.10 MonthCalendar Control -- 14.11 DateTimePicker Control -- 14.12 LinkLabel Control.14.13 ListBox and CheckedListBox Controls.Appropriate for all basic-to-intermediate level courses in Visual Basic 2012 programming. Created by world-renowned programming instructors Paul and Harvey Deitel, Visual Basic 2012 How to Program, Sixth Edition introduces all facets of the Visual Basic 2012 language through a hands-on approach with hundreds of working programs. This book has been thoroughly updated to reflect the major innovations Microsoft has incorporated in Visual Basic 2012; all discussions and sample code have been carefully audited against the newest Visual Basic language specification. The Sixth Edition is updated to Visual Studio 2012 and includes new chapters on Windows 8 UI app development, Windows 8 graphics/multimedia, Windows Phone 8 app development and Windows Azure. Students begin by getting comfortable with the free Visual Basic Express 2012 IDE and basic VB syntax. Next, they build their skills one step at a time, mastering control structures, classes, objects, methods, variables, arrays, and the core techniques of object-oriented programming. With this strong foundation in place, the Deitels introduce more sophisticated techniques, including inheritance, polymorphism, exception handling, strings, GUI's, data structures, generics, and collections. Throughout, the authors show developers how to make the most of Microsoft's Visual Studio tools. A series of appendices provide essential programming reference material on various topics.How to program series.Visual Basic (Computer program language)Visual Basic (Computer program language)005.268Deitel Paul J.8045Deitel Harvey M.1945-Deitel AbbeyMiAaPQMiAaPQUtOrBLWBOOK9910151655003321Visual Basic 20123408065UNINA02104oam 2200613I 450 991071147420332120181228131537.0(CKB)5470000002483297(OCoLC)961333277(OCoLC)995470000002483297(EXLCZ)99547000000248329720161028d1960 ua 0engur|||||||||||txtrdacontentcrdamediacrrdacarrierSurface water supply of the United States, 1959Part 1-ANorth Atlantic Slope Basins, Maine to Connecticut /prepared under the direction of J.V.B. Wells[Washington, D.C.] :United States Department of the Interior, Geological Survey,1960.Washington :United States Government Printing Office.1 online resource (viii, 276 pages) illustrations, mapGeological Survey water-supply paper ;1621"Prepared in cooperation with the States of Connecticut, Maine, Massachusetts, New Hampshire, New York, Rhode Island, and Vermont, and with other agencies."Includes index.North Atlantic Slope Basins, Maine to Connecticut.Water qualityNortheastern StatesWater-supplyNortheastern StatesWater qualityfastWater-supplyfastNortheastern StatesfastWater qualityWater-supplyWater quality.Water-supply.Wells J. V. B.1385991Geological Survey (U.S.),Connecticut.Maine.Massachusetts.New Hampshire.New York (State)Rhode Island.Vermont.COPCOPOCLCOOCLCFGPOMERUCGPOBOOK9910711474203321Surface water supply of the United States, 19593450070UNINA03822nam 2200661Ia 450 991095835240332120251116174948.01-134-27849-71-134-27850-01-280-17704-70-203-00570-810.4324/9780203005705 (CKB)1000000000247448(EBL)201217(OCoLC)252702431(SSID)ssj0000185111(PQKBManifestationID)11165880(PQKBTitleCode)TC0000185111(PQKBWorkID)10206884(PQKB)11779498(MiAaPQ)EBC201217(Au-PeEL)EBL201217(CaPaEBR)ebr10162632(CaONFJC)MIL17704(OCoLC)648139563(EXLCZ)99100000000024744820040420d2005 uy 0engur|n|---|||||txtccrA Japanese company in crisis ideology, strategy and narrative /Fiona Graham1st ed.London ;New York RoutledgeCurzon20051 online resource (264 p.)RoutledgeCurzon Contemporary Japan series ;1Description based upon print version of record.0-415-34685-1 Includes bibliographical references (p. [256]-259) and index.Cover; A Japanese company in crisis; Title Page; Copyright Page; Table of Contents; 1 Introduction; Objectives of this work; Plan of the book; Economic strategising; 2 Economic background; The Japanese economy; The crisis in the life insurance industry; C-Life; 3 The current situation; The present situation; The current situation of C-Life; 4 Restructuring; Restructuring and C-Life; Taking responsibility; Visions of the future; 5 The company and change; Japanese character and change; Japanese management; 6 The flowers of 1985; The generation of doki; Uesaka and Takemitsu; Takenaka; OgiharaOsakiAoki; Hara; Matsumoto; Summary; 7 Ideology and economic strategising; What is an ideology?; Ways of viewing ideology; Levels of ideology: a model; The objectivity of ideology; Ideology and conflict; Strategies; Strategy and the manipulation of ideology; Strategising and consciousness; Being good at strategising; 8 Strategising during the filming of C-Life; Filming C-Life; Honne/tatemae during filming; Strategising during filming; 9 Narrative and myth; Management and the role of narrative; Narrative; Myth; Narrative and interpretation; 10 C-Life goes under; The demise of C-LifeInside C-Life as it went underThe future; 11 Conclusion; Bibliography; IndexJapanese white-collar workers have been characterised by their intense loyalty and life-long commitment to their companies. This book is based on very extensive ethnographic research inside a Japanese insurance company during the period when the company was going through a major crisis which ended in the company's bankruptcy and collapse. It examines the attitudes of Japanese employees towards their work, their company and related issues at a time when the established order and established attitudes were under threat. The wide range and detail of the reporting of workers' attitudes, often in tRoutledgeCurzon Contemporary Japan series ;1.Corporate cultureJapanCase studiesBusiness failuresJapanCase studiesCorporate cultureBusiness failures368.32/0065/52Graham Fiona(Fiona Caroline)1692352MiAaPQMiAaPQMiAaPQBOOK9910958352403321A Japanese company in crisis4492177UNINA