|
|
|
|
|
Total Hits: 266 | Today: 0
|
|
Rating:
|
|

This chapter focuses on the Visual Basic .NET Upgrade Wizard. Specifically,we’ll look at the approach the Upgrade Wizard takes to upgrade your Visual Basic 6 application to Visual Basic .NET. This chapter will address questions such as, What will my code look like after it has been upgraded? What types of projects are upgraded? How will my forms, classes, modules, controls, and ActiveX controls be upgraded? What happens when a component, property,method, event, or language statement can’t be ...
|
|
|
|
Total Hits: 162 | Today: 1
|
Author: Michael Amundsen
|
Rating:
|
|

This paper attempts to introduce the Visual Basic.NET language to you regardless of which of these three groups you fall into. For VB novices, this paper will bring you up to speed in a hurry. For VBScripters, this paper will help you make the jump from VBScript to Visual Basic. And finally, for the savvy VB developer, this paper will help you scope out the changes made to your trusty old language....
|
|
|
|
Total Hits: 733 | Today: 0
|
Author: Wrox Press
|
Rating:
|
|

A sample chapter about New Object Oriented capabilities in VisualBasic.Net, from the Wrox book, VB.NET Programming....
|
|
|
|
Total Hits: 4360 | Today: 1
|
|
Rating:
|
|

The Microsoft .NET Framework provides an extremely powerful and flexible mechanism for binding data to properties of controls. Although in the majority of cases you will bind to the displayed value of a control—for example, the DisplayMember property of a ListBox control or the Text property of a TextBox control—you can bind any property of a control to a data source....
|
|
|
|
Total Hits: 876 | Today: 0
|
|
Rating:
|
|

Sample Chapter 8 from VB.NET Language in a Nutshell, 2nd Edition Attributes are declarative tags that can be used to annotate types or class members, thereby modifying their meaning or customizing their behavior. This descriptive information provided by the attribute is stored as metadata in a .NET assembly and can be extracted either at design time or at runtime using reflection.To see how attributes might be used, consider the < WebMethod > attribute, which might appear in code as fo...
|
|
|
|
Total Hits: 414 | Today: 0
|
Author: Prentice Hall.
|
Rating:
|
|

Our payroll application is coming together nicely at this point. It supports adding hourly, salary, and commissioned employees. Each employee's payments may be delivered by mail, direct deposit, or held in the office. The system can calculate the pay for each employee and have it delivered on a variety of schedules. Furthermore, all the data created and used by the system is persisted in a relational database....
|
|
|
|
Total Hits: 333 | Today: 1
|
Author: chris lasater.
|
Rating:
|
|

A Command Pattern allows requests to an object to exist as an object. What does that mean? It means that if you send a request for some function to an object, the command object can house that request inside the object. This is useful in the case of undoing or redoing some action, or simply storing an action in a request queue on an object. When you send the request, it is stored in the object. Then later, if you need to access that same request, or apply the request or some method on the reques...
|
|
|
|
Total Hits: 401 | Today: 0
|
Author: Wrox Publishing
|
Rating:
|
|

This is chapter 12 from the Wrox book Professional VB.NET. It covers inheritance and interfaces, addressing the concept of inheritance, when to use it, and how to create the base classes and derived classes in order to implement inheritance...
|
|
|
|
Total Hits: 295 | Today: 0
|
|
Rating:
|
|

The purpose of this chapter is to familiarize you with some of the basics of working with applications in Visual Basic .NET. We’ll start by building a simple Visual Basic .NET application from scratch. We’ll use this application to introduce the new IDE and explain how to create new Visual Basic projects, and then we’ll follow with a discussion of troubleshooting and debugging techniques and tactics. If you’re already familiar with Visual Studio .NET, you might want to skip to the section on ...
|
|
|
|
Total Hits: 239 | Today: 0
|
|
Rating:
|
|

As you get used to upgrading applications and become more familiar with the modifications needed to get them working in Microsoft Visual Basic .NET, you start noticing that some problems can be remedied with a one-line fix, whereas others require you to recode the problem area or even redesign it. This chapter looks at the most common of the redesign problems and shows you how to get each working in Visual Basic .NET....
|
|
|
|
Total Hits: 250 | Today: 0
|
|
Rating:
|
|

