Search - Articles - Dev Forums - Favorites - Member Login  
DevASP.NET for ASP.NET, VB.NET, XML and C# (C-Sharp) Developers Friday, September 03, 2010

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 > Articles & Samples > Visual Basic.Net
Search:
What's New - What's Hot
Listings for Assembly Assembly (30)
Listings for Attributes Attributes (26)
Listings for Automation Automation (47)
Listings for Class Libraries Class Libraries (68)
Listings for Command-Line Command-Line (1)
Listings for Compiling Compiling (7)
Listings for Component Component (118)
More Categories for Database Database (439)
Listings for Debugging Debugging (22)
Listings for Delegates Delegates (31)
Listings for Deployment Deployment (48)
Listings for Directory Directory (10)
Listings for EMail EMail (38)
Listings for Error Handling Error Handling (28)
Listings for Event Handling Event Handling (69)
Listings for Exception Exception (37)
More Categories for File Management File Management (38)
Listings for Form Handling Form Handling (12)
Listings for GDI+ GDI+ (290)
Listings for Graphics & Charts Graphics & Charts (126)
Listings for Guest Book Guest Book (5)
Listings for Image processing Image processing (14)
More Categories for Language Reference Language Reference (55)
Listings for Messaging Messaging (11)
Listings for Migration to VB.NET Migration to VB.NET (85)
Listings for Miscellaneous Miscellaneous (545)
Listings for Namespaces Namespaces (63)
Listings for Object Pooling Object Pooling (17)
More Categories for Office Documents Office Documents (66)
Listings for OOP OOP (193)
Listings for Operating System Operating System (18)
Listings for Performance Performance (18)
Listings for Plugins Plugins (40)
Listings for Reference Reference (96)
Listings for Reflection Reflection (29)
Listings for Registry Registry (11)
Listings for Regular Expression Regular Expression (34)
Listings for Reports Reports (23)
Listings for Sample Programs Sample Programs (1023)
Listings for Search & Directory Search & Directory (7)
Listings for Serialization Serialization (31)
More Categories for Server Controls Server Controls (377)
Listings for System.Net System.Net (55)
Listings for Threading Threading (69)
Listings for Tips & Tricks Tips & Tricks (643)
Listings for User Controls User Controls (118)
Listings for VB.Net and XML VB.Net and XML (134)
Listings for Web Services Web Services (90)
Listings for Windows Form Windows Form (398)
Listings for Windows Services Windows Services (56)


Board and Graphics Object in GDI+    Version: 0.00       Price: $0.00   
Total Hits: 1  |  Today: 1 Author: Felipe Ramos       Rating:  
Read Reviews | Write Review |   Your Rating: 

The other day while working on one of the slow projects that have a lot of repetitive coding I did a couple of Google searches for programming challenges or things to keep me motivated. I came across David Bolton section at About.com and found an interesting challenge which lead to this article on the knights tour with C# and GDI+.
First I would like to point out that his is not the best solution, but one that works great, perform well, and lends itself to extensibility....

INI Reader / Writer Class for C#, VB.NET, and VBScript    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: Ludvik Jerabek       Rating:  
Read Reviews | Write Review |   Your Rating: 

Originally, this started out as a C++ class (CIniFile) in 2005. Since then, I rewrote CIniFile so it would be more efficient. The following code is a C#\VB.NET\VBScript port of the C++ code. Almost all the class names are the same. with the exception to the leading "C" which has been dropped. The current class names are IniFile, IniSection, and IniKey....

Set the BackColor to SSTab in VB6 (workaround)    Version: 0.00       Price: $0.00   
Total Hits: 3  |  Today: 0 Author: MeritUSA       Rating:  
Read Reviews | Write Review |   Your Rating: 

I couldn't really find any solution to this, but after this workaround did what I needed I figured I could share it. The actual tabs will not change color with this workaround, but I can live with that....

