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

 

IsKeyPressed - Check whether a key is pressed
Total Hit (2836)
Rating
Duplicate the SET operating system command
Total Hit (2576) The Environment.GetEnvironmentVariables property returns the list of all the environment variables, as an IDictionary object. If you want to display them sorted by their name, as the SET command does at the prompt, you need the following tricky code: «Code LangId=2» ' Get all the variables, as a ....Read More
Rating
Disable .NET security
Total Hit (2043) The .NET Framework enforces secuity at several levels. For example, assemblies downloaded from the Internet have very limited permissions (especially after installing the Service Pack 1 of the Framework). This means that many operations that would be legal in some cases may throw an exception in oth ....Read More
Rating
Adding styles to the font of the selected text of a RichTextBox
Total Hit (2095) «Code LangId=2»' Add a style to the selection of a RichTextBox, ' without deleting the current styles that may be already ' present in the selection or in portions of it ' ' Example: AddFontStyle(richTextBox1, FontStyle.Bold) Public Sub AddFontStyle(ByVal rtb As RichTextBox, _ ByVal styl ....Read More
Rating
Language features - Array
Total Hit (8729) Arrays allow you to refer to a series of variables by the same name and to use a number, called an index or subscript, to tell them apart. This helps you create shorter and simpler code in many situations, because you can set up loops that deal efficiently with any number of elements by using the in ....Read More
Rating
GetOsqlPath - Get the path of the SQL Server's OSQL.exe utility
Total Hit (2751)
Rating
Language features - Variables and types
Total Hit (2603) The Microsoft .NET Framework provides a robust system of primitive types to store and represent data in your application. Data primitives represent integer numbers, floating-point numbers, Boolean values, characters, and strings. In VB.net you can declare variable using Dim statement as shown be ....Read More
Rating
IsValidUsPhoneNumber - Validating a US phone number
Total Hit (2954) «Code LangId=2» ' Validate a US phone number ' Example: ' MessageBox.Show(IsValidUsPhoneNumber("(123) 456-7890")) ' True ' MessageBox.Show(IsValidUsPhoneNumber("(123) 456-78901")) ' False Function IsValidUsPhoneNumber(ByVal phnNum As String) As Boolean Return System.Text.RegularExp ....Read More
Rating
Reduce COM+ context overhead: use modules and shared members
Total Hit (2718) If you use Shared members in .NET or modules in VB6, you reduce COM+ context overhead without any risk whatsoever that you will get extra context overhead for that code. You also release yourself from the clean-up burden that you have in both worlds. Instead of the VB6 consumer code: «Code LangId ....Read More
Rating
DrawRotateImage - rotating an image by a specified angle
Total Hit (3544)
Rating
Evaluate an expression using the Microsoft Script Control
Total Hit (3511) Thanks to COM Interop, you can still use the Microsoft Script Control from VB.NET and any other .NET language. To do so, you must add a reference to the Microsoft Script Control library (from the COM page in the Add Reference dialog box): this action creates a new reference named Interop.MSScriptCon ....Read More
Rating
Including/excluding files in Visual Studio .NET
Total Hit (2527) Say that that you have an existing Visual Studio .NET project, and that you copy a lot of new source code files, images and other stuff from another project (maybe you're merging two projects, or a colleague wrote and passed those files to you). One approach to include the new files is to use the Pr ....Read More
Rating
CompactPathToControl - Shorten a path by using ellipses
Total Hit (3016)
Rating
IsValidIP - Validating an IP address
Total Hit (3110)
Rating
A command-line Object Browser that uses Reflection
Total Hit (3317)
Rating
Use VB6 ActiveX controls with VB.NET
Total Hit (4005) It is possible to use VB6 ActiveX controls - such as ADO Data Control, Chart Control, Comm Control, and the Windowless controls - with the designer of Visual Studio .NET, but you may encounter problems when doing so because VS.NET doesn't come with the design-time license for these controls, therefo ....Read More
Rating
CreateConnString - Using the OLEDB dialog to create an OLEDB connection string
Total Hit (2794)
Rating
Discovering if the input connection string is for the Oracle managed provider
Total Hit (2503)
Rating
Display a directory tree
Total Hit (3953) Thanks to the GetDirectories and GetFiles methods of the System.IO.Directory class, you need very little code to iterate over all the directories and files of a directory tree. For example, the following code snippet prints the structure of a directory tree and (optionally) the name of files in each ....Read More
Rating
PluralToSingular - Converting the input word from plural to singular
Total Hit (2301) «Code LangId=2»' Convert the input word from plural to singular Function PluralToSingular(ByVal plural As String) As String ' convert to lowercase for easier comparison Dim lower As String = plural.ToLower() Dim res As String ' rule out a few exceptions If lower = "feet" ....Read More
Rating
Store bits and small integers efficiently in a BitVector32
Total Hit (3290) The System.Collections.Specialized.BitVector32 structure can be used to store up to 32 boolean values, or a set of small integers that can take up to 32 consecutive bits. The BitVector32 is similar to the BitArray class, in that it can hold boolean values that take only one bit each, yet it is more ....Read More
Rating
This is a link to a different site Visual Basic .NET Internals
Total Hit (1212) The Microsoft .NET Framework has opened a new world for Visual Basic developers. Visual Basic .NET combines the power of the .NET Framework and the common language runtime with the productivity benefits that are the hallmark of Visual Basic. Although the Visual Basic .NET language looks the same on ....Read More
Rating
This is a link to a different site Crawl Web Sites and Catalog Info to Any Data Store with ADO.NET and Visual Basic .NET
Total Hit (1869) Visual Basic .NET comes loaded with features not available in previous versions, including a new threading model, custom class creation, and data streaming. Learn how to take advantage of these features with an application that is designed to extract information from Web pages for indexing purposes. ....Read More
Rating
This is a link to a different site Getting File Icons Using The Shell
Total Hit (1489) The .NET Framework doesn't provide much in the way for classes to interact with the Shell. This article provides a simple class which wraps the Shell's SHGetFileInfo to extract large and small icons plus the display name and file type for any file.
Rating
This is a link to a different site Working with Data in .NET : Sample Chapter from Professional .NET Framework
Total Hit (808) Throughout this chapter you will see how the System.Data namespace is structured and how to utilize many of the classes within it. As well, we'll go over the pros and cons of using ADO.NET, and then compare and contrast current ADO functionality with that of ADO.NET. After that we'll go into using t ....Read More
Rating
This is a link to a different site DataSets in Microsoft .NET - 2
Total Hit (1305) In the previous part of this article we discussed different features and how to create a dataset in design time lets go further in detail. In this part I will discuss about sort, search and filtering support provided by dataset and data table object.
Rating
This is a link to a different site Fun With DrawImage
Total Hit (1253) If you've ever tried to rotate an image in VB6, you know how tedious it can be. Sure, given plenty of time for trial and error, combined with some reasonably tricky mathematics and a little patience, you can figure out how to map pixels from the source image into the rotated destination image. Enter ....Read More
Rating
This is a link to a different site How Do I...Pass Simple Data from .NET Code to VB6 code?
Total Hit (748) This example demonstrates how to use .NET objects from a Visual Basic 6.0 application. The same technique can be used to create the object from any COM application, including those built with Visual C++ 6.0, VBScript, or JScript.
Rating
This is a link to a different site How Do I...Create System Resources During Installation?
Total Hit (844) An application can consist not only of traditional program files, but also of associated resources such as message queues, event logs, and performance counters that must be created on the deployment destination. You can configure your application to create these resources when your application is in ....Read More
Rating
This is a link to a different site Embedding MSDE SQL Engine in a Visual Studios .Net Setup application
Total Hit (1382) This document is a step by step description of adding SQL server to an Windows Application and embedding the MSDE engine into the application setup and installer program. By doing this you will automate the installation of the SQL server, the mounting of the datafiles and granting access to your app ....Read More
Rating


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