In this chapter, we’ll demonstrate a number of new features that you may want to add to your upgraded applications. You’ll see how to load objects dynamically from other DLLs, create rich graphics that were out of the reach of Visual Basic 6 programming, access the registry with less effort than ever before, and work with the powerful new Microsoft .NET file classes....
|
|
|
|
Total Hits: 245 | Today: 0
|
|
Rating:
|
|

COM+ services and Microsoft Transaction Server components are the backbone of most major Microsoft Visual Basic business applications. This chapter starts with an introduction to implementing COM+ services in Microsoft .NET and then moves on to describe how to upgrade basic COM+ components. Although the emphasis is on transactional objects and object construction, the information here applies to the upgrading of all kinds of COM+ components. From this chapter you should take away a basic underst...
|
|
|
|
Total Hits: 230 | Today: 1
|
|
Rating:
|
|

This chapter gives an overview of the core concepts behind large-scale distributed applications. It then discusses how these concepts are implemented in Visual Basic .NET. We highlight the use of these technologies and describe how to implement them in your applications. Although this chapter covers some interoperability issues (such as how to build wrappers and marshal objects such as ADO Recordsets from the server to the client), there are others you may face if you get creative with your appl...
|
|
|
|
Total Hits: 213 | Today: 0
|
|
Rating:
|
|

This eBook is written for anyone who wants to learn how to become a Visual Basic .NET programmer. Visual Basic is one of the most widely used programming languages in the world. It is also one of the easiest programming languages to learn, so it is a good choice as a first language. Visual Basic.NET can create any type of .NET application just like any other .NET language. In this course you will be introduced to the VB.NET language. This book is an excellent tutorial if you are considering movi...
|
|
|
|
Total Hits: 127 | Today: 0
|
|
Rating:
|
|

Inheritance is the idea that we can create a class that reuses methods, properties, events, and variables from another class. We can create a class with some basic functionality, then use that class as a base from which to create other, more detailed, classes. All these classes will have the same common functionality from that base class, along with new, enhanced or even completely changed functionality. In this paper we'll cover the syntax that supports inheritance within VB.NET. This includes ...
|
|
|
|
Total Hits: 287 | Today: 0
|
Author: Mohan Raphel
|
Rating:
|
|

In this chapter, we are going to walk you through creating a custom module for the CoffeeConnections portal. A custom module can consist of one or more custom web controls. The areas we will cover are: Creating a private assembly project to build and debug your module, Creating View and Edit controls, Adding additional options to the module settings page, Implementing the IActionable, ISearchable, and IPortable interfaces, Using the Dual List Control, Creating a SQLDataProvider, Packaging your m...
|
|
|
|
Total Hits: 384 | Today: 0
|
Author: Jeffrey McManus, Jackie Goldstein
|
Rating:
|
|

This book provides real-world solutions to the data-access issues VB.NET developers face every day and shares the authors' secrets for becoming a more effective database programmer using .NET technologies. Chapter 8 explains the use of Visual Studio Database Projects for managing SQL scripts....
|
|
|
|
Total Hits: 362 | Today: 0
|
|
Rating:
|
|

Get a focused, first look at the features and capabilities in Microsoft Visual Basic 2005, Visual Studio 2005, and .NET Framework 2.0. If you currently work with Visual Basic 6, these authors fully understand the adoption and code migration issues you’ll encounter. They’ll step you through a quick primer on .NET Framework programming, offering guidance for a productive transition. If you already work with .NET, you’ll jump directly into what’s new, learning how to extend your existing skills. Fr...
|
|
|
|
Total Hits: 1302 | Today: 0
|
Author: Microsoft
|
Rating:
|
|

This download includes a master set of Visual Basic and Visual C# code samples demonstrating various aspects of the language in the following areas: syntax, data access, Windows Forms, Web development and Web services, XML, security, the .NET Framework, file system and file I/O, interop and migration issues, COM+, ADO.NET, and advanced topics including graphics with GDI+, remoting, serialization, MSMQ, and Windows services....
|
|
|
|
Total Hits: 745 | Today: 0
|
Author: Sams Publishing
|
Rating:
|
|

An extensive introduction to programming using the new Windows client development model in Visual Basic .NET, covering the windows form designer, events, form resizing, dialog boxes and more....
|
|
|
|
|
|