Close Your Application to the Notification Area    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: Gregory.Gadow       Rating:  
Read Reviews | Write Review |   Your Rating: 

This article expands on an earlier one of mine, Create a System Tray Application in VB.NET[^]. If you are unfamiliar with how to write applications for the notification area, that might be a good place to start....

Storing Dataset in a file using Object Serialization    Version: 0.00       Price: $0.00   
Total Hits: 1  |  Today: 0 Author: ClassCoder       Rating:  
Read Reviews | Write Review |   Your Rating: 

in this sample we are storing a dataset object in a binary file using object serializtion , and after serializtion process we will make deserialization to get all inforamtion from tables without connectiing to database...

Consuming URL Shortening Services - is.gd    Version: 0.00       Price: $0.00   
Total Hits: 1  |  Today: 0 Author: Mohammad Elsheimy       Rating:  
Read Reviews | Write Review |   Your Rating: 

Another article of our series that talks about accessing URL shortening services programmatically.

This article is talking about is.gd shortening service, how you can use it, and how to access it via your C#/VB.NET application....

The Story of ICalculated...the Calculated Column for a Class & More    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: Aaron @ Autotex Pty Ltd       Rating:  
Read Reviews | Write Review |   Your Rating: 

Having been programming in some other MultiValue based database programming languages for some years I have always found it very handy to have the ability to define a dictionary of fields in a database that are not just stored fields, but have the ability to use calculated fields with constants and variables based on the stored fields in the rows......

Build a Simple Gmail Notifier using Windows Forms    Version: 0.00       Price: $0.00   
Total Hits: 1  |  Today: 0 Author: Shoban Kumar       Rating:  
Read Reviews | Write Review |   Your Rating: 

Google does not have an official Gmail API. Having one would have made it very easy to create a notification application. In this article, I will show you how to exploit the Feed facility of Gmail to build our own Gmail Notifier....

BING Desktop Translator using C# and VB.NET    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: Shoban Kumar       Rating:  
Read Reviews | Write Review |   Your Rating: 

In this article we will see how we can create a simple Desktop Translator which uses the Bing Translator API. Next time when you want to translate a text, you do not have to open a new web browser and head to Bing or Google Translator. Just use this simple Translator I demonstrate here....

Bar chart in DataGridView    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: Santiago Santos Cortizo       Rating:  
Read Reviews | Write Review |   Your Rating: 

Sometimes it's useful to graphically show the value of a column in a DataGridView so the user can compare rows easily. This is an example of implementing this on any DataGridView by only calling a shared class method from the DataGridView's CellPainting event, as I've described in my blog http://ensamblareficiente.blogspot.com (Spanish)....

VBScript Interfaces in SQL Server 2000 Let You Transform Data and Provide Reports to Your Users    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: Alok Mehta and Daniel Williams       Rating:  
Read Reviews | Write Review |   Your Rating: 

Application service providers often must send information to clients automatically rather than on-demand. For example, a manufacturer may want to know each day how many of their products were sold by a retail chain. While SQL Server is ideal for maintaining this type of database, you have to write scripts to get the data out in a client-friendly format. Here you will see how you can use Data Transformation Services (DTS), a powerful tool in SQL Server, to automate the retrieval and formatting of...

Tackle Data Concurrency Exceptions Using the DataSet Object    Version: 0.00       Price: $0.00   
Total Hits: 0  |  Today: 0 Author: David Burgett       Rating:  
Read Reviews | Write Review |   Your Rating: 

ADO.NET provides many techniques for improving the performance of data-intensive applications and for making them easier to build. The DataSet, the hallmark of the ADO.NET object model, serves as a miniature, disconnected facsimile of a data source. While using the DataSet improves performance by reducing expensive trips to the database server, it also introduces the possibility of multiple users attempting to change the same data simultaneously, thereby generating data concurrency exceptions. T...


DevASP.Net - Disclaimer - Privacy
© 2002-2010 DevASP.net