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 2 of 25) 735 Result(s) found 

 

IsValidEmail - Validating an e-mail address
Total Hit (3402)
Rating
A general benchmarking class
Total Hit (2908) Many times we need to benchmark some routine or a block of code. This class will help you to benchmark a routine or a block of code. «code LangId=2»Public Class BenchMark Delegate Sub BenchmarkDelegate() Enum BenchmarkModes DontShow Console MessageBox End ....Read More
Rating
Create zero-elements arrays
Total Hit (2560) The .NET framework lets you create two types of "empty" arrays: unitialized arrays and arrays that are initialized with zero elements. Uninitialized arrays are actually array variables that are set to Nothing, whereas zero-element arrays are non-Nothing variables that point to arrays with zero eleme ....Read More
Rating
Determine how many records the DataReader is about to return
Total Hit (2933) The DataReader is the ADO.NET counterpart of the forward-only, read-only recordset in classic ADO. For this reason you never know how many rows the DataReader is about to return. In most cases you don't need this information, because you tipically process each row as soon as it is being returned, an ....Read More
Rating
Dec2Any - Convert a decimal number to any other base
Total Hit (3955) «Code LangId=2»' convert a positive number to any base ' BASE can be in the range 2-36 Function Dec2Any(ByVal number As Long, ByVal base As Short) As String Dim index As Integer Dim digitValue As Integer Dim res As New System.Text.StringBuilder() Const digits As String = "0 ....Read More
Rating
How Do I... Work with tracing?
Total Hit (2195) Trace instrumentation allows developers and administrators to monitor the health of applications running in real-life settings (as opposed to running in a debugger). Sometimes using a debugger can hide bugs and obscure some performance and threading problems. Tracing is a very important monitoring a ....Read More
Rating
BackupDatabase - Backing-up a SQL Server database
Total Hit (2967)
Rating
DbObject - A base data class for common DB operations
Total Hit (3035)
Rating
GetComputerManufacturer - Retrieving the computer manufacturer name
Total Hit (3042)
Rating
Copy Directory Content and All subfolders to target path
Total Hit (11328) This Code will copy all files and subfolders of specified source directory to target location «code LangId=2» Sub CopyDirectory(ByVal SourcePath As String, ByVal DestPath As String, Optional ByVal Overwrite As Boolean = False) Dim SourceDir As DirectoryInfo = New DirectoryInfo(SourceP ....Read More
Rating
Setting up multiple start-up projects
Total Hit (2414) By default, a solution has a single start-up project, namely the project that is automatically launched when you click Debug | Start or press F5. However, you have the option to start multiple projects of the solution when you call Start, something that is very useful to automatically start, in debu ....Read More
Rating
ReplicateString - Replicate a string a given number of times
Total Hit (2549) «Code LangId=2»' Replicate a string a given number of times Function ReplicateString(ByVal Source As String, ByVal Times As Integer) As _ String Dim i As Integer Dim sb As New Text.StringBuilder(Source.Length * Times) For i = 1 To Times sb.Append(Source) Next ....Read More
Rating
CompareList - Compare an argument with a list of values
Total Hit (2562) «Code LangId=2»' Return the position of the argument in a list of values ' or zero if the argument isn't included in the list ' It works for both regular values and for objects ' ' This handy function can often save you a lengthy Select Case ' statement or a complex series of If...ElseIf block ....Read More
Rating
BusinessDateAdd - Adding or subtracting a number of business days from a date
Total Hit (2372) «Code LangId=2»' Add or subtract a number of business days from a date ' Example: Debug.WriteLine(BusinessDateAdd(#4/9/2003#, 5)) ' => 4/16/2003 Function BusinessDateAdd(ByVal startDate As Date, ByVal days As Integer, _ Optional ByVal saturdayIsHoliday As Boolean = True) As Date Do Wh ....Read More
Rating
ExecuteMCICommand - Executing a MCI command
Total Hit (2803)
Rating
All about .NET Assemblies, GAC, Manifests and Deployment
Total Hit (3415) A .NET application is composed of three primary entities: assemblies, modules and types. An Assembly is the primary unit of deployment. The individual files that make up a .NET application are call modules. Types are the basic unit of encapsulating data and behavior behind an interface composed of ....Read More
Rating
FilterByType - filtering the results of Type.FindMembers by thier return type
Total Hit (2944)
Rating
IsFontInstalled - Test whether a font name and size is supported
Total Hit (2148)
Rating
GetRandomColor - Generating a random color
Total Hit (3815)
Rating
Launch another process in a specified directory
Total Hit (2690) The System.Diagnostics.Process class provides several methods to launch and controls other Windows processes. For example, the following code sample shows how to run Notepad, pass arguments to it, and run it from inside a given intial directory: «Code LangId=2» ' this code assumes that you have ....Read More
Rating
Creating User Accounts with Directory Services
Total Hit (2605)
Rating
This is a link to a different site ADO.NET: Execute a Command
Total Hit (840) Commands are issued against databases to take actions against data stores. For example, you could execute a command that inserts or deletes data. For more information on moving data into and out of databases, see "Update a Database from a DataSet". Commands include any command that can be issued aga ....Read More
Rating
This is a link to a different site Floating Controls, Tooltip-style
Total Hit (2356) This article started when I was implementing the VS.NET ListBar control. If you move the mouse over an item whose text is partially obscured in the VS.NET ListBar, a popup appears to show more of the text. The same technique is also implemented in the ListView and TreeView controls using a ToolTip. ....Read More
Rating
This is a link to a different site System Image List
Total Hit (2510) Although you can easily extract copies of icons for any file from the Shell using the SHGetFileInfo call, if you need to be able to display the icon for a large number of files you can end up with too many icons and run out of resources. The System Image List uses an intelligent caching technique to ....Read More
Rating
This is a link to a different site How Do I...List all the members of a type?
Total Hit (1077) This example lets you list the members for a given data type. The ability to list a type's members is a great way to quickly discover which elements are available. It is an important tool for reporting on your system as well as assisting in the development of user documentation. Using the Reflection ....Read More
Rating
This is a link to a different site How Do I...Build a .NET Client That Uses a COM Server?
Total Hit (822) This section explains how to build managed code that uses COM. The steps involved in the build process are as follows: «LI»Obtain an assembly containing definitions of the COM types to be used. «LI»Install the assembly in the global assembly cache. (optional) «LI»Reference the assembly conta ....Read More
Rating
This is a link to a different site Painting in the MDI Client Area
Total Hit (2339) Although the .NET Framework Form allows you to set a background bitmap or color for the MDI Client area, there's no direct way to draw onto the area to customise it. This sample demonstrates how to create an object which derives from NativeWindow to intercept the messages from the MDI Client area an ....Read More
Rating
This is a link to a different site ADO.NET: Update a Database from a DataSet
Total Hit (587) This topic illustrates how to update data in a database using a DataSet. It is important to remember that you can also insert, update, and delete data in a database directly using a SqlCommand. Understanding the concepts covered in Populate a DataSet from a Database will help you understand the curr ....Read More
Rating
This is a link to a different site Introduction to .NET Reflection
Total Hit (1231) Reflection is ability to find information about types contained in an assembly at run time. Prior to .NET languages like C++ provided such ability in a limited sense. .NET provides a whole new set of APIs to introspect assemblies and objects. All the APIs related to reflection are located under Syst ....Read More
Rating
This is a link to a different site Microsoft Beefs Up VBScript with Regular Expressions
Total Hit (1220) In this article, I'll describe all objects related to VBScript Regular Expressions, summarize common regular expression patterns, and provide some examples of using regular expressions in code.
Rating


(Page 2 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.