Search - Articles
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Tuesday, March 03, 2009
Dev Articles
Search Directory
ASP.NET
VB.Net
C-Sharp
SQL Server
 

FREE 12 month online training for ASP.NET & MS Expression Studio and a Free copy of MS Expression Web with Windows Server Purchase

Home >Search > VB.Net
Search:
What's New - What's Hot
Listings for Articles & Samples Articles & Samples (5931)
Listings for Downloads Downloads (5)
Listings for Errors and Bugs Errors and Bugs (69)
Listings for Introduction Introduction (42)
Listings for Knowledge Base Knowledge Base (498)
Listings for Sample Chapters Sample Chapters (25)
Listings for Support WebCasts Support WebCasts (5)
 


Make the Transition from Traditional Visual Basic Error Handling to the Object-Oriented Model in .NET  Version: 0.00     Price: $0.00  
Total Hits: 7  |  Today: 0Author: Jesse Liberty      Rating:  
Read Reviews | Write Review |  Your Rating: 

If you're used to Visual Basic 6.0 and you're making the transition to Microsoft .NET, you will find that error handling is quite different from what you've used for years. Visual Basic .NET uses a more object-oriented solution to signaling and responding to unexpected problems while your program is running. This approach, called structured exception handling, has a number of advantages over the On Error statements provided in previous versions of Visual Basic. For instance, exceptions give you ...

Walkthrough: Serializing Collections of Standard Types with the DesignerSerializationVisibilityAttribute  Version: 0.00     Price: $0.00  
Total Hits: 27  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Your custom controls will sometimes expose a collection as a property. This walkthrough demonstrates how to use the DesignerSerializationVisibilityAttribute class to control how a collection is serialized at design time. Applying the Content value to your collection property ensures that the property will be serialized....

Defining Default Values with the ShouldSerialize and Reset Methods  Version: 0.00     Price: $0.00  
Total Hits: 15  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

ShouldSerialize and Reset are optional methods that you can provide for a property, if the property does not a have simple default value. If the property has a simple default value, you should apply the DefaultValueAttribute and supply the default value to the attribute class constructor instead. Either of these mechanisms enables the following features in the designer:
* The property provides visual indication in the property browser if it has been modified from its default value....

How to: Handle Errors and Exceptions that Occur with Databinding  Version: 0.00     Price: $0.00  
Total Hits: 13  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

Oftentimes exceptions and errors occur on the underlying business objects when you bind them to controls. You can intercept these errors and exceptions and then either recover or pass the error information to the user by handling the BindingComplete event for a particular Binding, BindingSource, or CurrencyManager component....

Deserialization Progress, and More     
Total Hits: 93  |  Today: 0Author: Stephen Toub      Rating:  
Read Reviews | Write Review |  Your Rating: 

In my Windows® Forms application, I use a BinaryFormatter to save a large amount of application state, sometimes serializing to disk very large objects. At a later point, this state file needs to be loaded and deserialized by the application, and this deserialization process can take a measurable amount of time. Currently for both serialization and deserialization, I show a marquee progress bar, but that only provides an indication to the user that something is happening. For deserialization, I'...

Remote Data Access Synchronization with SQL Server 2005 Compact Edition and Visual Basic.NET     
Total Hits: 90  |  Today: 0Author: Microsoft Corporation      Rating:  
Read Reviews | Write Review |  Your Rating: 

In this tutorial, you will learn how to create a Microsoft Windows Forms application using Microsoft Visual Basic.NET that synchronizes data between a Microsoft SQL Server 2005 database and a Microsoft SQL Server 2005 Compact Edition database using Microsoft SQL Server 2005 Compact Edition Remote Data Access (RDA)....

COM+ and MTS, DCOM and MSMQ, Serialization in .NET     
Total Hits: 105  |  Today: 0Author: Ken Spencer      Rating:  
Read Reviews | Write Review |  Your Rating: 

Developers frequently ask me for clarification on Microsoft's strategy for the future with regard to COM+, Microsoft® Transaction Services (MTS) with its features of JIT activation and object pooling, Microsoft Message Queuing (MSMQ), and DCOM. What's in store for Web farms versus app servers versus ASP and component integration? Since everybody's clamoring for answers, let's take these questions one at a time. First, I'll deal with the COM+ and MTS issue....

Life Without On Error Goto Statements     
Total Hits: 87  |  Today: 0Author: Deborah Kurata      Rating:  
Read Reviews | Write Review |  Your Rating: 

