Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
VB VB (1648)
VB.net VB.net (736)
C# C# (15)
ASP.net ASP.net (779)
ASP ASP (41)
VC++ VC++ (25)
PHP PHP (0)
JAVA JAVA (4)
JScript JScript (5)
  Database
» SQL Server (708)
» ORACLE (5)
» MySQL (0)
» DB2 (0)
Automation
» C/C++/ASM (11)
» Microcontroller (1)
» Circuit Design (0)
OS/Networking
» Networking (5)
» Unix/Linux (1)
» WinNT/2k/2003 (8)
Graphics
» Flash (0)
» Maya (0)
» 3D max (0)
» Photoshop (0)
Links
» ASP.net (2)
» PC Interfacing (1)
» Networking (4)
» SQL Server (4)
» VB (23)
» VB.net (4)
» VC (3)
» HTML/CSS/JavaScript (10)
Tools
» Regular Expr Tester
» Free Tools

(Page 18 of 25) 735 Result(s) found 

 

Showing help
Total Hit (2671) The System.Windows.Forms.Help class encapsulates the HTML Help 1.0 engine and lets you display the index, the search page, or a specific topic in an HTML file in HTML Help format or a compiled help file (.chm) authored with the HTML Help Workshop or some third party tool. This class exposes two ....Read More
Rating
Language features - DateTime and TimeSpan Objects
Total Hit (3337) In this article we will explore some key language features which are frequently used by VB programmers. «big»DateTimes in VB.net«/big» VB.net provides many new features for DateTime datatype. Unlike VB6 in VB.net you can initialize DateTime variable with verity of initial values. In VB.net you ....Read More
Rating
Sending Mail in VB.NET using Sockets
Total Hit (3521) This class provides all the functionality. This class was implemented without error handing on purpose to make it easier to understand the program flow.
Rating
How to clear all controls of a winform or user control?
Total Hit (4216) Here is the small code snippet to clear most of all controls on your form. This code also take care of containers like group box, panel ... etc. «code LangId=2» Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ClearControls(Me.Contr ....Read More
Rating
A generic benchmark routine
Total Hit (3367) You often need to benchmark a piece of code, which you usually do as follows: «Code LangId=2» Dim start As Date = Now ' insert here the code to benchmark Dim elapsed As TimeSpan = Now.Subtract(start) Console.WriteLine("Total time: {0} secs.", elapsed) «/Code» Thanks to delegates, you can w ....Read More
Rating
Parsing and validating string dates
Total Hit (2748) If you have a string variable that should specify a date (asked in input to the user, for example), you can parse the string and get a Date variable by using the Date.Parse method. If the input string is not in a valid format, this method throws an exception though. Follows a routine that parses a s ....Read More
Rating
CountOccurrences - Counting the number of string occurrences
Total Hit (2843) «Code LangId=2» ' Count the number of string occurrences Public Function CountOccurrences(ByVal source As String, ByVal search As String, _ Optional ByVal ignoreCase As Boolean = False) As Integer Dim options As System.Text.RegularExpressions.RegexOptions ' set the search options a ....Read More
Rating
CheckWindowsUser - Check whether a username/password pair is correct
Total Hit (3381)
Rating
Adding external commands to VS.NET's Tools menu
Total Hit (2691) The VS.NET's Tools menu can be customized with your own commands, to launch external programs. For example, you may want to have a command that opens the current project's folder in a Windows Explorer window, to easily manage the project's files. To add such a new command, click Tools | External Too ....Read More
Rating
GetTableColumns - Retrieving the column names of a table in a database
Total Hit (2655)
Rating
PlayWAV - Playing a WAV file
Total Hit (2570)
Rating
Write applications that take arguments
Total Hit (3862) C# has a nice feature that VB.NET lacks: the ability to define a Main procedure that takes an array of strings, each one containig one of the arguments passed on the command line. It's easy to mimick this feature in VB, though. In fact, while the Command function is still supported in VB.NET, you ....Read More
Rating
Resolve an internet host address
Total Hit (2753) The System.Net.Dns class exposes a few static methods that let you resolve an internet domain name - such as www.vb2themax.com - into a 4-part numeric IP address, also known as dotted-quad notation. The Resolve static method takes a string and returns an IPHostEntry object; you can learn the actu ....Read More
Rating
GetValidationSummary - Builds a validation summary for all the controls inside a container
Total Hit (2951) «Code LangId=2»' Return a validation summary string with all the error messages, if any, ' of the controls inside the specified container, ' associated to an ErrorProvider control ' ' Example: ' Dim summary As String = "" ' ' display the validation summary for all the controls on the ....Read More
Rating
Map an enumerated value to a set of OptionButton controls
Total Hit (2565) In VB6 and previous version, displaying an enumerated value in a group of option buttons is quite simple, provided that the option buttons be grouped in a control array. VB.NET doesn't support control arrays, so you can't reuse the same simple coding techniques. However, you can prepare a couple of ....Read More
Rating
Trimming strings
Total Hit (3053) Visual Basic .NET strings expose three trim methods: TrimStart, TrimEnd, and Trim - which trim one or more characters from the beginning, the end, or both the beginning and end of the string. They therefore work like VB6's LTrim, RTrim, and Trim functions, with an important difference: you can decid ....Read More
Rating
IncrementString- Incrementing the numeric right-most portion of a string
Total Hit (2824) «Code LangId=2» ' Increment the numeric right-most portion of a string ' Example: MessageBox.Show(IncrementString("test219")) ' => 220 Function IncrementString(ByVal text As String) As String Dim index As Integer Dim i As Integer For i = text.Length - 1 To 0 Step -1 Sel ....Read More
Rating
This is a link to a different site ADO.NET Overview
Total Hit (584) ADO.NET is an evolution of the ADO data access model that directly addresses user requirements for developing scalable applications. It was designed specifically for the web with scalability, statelessness, and XML in mind. ADO.NET uses some ADO objects, such as the Connection and Command object ....Read More
Rating
This is a link to a different site Creating a Custom Spell-Checker with Word 2003 and Visual Basic .NET
Total Hit (989) You can tie into the objects and methods of Microsoft Office Word 2003 to create powerful applications. This article demonstrates using the Word object model in conjunction with Microsoft Visual Basic .NET to create a simple spell-checker whose functionality you can add to your own applications. ....Read More
Rating
This is a link to a different site .NET Remoting - Part I
Total Hit (1209) Remoting provides a flexible architecture for distributed applications in .NET. This series of articles shall examine the topic of remoting.
Rating
This is a link to a different site An Introduction to Regular Expressions and Their Use in .NET I...
Total Hit (2543) Regular expressions pop up in several locations in .NET and its supporting technologies. A prime example would be in the RegularExpression server validation control but the power of regular expressions are also utilised elsewhere, for example within XSD schemas with the pattern facet. This gives a g ....Read More
Rating
This is a link to a different site How Do I...Use XML and the DataSet?
Total Hit (1094) These topics provide an introduction to the interaction between the DataSet and XMLDataDocument objects.
Rating
This is a link to a different site How Do I...use the Xml Schema Object Model?
Total Hit (557) This sample illustrates how to read two XML Schema Definition language (XSD) schemas into a SchemaCollection, navigate through the schemas that they represent, and create a fictious XML output that is representative of the schema's. This sample shows how to use the XmlSchemaCollection to cache a ....Read More
Rating
This is a link to a different site A class to put a ProgressBar into a StatusBar
Total Hit (2055) It is not possible to directly put a ProgressBar in a StatusBar in VB.NET. Solutions are available for C++ or VB 5 or 6.0. This is a way to do it in VB.NET.
Rating
This is a link to a different site Subclassing in .NET - The pure .NET way
Total Hit (2192) If you are a Visual Basic 6 programmer then you are obviously aware of the sub-classing power. My article demonstrates the same thing for .NET. If you are a C# programmer, then you can easily change this code to fit into a C# Project. This project demonstrates how can you use the .NET way to subclas ....Read More
Rating
This is a link to a different site Automatically Upgrade Your .NET Applications On-the-Fly
Total Hit (1197) Rich client, (or in .NET terminology, "Windows Forms") applications provide a great user experience in terms of functionality, usability, operating system and inter-application integration. Unfortunately, they have also suffered from a relatively high total cost of ownership compared to browser-base ....Read More
Rating
This is a link to a different site ADO.NET: Loading a native ADO recordset into a DataSet
Total Hit (1344) This sample illustrates using ADO recordsets with managed Datasets. To provide access to ADO Recordset and Record objects from ADO.NET, the OLE DB .NET Data Provider overloads the Fill method of the OleDbDataAdapter to accept an ADO Recordset object or an ADO Record object. Filling a DataSet with th ....Read More
Rating
This is a link to a different site Property Bag Changes in Visual Basic .NET
Total Hit (1070) In Visual Basic® 6.0, the PropertyBag object was used to persist an object's data between instances. This paper demonstrates how to duplicate the functionality of a Visual Basic 6.0 property bag in Visual Basic .NET using serialization.
Rating
This is a link to a different site Enumerating Windows
Total Hit (1885) This sample provides a class wrapper around the EnumWindows and EnumChildWindows API calls for use in .NET.
Rating
This is a link to a different site How Do I...Use an XmlNodeReader?
Total Hit (992) This sample illustrates how to create and use an XmlNodeReader. An XmlNodeReader is a reader that provides fast, non-cached, forward-only access to XML data in an XmlNode. It has the ability to read an entire XML DOM tree or read from just a subtree. However, the XmlNodeReader does not support Docum ....Read More
Rating


(Page 18 of 25) 735 Result(s) found  1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.