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

 

DelComPlusAppRole - Deleting a role from a COM+ application
Total Hit (2611)
Rating
How to send/receive XML document using HTTP POST ?
Total Hit (10575) In my recent project we had a requirement to send a HTTP request in XML document format (e.g. request for a specific order detail). The response was also in XML format. So now question is how would you do that in .Net? Here is the code snippet which you can use to do the same thing. «code LangId= ....Read More
Rating
DownloadFile - Downloading and saving the file at the specified URI
Total Hit (2600)
Rating
How to make a ComboBox do auto complete?
Total Hit (3007)
Rating
Check service is installed or not, check status of a service and get list of all running services (VB.net)?
Total Hit (9756) In .Net using "System.ServiceProcess" namespace now its so easy to work with windows services. This article will show you how easy it is to get list of all running service or to check status of a single service by name. To control (i.e start/stop/paush) or retrive information of any service you need ....Read More
Rating
SearchFileInDirTree - Searches a file on a directory tree
Total Hit (2858) «Code LangId=2» <System.Runtime.InteropServices.DllImport("imagehlp.dll")> Shared Function _ SearchTreeForFile(ByVal rootPath As String, ByVal inputPathName As String, _ ByVal outputPathBuffer As System.Text.StringBuilder) As Boolean End Function ' Returns the complete path+name of th ....Read More
Rating
ForceTextBoxNumeric - Force a TextBox control to accept only numeric digits
Total Hit (3921) «Code LangId=2» <System.Runtime.InteropServices.DllImport("user32")> Shared Function _ GetWindowLong(ByVal hWnd As Integer, ByVal nIndex As Integer) As Integer End Function <System.Runtime.InteropServices.DllImport("user32")> Shared Function _ SetWindowLong(ByVal hWnd As Integer, ByVa ....Read More
Rating
GetSystemUpTime - Retrieving the system's up time
Total Hit (1643)
Rating
IsMemberSupported - Check whether an object supports a member with the specified name
Total Hit (2104)
Rating
GetGreyScale - Convert a color to greyscale
Total Hit (2763)
Rating
RegisterEnterpriseService - Register an Enterprise Service in the COM+ Catalog
Total Hit (2632)
Rating
UnregisterEnterpriseService - Unregister an Enterprise Service from the COM+ Catalog
Total Hit (2476)
Rating
A For Each statement that visits items in random order
Total Hit (2704) At times you may need to process elements of an array, a collection, or a dictionary object in random order, for example when sampling a population or (more often) when writing a game, such as a card game. Here's a class that you can use in a For Each statement to randomly process all the elements o ....Read More
Rating
KeepInRange - Ensure that a value is in a given range
Total Hit (2546) «Code LangId=2» ' Keep the first argument in the range [lowLimit, highLimit] ' If the value is adjusted, the fourth (optional) argument is set to True ' ' This function works will all basic data types and with objects ' that implement the IComparable interface Function KeepInRange(ByVal va ....Read More
Rating
IsValidPath - Validating a system path
Total Hit (4589) «Code LangId=2»' Validate a system path ' Example: ' MessageBox.Show(IsValidPath("C:\Test\Memo.txt")) ' => True ' MessageBox.Show(IsValidPath("\\RemotePC\Test\Memo.txt")) ' => True ' MessageBox.Show(IsValidPath("C:\Test\Mem|o.txt")) ' => False Function IsValidPath(ByVal p ....Read More
Rating
MoveListboxItem - Moving an item of a listbox to another index
Total Hit (2558) «Code LangId=2» ' Moves an item of a listbox to another index ' If FROMINDEX = -1 then it moves the current highlighted item ' ' Example: ' ' move up the selected item ' MoveListboxItem(ListBox1, -1, ListBox1.SelectedIndex - 1) ' ' move down the selected item ' MoveListboxItem(ListB ....Read More
Rating
IsValidRegularExpression - Checking whether a given regular expression is in valid format
Total Hit (3430) «Code LangId=2» ' Check whether a given regular expression is in valid format ' Examples: ' Debug.WriteLine(IsValidRegularExpression("^((\(\d{3}\) ' ?)|(\d{3}-))?\d{3}-\d{4}$")) ' => True ' Debug.WriteLine(IsValidRegularExpression("^[|)$")) ' => False Function IsValidRegularExpression( ....Read More
Rating
FolderHasSubFolders - Returns whether the specified folder has sub-folders
Total Hit (2691) «Code LangId=2» ' Returns a boolean indicating whether the specified folder has sub-folders Function FolderHasSubFolders(ByVal folderPath As String) As Boolean Return System.IO.Directory.GetDirectories(folderPath).Length > 0 End Function «/Code» ....Read More
Rating
ChangeDriveIcon - Changing the icon of a drive
Total Hit (2945)
Rating
This is a link to a different site ADO.NET and XML
Total Hit (1731)
Rating
This is a link to a different site Translating from a Custom Markup to HTML using Regular Expressions
Total Hit (1822) If you run a messageboard-type site, you may want to allow users to enter certain HTML tags, but not others. For example, you may want users to be able to use tags like <b> and <u>, but any other HTML tags would be displayed as-is. That is, if a user were to enter as a message: ....Read More
Rating
This is a link to a different site Using Animated Cursors in .NET
Total Hit (1823) The Cursor class provided with System.Windows.Forms doesn't support animated cursors - but this tiny class lets you use them interchangably with the existing .NET Framework cursors. Also provided with the code is a technique for drawing cursors directly onto forms and animating on a background threa ....Read More
Rating
This is a link to a different site How Do I...Load and use the XmlDocument (W3C DOM)?
Total Hit (1004) How Do I...Load and use the XmlDocument (W3C DOM)? This sample illustrates the classes which implement: «LI»the Document Object Model (Core) Level 1 the World Wide Web Consortium (W3C) Document Object Model (DOM) Level 1 Specification. «LI»the Document Object Model Core in the W3C Document Ob ....Read More
Rating
This is a link to a different site Cancellable In-Place Edit Popups
Total Hit (1632) Controls like the ListView and the Outlook ListBar allow you to edit items in place by either double-clicking them or through a context UI feature such as a menu. This article provides a class which helps with the tricky parts of implementing in-place editing, and demonstrates how to use it to creat ....Read More
Rating
This is a link to a different site Removing All HTML Tags from a String Using Regular Expressions
Total Hit (1776) Have you ever had the need to remove all HTML tags from a file? Perhaps you wanted to display all HTML tags on a Web page, but as the raw HTML tags (like showing <B>bold</B> as opposed to bold). The script presented in this artcle will accomplish these tasks with ease! ....Read More
Rating
This is a link to a different site How Do I...Create a Publisher Policy Assembly?
Total Hit (969) A Publisher policy statement describes the compatibility of an assembly issued by the publisher of that shared assembly. See How Do I...Use Version Policy" to see how a publisher's policy statement fits into the overall .NET Framework version policy scheme. Publisher policy is commonly used in servi ....Read More
Rating
This is a link to a different site How do I create classes from an XSD schema?
Total Hit (995) This topic describes how to create classes that can be used to read and write XML that is defined by an XML Schema Description (XSD) file. Once you understand how to generate the classes for your XSD schema, you should read the "How Do I Read and Write Objects From XML?" topic to find out how to act ....Read More
Rating
This is a link to a different site How Do I...Read and write binary data?
Total Hit (1653) This sample illustrates basic binary file input and output using the BinaryReader, BinaryWriter and FileStream classes. A similar topic is presented under the heading How Do I...Create a log file?. Reading and writing binary information enables you to create and use files that are not accessible thr ....Read More
Rating
This is a link to a different site ADO.NET: Get Out Parameters from a Stored Procedure
Total Hit (550) Some stored procedures return values through parameters. When a parameter in a SQL statement or stored procedure is declared as "out", the value of the parameter is returned back to the caller; the value is stored in a parameter in the Parameters collection on the OleDbCommand or SqlCommand objects. ....Read More
Rating
This is a link to a different site Bring the Power of Visual Studio .NET to Business Solutions Built with Microsoft Office
Total Hit (1938) Microsoft Visual Studio Tools for the Microsoft Office System is a new technology that brings the advanced features of Visual Studio .NET and the .NET Framework to apps built on Microsoft Word 2003 and Excel 2003. Now you can use Visual Basic .NET and C# to write document-centric, managed code solut ....Read More
Rating


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