In previous versions of Visual Basic, the best practice for handling errors was put On Error Goto in every routine, but there is no On Error statement in Visual Basic .NET. This article describes how to use new Visual Basic .NET features to handle errors without using On Error Goto statements....

Introduction to Messaging in .Net using MSMQ     
Total Hits: 669  |  Today: 0Author: w3coder      Rating:  
Read Reviews | Write Review |  Your Rating: 

This Article explains the usage of sending and receiving messages using MSMQ in VB.Net...

HOW TO: Obtain Extended Error Information in the DataSet Using Visual Basic .NET (Q308058)      
Total Hits: 451  |  Today: 0Author: MSDN      Rating:  
Read Reviews | Write Review |  Your Rating: 

The DataAdapter class throws generic exceptions when problems occur. This article demonstrates how to obtain a descriptive error message for each row and column that is in fault in any table in a given DataSet class. This is very useful in update scenarios when it is important to check if there are errors in any row or column....

Error Handling in Visual Basic .NET     
Total Hits: 1714  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Discusses how error handling differs between Visual Basic .NET and Visual Basic 6.0. Main topics include Try/Catch blocks, Exception objects, procedure callers, and how to create your own Exception classes.
...

HOW TO: Handle Events in Visual Basic .NET (Q319823)     
Total Hits: 806  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This step-by-step article demonstrates how to connect an event of a control in Visual Basic .NET to the code that will execute when the event occurs. Because Visual Basic is an event-driven language, the ability to execute code when an event occurs is critical....

ASP.NET and VB.NET Error Handling     
Total Hits: 2886  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

One of the main features of ASP.NET over ASP is it's new error handling features. The only way to capture errors in the ASP/VBScript was using the "On Error Resume Next" statement and checking each line for an error with "If Err.Number <> 0 Then " statements. Developers who where using JScript instead of the VBScript at the server-side where lucky. They've had access to the "Try... Catch" statements provided by JScript. Well it's all over now. Now all the .NET enabled languages support better er...

Using the Try.Catch.Statement     
Total Hits: 1935  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Structured error handling will be a completely new concept to Visual Basic and VBScript developers. Since the .NET Framework requires the use of Strong Typed Languages, such as Visual Basic it is time to learn how to use this method of error handling....

Relations Between DataTables in a DataSet     
Total Hits: 1048  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is the forth installment from the Programming Visual Basic .NET chapter on ADO.NET, focusing on binding a DataSet to a Windows and a Web Forms DataGrid....

Using the Windows API in VB.NET     
Total Hits: 1263  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

We have been using the Windows API's to get the most out of the Windows Operating system, .NET extends its support for using the Windows API's , check out how we can use the MessageBox API to display a simple MessageBox....

HOW TO: Write to an Event Log Using Visual Basic .NET (Q301279 )     
Total Hits: 2012  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This article demonstrates how to add your own entries to the operating system's event log using the Microsoft .NET Framework....

VB.NET Windows Services     
Total Hits: 3321  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Windows NT introduced the concept of a long running application called NT Services (now called Windows Services). These are usually applications that run in the background and provide services to client applications. Under Windows NT, writing a service was much more difficult that writing a simple application. Further, since services were multithreaded, it was not easy writing a service in VB. You would have to write the functionality in VB and encapsulate that within a C++ wrapper. However.....

Working with Data-bound Controls in VB.NET     
Total Hits: 2128  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

This is a VB.NET version of my C# tutorial "Working with Data-bound controls in C#". Working with data-bound controls using .NET ADO.NET and WinForms is so fun. You write few lines of code and these controls take care of rest for you. In this article, I’m going to show you how to use these data-bound controls in your .NET WinForms applications using VB.NET.
...

Object Serialization in VB .NET     
Total Hits: 2089  |  Today: 0      Rating:  
Read Reviews | Write Review |  Your Rating: 

Serialization is the process of converting a graph of objects, into a linear sequence of bytes. That sequence of bytes can be sent elsewhere (for example, to a remote computer) and Deserialized, thereby making a clone in that remote memory of the original graph of objects. The process of serialization is very easy with .NET and its open too. Every VB 6 programmer have used this feature of Serialization knowingly or unknowingly. When any class in ActiveX dll or ActiveX exe is created , there are ...



Disclaimer - Privacy
© 2002-2012 DevASP.net