Programmer's Heaven - For C C++ Pascal Delphi Visual Basic Assembler C# .Net java JSP ASP ASP.NET Javascript developers!

Members
Username:

Password:

Auto-login

Register
Why register?
Forgot Password?
Blogs new Blog section
Jobs
Webtools
Message Boards
FAQ
CodePedia
Free Magazines
User search
What's New
Top lists
RSS Feeds RSS Feed

Submit content
Contact Us
Link To Us
Help



Advanced Search
Newsletter
E-mail:


More information
Current area: HOME -> Visual Basic & VB.NET -> Latest articles Adds this page to your personal favorites
 
  Latest articles in this zone

Latest files
Latest links
Latest articles

DataGrid - Master/Child/Slave Details in VB.NET
Master Slave Relationship in Datagrid in VB.NET while expanding and collapsing rows using client side Javascript.
Visits: 28 Updated: 2008-3-16  Rating: (Not Rated)  More info & Ratings
Tutorial Using Unicode in Visual Basic 6.0
Exhaustive Tutorial on Using Unicode in Visual Basic 6.0
Visits: 120 Updated: 2007-11-10  Rating: (Not Rated)  More info & Ratings
OpenFileDialog in Visual Basic .Net
The Visual Basic 6.0 DirListBox control has been rendered obsolete by the OpenFileDialog and SaveFileDialog components in Visual Basic 2005. Conceptual Differences The Visual Basic 6.0 DirListBox control was typically used to display directories and paths in a File Open or Save dialog box. In Visual Basic 2005, the Windows Forms OpenFileDialog and SaveFileDialog components provide the ability to create standard Windows dialog boxes for working with files, in most cases eliminating the need for the DirListBox control.
Visits: 257 Updated: 2007-7-28  Rating: (Not Rated)  More info & Ratings
Creating Excel Spreadsheets from VB.NET
This tutorial teaches you how to create an Excel spreadsheet with multiple worksheets. The tutorial includes step-by-step instructions and full source code.
Visits: 165 Updated: 2007-7-23  Rating: (Not Rated)  More info & Ratings
Yes, Virginia, Visual Basic is a Real Language
Once upon a time, there was a simple, interpreted language used for teaching new programmers called BASIC - the Beginner's All Purpose Symbolic Instruction Code. Compared to modern standards, this was a very simplistic language, with no compiler, no run times, no linking, and no GUI...
Visits: 441 Updated: 2007-6-11  Rating: 
Design Patterns In VB.NET School
Using design patterns can lead to better designed and implemented object oriented programs. They can also help make code more understandable. The Programmer's Heaven design patterns school covers each design pattern, complete with explanations and code examples in VB.NET. It also looks at the approach taken by the creators of design patters and the motivation for using them in your own development.
Visits: 1242 Updated: 2007-4-10  Rating: 
VB InStr function
InStr is a powerful VB string function. It's the perfect way to search and test strings in robust Visual Basic applications. This article shows how to call InStr to perform advanced text processing tasks quickly. The article also discusses case insensitivity, vbTextCompare, Option Compare Text and InStr related bugs.
Visits: 529 Updated: 2007-1-14  Rating: (Not Rated)  More info & Ratings
Optimize string handling in VB6 - Part II
Make your Visual Basic apps process text fast as lightning. This article dives deep into the performance of the VB6 String functions. We learn the functions to use and the ones to avoid. We also learn how to call the Windows Unicode API functions and how to build really, really huge strings without crashing our VB6 apps.
Visits: 320 Updated: 2007-1-14  Rating: (Not Rated)  More info & Ratings
Hobbyist's Review of Visual Basic 2005 Express
Review of the free Visual Basic 2005 Express Edition by a hobbyist who was new to the language. Includes overviews of the VB 2005 language, the .NET Framework and the My namespace.
Visits: 343 Updated: 2006-12-7  Rating: (Not Rated)  More info & Ratings
ASP Tutorials - Microsoft Scripting Runtime DLL
This tutorial helps you understand: "scrrun.dll"; "Dictionary" Class; "FileSystemObject" Class; "Drive" Class; "Folder" Class; "File" Class; "TextStream" Class.
Visits: 362 Updated: 2006-11-12  Rating: (Not Rated)  More info & Ratings
Optimize loops
Loops make programs run slowly. A few unoptimal lines can make an app run at a snail's pace. This article presents performance tricks for squeezing the max speed out of your code. The focus is on processing data arrays in loops. We restructure loops, rebuild function calls, fine-tune conditionals, choose fast operators, pre-calculate values and access arrays the proper way.
Visits: 408 Updated: 2006-10-13  Rating: (Not Rated)  More info & Ratings
TeamVision
TeamVision was originally based upon the TaskVision code sample offered via the WindowsForms website. TeamVision is a simple task management application built using the Windows Forms classes of the Microsoft® .NET Framework an integral Windows® component that supports building and running the next generation of applications. TeamVision allows authenticated users to view, modify, and add projects and tasks that are shared with other users. It may be used in any number of scenarios, from bug tracking to managing work orders or customer service requests. Its primary purpose is to provide quality, sample source code to developers interested in building data-centric applications with ADO.NET using the .NET Framework
Visits: 527 Updated: 2006-8-20  Rating: (Not Rated)  More info & Ratings
Remote file compression with VB.NET
Transferring large files over the Internet can be speeded up significantly if compression/decompression is applied before/after the upload/download operation. This article shows how to do that in VB.NET with a freeware file sharing library.
Visits: 637 Updated: 2006-5-23  Rating: (Not Rated)  More info & Ratings
Developing the Components for the Middle Tier in VB .Net
Middle tier equates to the Business tier or Application tier or Logical tier and contains the logic of the application. Middle tier simplifies the client´s access to the database (SQL Server) by isolating the business services from the Database and Presentation tiers. The components of the Application or Business tier are frequently called business services. Middle tier runs on a server and is often called the application server.
Visits: 532 Updated: 2006-4-28  Rating: (Not Rated)  More info & Ratings
Get List Of Local Users
Find all local users in you PC and list them. The code is written using Visual Basic.
Visits: 497 Updated: 2006-3-25  Rating: (Not Rated)  More info & Ratings
Save memory
Make your programs use less memory without sacrificing their functionality. This article shows a number of tricks to preserve RAM while your program runs.
Visits: 539 Updated: 2006-3-20  Rating: (Not Rated)  More info & Ratings
Copying vs. Cloning
We start by saying that (almost) everything in .NET is an Object (capitalisation intentional) not just something we can describe as an object, but is derived from the Framework Class System.Object. The Object Class is the ultimate parent of each and every Object contained either within the Framework or which is derived from it. Unfortunately, below the System.Object level, things get a bit more complicated and the idea of an Object having a Type must be introduced.
Visits: 454 Updated: 2006-2-21  Rating: (Not Rated)  More info & Ratings
eNumerous Options Using Enumerations
For most of us, enumerations provide a means of selecting one of many options. What some of us don't know is that they also provide a means for us to specify more than one option at a time in one variable or argument. I came to this realization when I happened to visit a couple of students who were working on a college project in Visual Basic 6 recently. A part of their application allowed a user to select one or more of a set of eight options. To do this, they had 8 Boolean variables to determine which options were selected and I had to come in and point out to them that using an enumeration was the way to go.
Visits: 324 Updated: 2006-2-21  Rating: (Not Rated)  More info & Ratings
Web Service vs Web Workspace Part II By Robbe Morris
XML plays a key role in moving data from our desktop app to the web site and back again. Speed is also a key factor and anyone who has worked with XML files knows they can get quite large. With that in mind, I went looking for an XML streaming compression component and found a fantastic one from XCeed.
Visits: 454 Updated: 2006-2-21  Rating: (Not Rated)  More info & Ratings
Refactoring VB in Visual Studio 2005
Refactoring can improve the internal structure of your VB code without changing its external behavior. Use it to remove the subjectivity of what is good code and what is less-good code.
Visits: 560 Updated: 2006-2-17  Rating: (Not Rated)  More info & Ratings
Refactoring VB in Visual Studio 2005
Refactoring can improve the internal structure of your VB code without changing its external behavior. Use it to remove the subjectivity of what is good code and what is less-good code.
Visits: 486 Updated: 2006-1-17  Rating: (Not Rated)  More info & Ratings
Reading and Writing XML in .NET Version 2.0
In this series of three articles, we'll look in detail at how the new features of the XmlReader and XmlWriter classes in version 2.0 of the .NET Framework can be used to read and write XML documents, and interact with the new XML document store objects.
Visits: 705 Updated: 2006-1-16  Rating: (Not Rated)  More info & Ratings
Use XSLT to Write a Simple Stored Procedure Generator
Writing stored procedures (SPs) from scratch is boring and time consuming. Some tools may do it for you, but we all have our coding styles. Learn how to generate SPs the way you like best.
Visits: 659 Updated: 2005-12-27  Rating: (Not Rated)  More info & Ratings
Working with Partial Types
This article talks about Partial types which is one of the new feature of Micrsoft .NET Framework 2.0, this feature is available with both the languages C# 2.0 and Visual Basic 2005.
Visits: 3195 Updated: 2005-12-9  Rating: 
Passing Values between Forms in .NET 1.x with C# and VB.NET examples
I wrote this article in response to the almost overwhelming number of requests on forums on how to pass a variable from a one Windows Form to another. In fact saying that it is going between one form and another is somewhat of a misnomer because this will work for any type of object not just Forms. This seems to be one area in which beginners in C# and VB.NET often get stuck. So, rather than have to repeat myself often in forums I wrote this article so that I could point people at it so that they will have the benefit of a full explanation as well as the answer to their problem.
Visits: 2779 Updated: 2005-11-22  Rating: (Not Rated)  More info & Ratings

Did you know that...
You can exchange messages with your friends at Programmers Heaven?
 

Sponsored Links 
SFTP components for .NET
Add complete SSH and SFTP support to your .NET framework application
Virtual File System SDK
Create your own file systems in Windows and .NET applications
PureCM Software Configuration Management
Version control and integrated issue tracking - powerful and easy to use. Get your FREE trial now!
CSTSOFT Instrumentation .NET & ActiveX Components
A collection of 13 instrumentation .NET/ActiveX/VCL components including Gauge,Knob,LED,Trend etc.
Software Localization Tool Sisulizer
Localize DotNet, C++ Builder, Delphi, C/C++, Visual Basic & Java apps & html help. Try Sisulizer now
Buy a link now

Advertisement

  Free Magazine  
Free Magazines
Advanced Imaging provides the latest information on the imaging hardware, software and peripherals that are used in capturing, displaying, manipulating and storing images.
subscribe now


Newsletter Submit Content About Advertising Awards Contact Us Link to us    
© 1996-2008 Community Networks Ltd All rights reserved. Reproduction in whole or in part, in any form or medium without express written permission is prohibited. Violators of this policy may be subject to legal action. Please read Terms Of Use and Privacy Statement for more information. Development by .NET konsult - Synchron Data.