New Features in Visual Studio 2003

Total Page:16

File Type:pdf, Size:1020Kb

New Features in Visual Studio 2003 New Features in Visual Studio 2003 Microsoft Visual Studio .NET 2003 (VS 2003, doesn't introduce as much new functionality as the original Visual Studio .NET, also known as VS 2002. Microsoft's latest integrated development environment (IDE) brings lots of cool new features to the developer's table VS 2003 includes plenty of new features. The following sections describe what I think are the best ones. Better Database Support The .NET Framework Data Provider for ODBC is now available with the .NET Framework under the namespace System.Data.Odbc.The .NET Framework Data Provider for Oracle now ships with the .NET Framework under the namespace System.Data.OracleClient. Developers using the .NET Framework version 1.0 can download the .NET Framework Data Provider for Oracle from http://msdn.microsoft.com/downloads. In addition, ADO.NET now includes the following features: • The DataReader object now exposes a HasRows property to determine if rows were returned without having to call Read. • The Connection object now has an EnlistDistributedTransaction method to enable manual enlistment in distributed transactions. Side-by-Side Execution: The .NET Framework version 1.1 supports side-by-side execution. Side-by-side execution is the ability to store and execute multiple versions of an application or component on the same computer. This means that you can have multiple versions of the runtime, and multiple versions of applications and components that use a version of the runtime, on the same computer at the same time. In addition, subsequent installations of other versions of the .NET Framework or of a component will not affect the applications already installed. Side-by-side execution does not imply that a managed application is compatible with other versions of the runtime or of a component. Rather, it means that a managed application can choose the runtime and the components it executes with, and that multiple versions of the runtime, applications, and components can coexist on the same computer. It is up to you to decide which versions of the runtime and which components a particular application will use. Java Support VS 2003 brings first-time integration with Visual J#, a tool for Java developers who want to use Microsoft's .NET framework to build applications and XML Web services. Outside of Visual J#, VS 2003 also supports Visual Basic (VB), Visual C++, and Visual C# developers. The new IDE is available in Standard, Professional, Enterprise Developer, and Enterprise Architect editions. Code Obfuscation Also new in VS 2003 is a built-in utility for source code obfuscation. In addition, VS developers can now download Microsoft's Enterprise Implementation Framework (EIF), a tool that the company promises lets you quickly add runtime monitoring to your applications. The source code obfuscation tool, Preemptive Dotfuscator Community Edition, is the "little" version of a product from Preemptive Solutions, a Microsoft ISV partner based in Cleveland. Microsoft says it included the tool to protect the intellectual property of programmers who distribute VS 2003 code, as well as to help developers reduce the size and improve the performance of mobile and other .NET applications. The tool is designed to render Microsoft Intermediate Language (MSIL), which is said to be very difficult, if not impossible, to reverse- engineer into comprehensible source code. ASP.NET Mobile Controls - (formerly the Microsoft Mobile Internet Toolkit) ASP.NET Mobile Controls (formerly the Microsoft Mobile Internet Toolkit) extends the .NET Framework and Visual Studio .NET by providing support for mobile (wireless) devices such as cell phones and personal data assistants (PDAs). The .NET Framework version 1.1 release incorporates the mobile controls into the .NET Framework and Visual Studio .NET distributions. Because mobile controls are now a part of the .NET Framework, the terminology has changed to match the conventions used in .NET documentation, and the mobile controls documentation has merged into the larger .NET Framework documentation set. The name Mobile Internet Toolkit is replaced by ASP.NET Mobile Controls.ASP.NET Mobile Controls extend ASP.NET server controls such that they adapt to the mobile device on which the Web application is rendering. Through browser detection, the mobile controls conform to the capabilities of individual devices ranging from full-featured PDA browsers to small, 5-line × 20-character cell phone displays. This adaptive rendering feature handles many of the tedious device-specific rendering decisions and frees you to focus on your Web application logic. Changes in .NET Framework Security: In version 1.0 and 1.1, applications that receive less than full trust from the runtime code access security system cannot call shared managed libraries unless the library writer specifically allows them to through the use of the AllowPartiallyTrustedCallersAttribute attribute. If you plan on using libraries from partially trusted code, you need to be aware that some libraries will not be available to your code. In version 1.1, System.Web.dll, System.Web.Mobile.dll, and System.Web.RegularExpressions.dll are included in the list of assemblies that have the AllowPartiallyTrustedCallersAttribute and can be called from partially trusted code. Default security policy has been changed so that applications executing from the Internet zone and assigned to the Internet Zone code group now receive permissions associated with the Internet permission set. As a result, applications from the Internet now receive sufficient permission to execute. In the .NET Framework 1.0 Service Pack 1 and Service Pack 2, such applications received the permissions associated with the Nothing permission set and could not execute. ASP.NET Security: ASP.NET now supports partial trust in Web-based applications, offering greater security for multiple applications that are hosted on a single Web server. Although the operating system account under which an application runs imposes security restrictions on the application, the code access security system of the common language runtime can enforce additional restrictions on selected application resources based on policy that you specify. You can use this feature in a shared server environment to isolate separate applications and with standalone servers where you want applications to run with the minimum necessary privileges. ASP.NET provides a <trust> configuration directive that enables you to configure code access security levels for your applications. If your partially trusted ASP.NET applications call shared managed libraries, those libraries must contain an AllowPartiallyTrustedCallersAttribute attribute that allows calls from partially trusted code. For more information, see Using Libraries from Partially Trusted Code. IPv6 Support in the .NET Framework: The .NET Framework version 1.1 supports the emerging update to the Internet Protocol, commonly referred to as IP version 6, or simply IPv6. This protocol is designed to significantly increase the address space used to identify communication endpoints in the Internet to accommodate its ongoing growth. IPv6 is supported in the System.Net namespace, ASP.NET, and XML Web services. Solutions Explorer - Track Active Item: A new option in visual studio 2003, Track Active Item in Solution Explorer, has been added to the Projects and Solutions, Environment, Options Dialog Box. When this option is selected, Solution Explorer automatically opens the folder for the active item, scrolls to its node, and selects its name. The selected item changes as you work with different files within a project or solution, or different components within an Integrated Development Environment (IDE) designer. When this option is cleared, the selection in Solution Explorer does not change automatically. This option is enabled by default, but it is cleared when you choose the "Visual C++ Developer" or "Visual C# Developer" profile on the My Profile tab of the Visual Studio Start Page. New icons: • checked out Exclusive - Item is checked out from a source control database to one developer only. Other developers cannot access this file. • checked out Shared - Item is checked out from a source control database for shared use by a development team. Different versions of the item will be merged upon checkin. Options and Settings: (Copy Options and Settings from Previous version) You can copy certain Options dialog box settings from a previous version of Visual Studio .NET to a more recent version visual studio 2003. If you have two different versions of the program installed on the same machine, the first time you launch the newer version of the Visual Studio .NET, a dialog box appears giving you the choice to migrate your existing setting. If you dismiss this dialog, you can display it later by executing the following command from the Windows command line: devenv /migrate settings .After you migrate your previous Options settings into the new version of Visual Studio .NET, select Options from the Tools menu to display the Options dialog box and review your settings. Most option settings should appear as you last set them. Build: (Only build startup projects and dependencies on Run) A new option in visual studio 2003, Only build startup projects and dependencies on Run, has been added to the Projects and Solutions, Environment, Options Dialog Box, under Build and Run Options. When this option is selected, pressing F5 or choosing the Start or Build command from the Debug or Run menu only builds the startup project and its dependencies. When this option is cleared, pressing F5 builds all projects, dependencies, and solution files. This option is cleared by default, but it is enabled when you choose the "Visual C++ Developer" and the “Visual C# Developer" profile on the My Profile tab of the Visual Studio Start Page. For Visual C++ projects only, three new commands have been placed on a new Project Only submenu of the Build menu: • Build Only <projectname> • Rebuild Only <projectname> • Clean Only <projectname> These commands build, rebuild, or clean only the C++ project currently selected in Solution Explorer, without building or cleaning any project dependencies or solution files.
Recommended publications
  • A Programmer's Guide to C
    Download from Wow! eBook <www.wowebook.com> For your convenience Apress has placed some of the front matter material after the index. Please use the Bookmarks and Contents at a Glance links to access them. Contents at a Glance Preface ����������������������������������������������������������������������������������������������������������������������� xxv About the Author ����������������������������������������������������������������������������������������������������� xxvii About the Technical Reviewer ����������������������������������������������������������������������������������� xxix Acknowledgments ����������������������������������������������������������������������������������������������������� xxxi Introduction ������������������������������������������������������������������������������������������������������������� xxxiii ■■Chapter 1: C# and the .NET Runtime and Libraries �����������������������������������������������������1 ■■Chapter 2: C# QuickStart and Developing in C# ����������������������������������������������������������3 ■■Chapter 3: Classes 101 ����������������������������������������������������������������������������������������������11 ■■Chapter 4: Base Classes and Inheritance ������������������������������������������������������������������19 ■■Chapter 5: Exception Handling ����������������������������������������������������������������������������������33 ■■Chapter 6: Member Accessibility and Overloading ���������������������������������������������������47 ■■Chapter 7: Other Class Details �����������������������������������������������������������������������������������57
    [Show full text]
  • Code Review Guide
    CODE REVIEW GUIDE 3.0 RELEASE Project leaders: Mr. John Doe and Jane Doe Creative Commons (CC) Attribution Free Version at: https://www.owasp.org 1 2 F I 1 Forward - Eoin Keary Introduction How to use the Code Review Guide 7 8 10 2 Secure Code Review 11 Framework Specific Configuration: Jetty 16 2.1 Why does code have vulnerabilities? 12 Framework Specific Configuration: JBoss AS 17 2.2 What is secure code review? 13 Framework Specific Configuration: Oracle WebLogic 18 2.3 What is the difference between code review and secure code review? 13 Programmatic Configuration: JEE 18 2.4 Determining the scale of a secure source code review? 14 Microsoft IIS 20 2.5 We can’t hack ourselves secure 15 Framework Specific Configuration: Microsoft IIS 40 2.6 Coupling source code review and penetration testing 19 Programmatic Configuration: Microsoft IIS 43 2.7 Implicit advantages of code review to development practices 20 2.8 Technical aspects of secure code review 21 2.9 Code reviews and regulatory compliance 22 5 A1 3 Injection 51 Injection 52 Blind SQL Injection 53 Methodology 25 Parameterized SQL Queries 53 3.1 Factors to Consider when Developing a Code Review Process 25 Safe String Concatenation? 53 3.2 Integrating Code Reviews in the S-SDLC 26 Using Flexible Parameterized Statements 54 3.3 When to Code Review 27 PHP SQL Injection 55 3.4 Security Code Review for Agile and Waterfall Development 28 JAVA SQL Injection 56 3.5 A Risk Based Approach to Code Review 29 .NET Sql Injection 56 3.6 Code Review Preparation 31 Parameter collections 57 3.7 Code Review Discovery and Gathering the Information 32 3.8 Static Code Analysis 35 3.9 Application Threat Modeling 39 4.3.2.
    [Show full text]
  • VSM Cover Snipe
    0808vsm_RdrsChoice_C2_final 8/14/08 11:55 AM Page 1 SPECIAL SECTION: 2008 BUYERS GUIDE 2008 Buyers Guide Readers Choice Awards 4 Product Listings 6 Third-Party Tools Put the “Rapid” in RAD 2 Project3 7/10/08 1:32 PM Page 1 Project3 7/10/08 1:33 PM Page 2 0808vsm_BGEdNote_2.final 7/24/08 2:05 PM Page 2 Editor’s Note THIRD-PARTY TOOLS BY PATRICK MEADER PUT THE “RAPID” IN RAD editor in chief Welcome to the Visual Studio Magazine 2008 Buyers Guide supplement! Every year, the editors of Visual Studio Magazine survey include anything that covers DVD- or online-based training. the third-party market of tools and services for Visual Studio We think K-Source is intriguing for several reasons, not least and compile a list of relevant products in areas that are of the because it brings the notion of suites of controls that have most interest to Visual Studio developers. This year we com- proven so popular in the VS market to the area of training. K- piled a list of more than 400 products and services across 22 cat- Source gives you the ability to package together a wide range egories (these begin on p.6).Note that you won’t see any prod- of online training subjects for your entire development team ucts from Microsoft listed in the categories; this is a survey of (see VSM’s review of K-Source on p.12 of the August issue). third-party solution providers, which by definition excludes The listings in the print version of this supplement provide Microsoft’s offerings.When compiling the list,we allow a prod- the product name,company,and a Web site for each of the prod- uct to be listed in only one category.In cases where a product fits ucts within a given category.You can find a more detailed version more than one category (and this is frequently the case), we of these listings at VisualStudioMagazine.com (Locator+ attempt to choose the closest category fit for that product.
    [Show full text]
  • < Day Day up > Visual Studio Hacks by James Avery
    < Day Day Up > Visual Studio Hacks By James Avery ............................................... Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00847-3 Pages: 500 Table of Contents | Index | Examples | Errata This hands-on guide is designed for developers who want to go far beyond the obvious features of Visual Studio--the most powerful, feature-rich Integrated Development Environment (IDE) on the market today. It takes the reader on a detailed tour through code editor hacks, all manners of customization, even external tools such as PowerToys. Full of valuable tips, tools, and tricks. < Day Day Up > < Day Day Up > Visual Studio Hacks By James Avery ............................................... Publisher: O'Reilly Pub Date: March 2005 ISBN: 0-596-00847-3 Pages: 500 Table of Contents | Index | Examples | Errata Copyright credits Credits About the Author Contributors Acknowledgments Preface Preface Why Visual Studio Hacks? How to Use This Book An Important Note About Keyboard Shortcuts How This Book Is Organized Conventions Using Code Examples Safari Enabled How to Contact Us Got a Hack? Chapter 1. Master Projects and Solutions Section 1.1. Hacks 1-5 Hack 1. Manage Projects and Solutions Hack 2. Master Assembly and Project References Hack 3. Organize Projects and Solutions Hack 4. Hack the Project and Solution Files Hack 5. Remove SourceSafe Bindings Chapter 2. Master the Editor Section 2.1. Hacks 6-15 Hack 6. Master the Clipboard Hack 7. Make Pasting into Visual Studio Easier Hack 8. Master IntelliSense Hack 9. Master Regions Hack 10. Add Guidelines to the Text Editor Hack 11. Select the Best Editor Hack 12. Customize Syntax Coloring Hack 13.
    [Show full text]
  • Glenn County Business Associate Agreement
    GLENN COUNTY Information Services Committee 516 West Sycamore Street Willows, California 95988 Telephone (530) 934-6476 FAX (530) 934-6421 June 19, 2017 TO: Prospective Contractors FROM: Glenn County Information Services Coordinating Committee SUBJECT: Request for Proposal for Technical Consulting Services The County of Glenn is requesting proposals from highly qualified consultants with demonstrated expertise in providing technical support services which may include information technology planning, coordination and implementation and information technology infrastructure services. 1.0 Introduction: Summary of the intended procurement 1.1. The County of Glenn has maintained a Support Service Contract with a local vendor since 2003. The contract is scheduled to expire in August of 2017. The County of Glenn seeks a highly qualified consultant that can 1) provide scheduled and emergency on-site and remote technical consulting, 2) Information Technology (“IT”). analysis, planning and program coordination, and 3) other duties as assigned by the Glenn County Information Services (“IS”) Committee. 1.2 The County of Glenn intends to award a contract for the proposed consulting services, as further described in Section 2 of this RFP, that are expected to be performed for a three year term which shall be from September 1, 2017 through August 31, 2020; annual renegotiation of the contract will be at the discretion of the County and shall be based on changes to County staffing levels, network size/needs and/or funding levels. 1.3 This RFP has very specific vendor qualification requirements. Proposals will only be accepted from firms that meet those requirements. See Section 3, Qualifications, for more information.
    [Show full text]
  • Frydenberg.Pdf
    UNIVERSITY OF OSLO Department of informatics Analysis of Obfuscated CIL code Master Thesis 60 credits Linn Marie Frydenberg 1st August 2006 - 1 - Preface This master thesis is the result of one year’s work in order to fulfill the requirements for the Master degree at University of Oslo, Faculty of Informatics. Acknowledgments First of all, I would like to thank my supervisors, Torgeir Broen at Norwegian Defence Research Establishment (FFI) and Birger Møller-Pedersen at Faculty of Informatics, University of Oslo, for their excellent guidance, various thoughts and good comments during my thesis work. I also want to thank Norwegian Defence Research Establishment (FFI) for making laboratory space available. Last but not least, I would like to thank my boyfriend Alex for his love and support, and also my family and friends for their support and encouragement during my work. Oslo, August 2007 Linn Marie Frydenberg - 2 - - 3 - Abstract This thesis focuses on a technique known as obfuscation. The area has been given much attention in recent years as a low cost technique for software protection. There are already numerous papers concerned with techniques for both obfuscation and deobfuscation, but there are still many untouched issues, and little have been done in practice. The use of obfuscators in practice is one of the issues explored in this thesis, on the .NET platform. Most of today’s obfuscation research is designed and tested on the Java platform. It is therefore interesting to see which techniques that are implemented in the .NET obfuscators. The used .NET language in this thesis is C#.
    [Show full text]
  • Obfuscation Tools for .NET.Pdf
    Obfuscation Tools for .NET 12/22/07 10:59 PM Home Guides Forums Advertise Schedule Accolades About Contact Us Search Saturday, December 22, 2007 ..:: Guides » Obfuscation Tools for .NET ::.. Register Login Read How-To-Select Guide in HTML Format Sponsors August 1st 2005 - 1st Edition .NET Developer Series How-To-Select an Obfuscation Tool for .NET™ Covers Obfuscation tools for use in obfuscating .NET application .EXE files and .DLL components By Mike Gunderloy Categories discussed in this Guide: Obfuscators Compilers Linkers Encrypting Launchers http://www.howtoselectguides.com/dotnet/obfuscators/ Table of Contents Introduction Understanding Obfuscation Functionality by Category Related Categories Decision Points Features Vendors/Authors Profiled in this Guide Products Profiled in this Guide General Criteria Feature Tables Products Not Profiled in this Guide Glossary About the Guides http://www.howtoselectguides.com/dotnet/obfuscators/ Page 1 of 15 Obfuscation Tools for .NET 12/22/07 10:59 PM Executive Editor - .NET Developer Series Mike Gunderloy | http://www.larkware.com Author Mike Gunderloy | http://www.larkware.com Copy Editor Melanie Spiller | http://www.melaniespiller.com Design & Layout Palo Creative | http://www.palocreative.com Publisher Xtras, Inc. | http://www.xtras.com Xtras, Inc., Copyright © 2005. Published twice monthly. All rights reserved by Xtras, Inc. No part of this publication may be reproduced without written permission from the Publisher. How-To-Select Guides and How-To-Select Guides logo are trademarks of Xtras, Inc. How-To-Select Guides is a publication of Xtras, Inc. Printed version is printed in the USA. Xtras, Inc. would like to thank SourceGear (www.sourcegear.com/vault/) for graciously donating licenses to use Vault to the How-To-Select Guides.
    [Show full text]
  • The Visual Studio IDE and MEF
    CHAPTER 2 ■ ■ ■ The Visual Studio IDE and MEF This release of Visual Studio sees the IDE overhauled and much of it rewritten using WPF and managed code. The move to WPF allows Microsoft to make some stunning aesthetic additions to the IDE, and also opens up customization possibilities when combined with the new Managed Extensibility Framework (MEF). Microsoft’s use of WPF for a flagship product such as Visual Studio is important, as this demonstrates its commitment to the framework and confidence in its maturity. In this chapter I will begin by looking at some of the new productivity enhancements in VS2010. I will then create a code snippet and customize the start page. Finally I will introduce MEF and take a look at some of the advanced customizations that it enables. 64-BIT VERSION OF VISUAL STUDIO? A common question is whether Microsoft will release a 64-bit version of Visual Studio. At the time of writing, Microsoft has said it has no plans to do, for the following reasons: • Making use of lazy loading techniques would be a more cost-efficient way to improve the IDE’s performance, and would benefit 32-bit users as well. • A 64-bit version could adversely affect performance because data structures will use more memory. • There are cost issues. Rico Mariani (see the following link) suggests that the cheapest way to provide 64- bit support would be to incrementally convert the IDE to managed code, but this would break many existing extensions. For a detailed discussion of this issue, please refer to the following link: http://blogs.msdn.com/ricom/ archive/2009/06/10/visual-studio-why-is-there-no-64-bit-version.aspx.
    [Show full text]
  • Vb.Net Obfuscator Free
    Vb.net obfuscator free click here to download The project logo comes from Legendora Icon by Teekatas Suwannakrua. Maintained and supported by LeXtudio. Project Description Obfuscar is an open www.doorway.ru obfuscator released under MIT license. It provides basic obfuscation features that help secure secrets in www.doorway.ru assembly. Obfuscation Example. Confuser is a protector/obfuscator www.doorway.ru, providing great security www.doorway.ru Applications. Confuser is not being actively maintained. Please use the successor ConfuserEx instead! Features: Anti debugger; Anti memory dumping; Anti decompiler; Prevent any tampering of the assemblies; Encrypt codes. www.doorway.ru is a top-grade obfuscator www.doorway.ru platform, made by people who really care. It helps to www.doorway.ru code and your valuable assets.​Download · ​Features · ​Purchase · ​Support. I have also used the free PreEmptive solution and it works decently to www.doorway.ru assemblies but does have a few drawbacks. (note these drawbacks are limitations of the free version only). 1) No string encryption, so hard coded strings will still show up as plain text to someone sifting through the. Skater is www.doorway.ru freeware obfuscator www.doorway.ru code protector, obfuscator www.doorway.ru NET code protection. The Light Edition is the Free version of www.doorway.ru Obfuscator. You may use www.doorway.ru Obfuscator Light Edition, free of charge, to protect www.doorway.ru applications for both personal and commercial purposes. Skater. Free source code and tutorials for Software developers and Architects.; Updated: 16 Oct back the www.doorway.ru is not free one but they provide trial version so you can check it and compare with others.
    [Show full text]
  • Visual Studio 2008 Product Comparison Data Sheet Published: April 2008 (Version 1.08) for the Latest Information, Please See
    Visual Studio 2008 Product Comparison Data Sheet Published: April 2008 (Version 1.08) For the latest information, please see http://www.microsoft.com/vstudio Note: This product comparison is for illustrative purposes only. The information contained in this document represents the current view of Microsoft Corporation on the issues discussed as of the date of publication. Because Microsoft must respond to changing market conditions, it should not be interpreted to be a commitment on the part of Microsoft, and Microsoft cannot guarantee the accuracy of any information presented after the date of publication. This Data Sheet is for informational purposes only. MICROSOFT MAKES NO WARRANTIES, EXPRESS, IMPLIED OR STATUTORY, AS TO THE INFORMATION IN THIS DOCUMENT. Complying with all applicable copyright laws is the responsibility of the user. Without limiting the rights under copyright, no part of this document may be reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording, or otherwise), or for any purpose, without the express written permission of Microsoft Corporation. Microsoft may have patents, patent applications, trademarks, copyrights, or other intellectual property rights covering subject matter in this document. Except as expressly provided in any written license agreement from Microsoft, the furnishing of this document does not give you any license to these patents, trademarks, copyrights, or other intellectual property. © 2008 Microsoft Corporation. All rights reserved. Microsoft, ActiveX, Excel, InfoPath, IntelliSense, Internet Explorer, JScript, MSDN, Outlook, PowerPoint, SharePoint, SQL Server, Visio, Visual Basic, Visual C++, Visual C#, Visual Studio, Win32, and Windows Mobile are trademarks of the Microsoft group of companies All other trademarks are property of their respective owners.
    [Show full text]
  • Copyrighted Material
    INDEX $ (BuildVersion) property, 685 Add New Web Site dialog, 29 $() function, 412 ASP. NET Web Application options, 30 * (asterisk), in tab, 15 Add Reference context menu, 31 ? alias, for Debug.Print command, 629 $ADDRESS variable for tracepoint, 653 Add Scaffold dialog, 385 Add Service Reference dialog, 32 A Add Tab command, 41 Add View dialog, 389, 409 absolute placement ADO.NET Entity Framework, 571–596 for controls, 299 adding business logic to entities, 595 for HTML elements, 358 basics, 572–573 AccessDataSource control, in ASP.NET, 369 database update from entity model, 595 Accessibility property page, for ASP.NET Entity Framework Core, 596 Web Forms, 349 Entity Framework Designer, 577–582 accessibility of website, 365 getting started with, 573 Account Settings dialog, 10 Plain Old CLR Objects (POCO), 596 Action helper method, 394 Advanced Build Settings dialog, 680 action methods Advanced Compile Options dialog, 666 in ASP.NET MVC, 385–388 Advanced Compiler Settings dialog, comment on action trigger, 387 674–676 FormValues parameter type for, 401 Build events, 676–678 parameters, 400–403 Compilation constants, 676 Activate Historical Debugging link, 771 Optimizations, 675 Add Area dialog, 403 AdventureWorks2014 sample database, 573 Add Assertions dialog, 768 AdventureWorksDB sample database, 384 Add Connection dialoCOPYRIGHTEDg, 553 AfterBuil MATERIALd event, 683 Add Entity dialog, 584 AJAX, 375–378 Add New Item dialog, 247, 372 alias command, 96–97 Service-Based Database template, 524 aliases, for commands, 629–630 template in,
    [Show full text]
  • Xamarin.Android
    Xamarin.Android #xamarin.an droid 1 1: Xamarin.Android 2 2 2 Examples 2 Xamarin Studio 2 Visual Studio 4 2: Android 7 7 Examples 7 Android 7 3: RecyclerView 14 Examples 14 RecyclerView 14 RecyclerView 18 4: Xamarin ZXing 21 21 Examples 21 21 5: Xamarin.Android - 22 22 22 Examples 22 22 6: Xamarin.Android - 24 24 Examples 24 Xamarin.Android 24 7: Xamarin.Android APK 27 27 Examples 27 Visual Studio APK 27 29 Xamarin.Android APK MultiDex 37 Xamarin.Android MultiDex 37 Xamarin.Android APK ProGuard 40 Xamarin.Android ProGuard 40 ProGuard "" 42 Xamarin.Linker 42 ProGuard 45 8: 48 48 Examples 48 48 9: 49 49 49 Examples 50 AlertDialog 50 50 10: 53 Examples 53 53 Java 53 . 53 11: ListView 55 Examples 55 Custom Listview . 55 12: - Xamarin.Andorid 61 61 61 Examples 61 61 62 63 GitHub 65 13: 66 Examples 66 66 66 66 68 You can share this PDF with anyone you feel could benefit from it, downloaded the latest version from: xamarin-android It is an unofficial and free Xamarin.Android ebook created for educational purposes. All the content is extracted from Stack Overflow Documentation, which is written by many hardworking individuals at Stack Overflow. It is neither affiliated with Stack Overflow nor official Xamarin.Android. The content is released under Creative Commons BY-SA, and the list of contributors to each chapter are provided in the credits section at the end of this book. Images may be copyright of their respective owners unless otherwise specified. All trademarks and registered trademarks are the property of their respective company owners.
    [Show full text]