Recent Posts
S3 Tech Blog
Return To Blog Listing
S3 tech blog lets u to know about the technologies
, programming , softwares , download movies , videos and mp3 songs , download source codes , watch online movie , and much more ...
Recent Posts Tagged With 'vb.net'
Flashing Stock Alert Application using C# and the Basic Stamp II
Flashing Stock Alert Application using C# and the Basic Stamp IIBy Mike Gold September 15, 2006 This article describes an application for reading stock quotes into an excel spread sheet and alerting the user when the stock quotes have ex...
Error message when you try to run a Visual C# project in the Visual Studio 2005 IDE: "The binding handle is invalid"
SYMPTOMS When you try to run a Microsoft Visual C# project in the Microsoft Visual Studio 2005 IDE, you may receive the following error message: Error while trying to run project: Unable to start debugging. The binding handle is invalid. You can run...
Authenticate in ASP without NT
There is a simple alternative to NT authenication is to cheat. Here's a "no NT involved" version of security.inc; just put <!--#INCLUDE FILE="security.inc"--> at the top of each ASP page you want to protect, and put this in security.inc: <%...
Rendering Data with ASP.NET Web Controls
Introduction : ASP.NET provides several Web controls that make displaying data on a Web page easier than ever before. This chapter shows you how to take advantage of a process called data-binding to easily display data in a variety of formats using v...
Sending Emails Through Outlook using C# and VB.NET
IntroductionIn this article I will give you an example of how to add an e-mail to your Microsoft Outlook outbox folder using C# and/or VB.net. This example also show how easy it is to call functions written in VB.net from C#The code consists of three...
.NET Tracing Tutorial
The Trace and Debug classes are included in the .NET framework for adding tracing support in an application. Proper tracing in the code helps in application debugging, bug fixing, and profiling. Three unique features of the .NET tracing support are:...
An In-Depth Coverage of ASP.NET 2.0's Master Pages: Part 2 of 3
Specifying a Master Page You can specify the master page for a content page in two different ways: At the page level: In the content page's @Page directive, you can specify the master page. This is the method used when you create a content page thro...
Find Out What's Taking Your .NET Code So Long to Run
Profiling generally is learning about your code's behavior. A big part of profiling is knowing where your code spends a lot of its time. Although I don't encourage profiling in early development, it can become critical when debugging subsystems that...
Whammy Tracing: Hassle-Free .NET Debugging
When I write an application with 40 or 50 thousand lines of code, its major capabilities can be tedious to debug line by line. I'd rather run these features at full speed and then go back and audit what actually occurred. The debugging tool that this...
ASP.NET Tip: Adding Tracing to an Application
For some applications, such as console or Windows Forms applications, it's fairly easy to step through them to debug an issue. However, tracing down errors in web applications and services can be difficult, especially if they happen only in productio...
Additional Debugging Techniques in C#
Mike Borromeo's "Debugging Techniques in C#" presented a useful Debug class that can log debug or trace messages with caller and code location information automatically. There is one assumption made by the Debug class that was presented that is not a...
Implementing a Generic Object State Dumper
Every .NET class inherits the ToString method from the root Object class. This method, ToString, has several uses. One of its main uses is to dump the state of the class objects to facilitate debugging process. For example, in the following class, My...
Building a Logging Object in .NET
Welcome to the next installment of the .NET Nuts & Bolts column. In this column we talk about how you can use some of the classes in the .NET Framework to log information to different locations. The locations of choice in this article will be to...
