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

 

Language features - Operators
Total Hit (1978) In this article we will see all operators supported by VB.net Here is the list of operators categories «code LangId=999»<table class="dtTABLE" cellSpacing="0" id="table2" bordercolorlight="#808080" border="1" style="border-collapse: collapse" width="100%"> <tr vAlign="top"> <th wi ....Read More
Rating
How to find all base classes of any type in .Net
Total Hit (2939) The following code shows how to print all base classes for a specified object. «code LangId=2»Function PrintBaseClasses(ByVal obj As Object) Dim t As System.Type t = obj.GetType Do While Not t Is Nothing Debug.Write(t.Name) t = t.BaseType If Not t Is No ....Read More
Rating
Measuring a string drawn with a specific font
Total Hit (2633) When you're dynamically drawing text (either on a Windows Form or Web Form application), you may need to calculate the width and height of a string printed with a particular font. This is easy with the Graphics class's Measure string method, that takes in input the string being measured, and the fon ....Read More
Rating
Retrieving (from a VB6 program) the installed versions of the .NET Framework
Total Hit (2731)
Rating
ConcatenateStrings - Concatenating an array of strings
Total Hit (2720) «Code LangId=2»' Concatenate the input strings, and return the resulting string. The first ' input string is used as a separator. ' ' Example: ' Dim i As Integer = 4 ' Dim d As Double = 34.45 ' Dim s As String = "VB-2-The-Max" ' Dim ret As String = ConcatenateStrings(" ", s, "is a n ....Read More
Rating
Sending a File to a Web Server
Total Hit (2930) «B»Description«/B» This is a working example of sending a file to a web server, and then processing the file from memory without saving it to a file. «B»ASP Page Code«/B» You will need to create a new Web Form and add this ASP.NET code to it. «Code LangId=2» <%@ Page Language="vb" Au ....Read More
Rating
Retrieving the state of the Shift, Alt and Ctrl keys, at any time
Total Hit (2528) You can know the state of the Shift, Alt and Control keys at any time, not just from inside a Keyxxx event. The shared property Control.ModifierKeys returns a bit coded value that identifies which of those keys are pressed, and you can use the And bit operator if a specific key is pressed. The follo ....Read More
Rating
ClearIEHistory - Clearing the Internet Explorer's history
Total Hit (2534)
Rating
Add exception tracing with one line of code
Total Hit (3839) At times you want to keep a log of all the exception occurred in your application, including those that are correctly caught by a Catch block. At first you might believe that you need to add a call to the LogException procedure from each and every Catch block, which is clearly a nuisance: «Code L ....Read More
Rating
Setting the width of the last column of a ListView when the control is resized
Total Hit (2119) When you resize a ListView control (this happens automatically if the ListView is docked to the form, and the user resizes the form), it's nice to have the last column to be resized accordingly to cover the available space. To do this, handle the ListView's Resize control (in .NET any control has a ....Read More
Rating
InstrTbl - Search a string for any character in a table
Total Hit (3585) «Code LangId=2» ' If INCLUDE is True or is omitted, return the first occurrence of a character ' in a group ' or -1 if SOURCE doesn't contain any character among those listed in TABLE. ' If INCLUDE is False, return the first occurrence of the character in SOURCE ' that does not appear in TABL ....Read More
Rating
StripControlChars - Delete control characters in a string
Total Hit (4283) «Code LangId=2» ' Strip all control characters (ASCII code < 32) ' ' If the second argument is True or omitted, ' CR-LF pairs are preserved Function StripControlChars(ByVal source As String, Optional ByVal KeepCRLF As _ Boolean = True) As String ' we use this to build the result ....Read More
Rating
Reading text files
Total Hit (3888) In Visual Basic .NET you read a text file by first opening a StreamReader on it, and then iterating over all its lines until its Peek method returns -1: «Code LangId=2» Dim sr As New StreamReader("c:\autoexec.bat") ' Display all the text lines in the file. Do Until sr.Peek = -1 ' The Re ....Read More
Rating
CountCheckedNodes - Retrieving the number of checked nodes in a treeview
Total Hit (1823) «Code LangId=2» ' Return the number of checked nodes in the specified tree Public Function CountCheckedNodes(ByVal rootNode As TreeNode) As Integer Dim count As Integer = 0 ' count the root node, if checked If rootNode.Checked Then count = 1 ' check the child nodes, by recursiv ....Read More
Rating
Caveats of the CopyMemory API function
Total Hit (4114) Here's the correct declaration of the CopyMemory API function, which is so useful whenever you want to move a block of bytes between two memory locations: «Code LangId=2» Declare Sub CopyMemory Lib "kernel32" Alias "RtlMoveMemory" (dest As Any, _ source As Any, ByVal bytes As Long) «/Code ....Read More
Rating
GetDomainName - Retrieving the domain name
Total Hit (3721)
Rating
This is a link to a different site How Do I...Write to an event log?
Total Hit (2399) Event logging provides a standard, centralized way for your applications to record important software and hardware events. Windows supplies a standard user interface for viewing the logs (the Event Viewer). Using the common language runtime's EventLog component, you can easily connect to existing ev ....Read More
Rating
This is a link to a different site How Remoting Works
Total Hit (1531) The .NET Remoting framework provides developers with a modern distributed object model that allows remote method invocation between different common language runtimes across the network or between different AppDomains in the same common language runtime. Any interaction with a remote object occurs t ....Read More
Rating
This is a link to a different site How Do I...Use an XPathExpression class?
Total Hit (1052) This sample illustrates how to use an XPathExpression class to compile an XML Path Language (XPath) expression to select a node-set from an XML file. Then the sample demonstrates how to add a custom sort routine and use an XPathExpression to sort the elements returned by the compiled XPath. Finally, ....Read More
Rating
This is a link to a different site .NET Button ListBar Control
Total Hit (2250) The Button ListBar control provides an emulation of the ListBar provided in the Windows Add/Remove Programs window. Under XP it uses the UxTheme API to draw parts of the toolbar, and degrades to use standard GDI drawing calls when used on earlier OS versions. Both C# and VB.NET versions of the same ....Read More
Rating
This is a link to a different site How to find which program is locking the file
Total Hit (1035)
Rating
This is a link to a different site Subclassed System Menu
Total Hit (2125) The reason for this article is to show a method of subclassing an application's system menu, so that extra menu items can be added and click events can be easily handled. This is my first article submitted to CodeProject and all suggestions, criticisms etc. are welcome. ....Read More
Rating
This is a link to a different site Microsoft .NET Framework FAQ
Total Hit (750)
Rating
This is a link to a different site How To Write Pluggable Protocol to Support FTP in Managed Classes by Using Visual Basic .NET
Total Hit (1179) This step-by-step article describes how to write pluggable protocol by using classes from the System.Net namespace. The Microsoft .NET Framework provides a layered, extensible, and managed implementation of Internet services that can be integrated quickly and easily into your applications. The i ....Read More
Rating
This is a link to a different site Stopwatch - a High-Resolution code timer class
Total Hit (2193) Creating an application requires precisely measuring how long specific operations take to complete. You may be searching for performance bottlenecks prior to shipping, measuring to ensure that changes do not unexpectedly degrade performance, or (in my case), testing alternative architectural approac ....Read More
Rating
This is a link to a different site A whole chapter of ADO.net and XML
Total Hit (2139) A whole chapter of ADO.net and XML from "Beginning Visual Basic .NET Databases" book
Rating
This is a link to a different site Add Professional Quality Reports to Your Application with Visual Studio .NET
Total Hit (2121) Crystal Reports for Visual Studio .NET provides a comprehensive reporting solution for .NET developers that is thoroughly integrated with both the Visual Studio .NET IDE and the .NET Framework. Crystal Reports supports ADO.NET, XML Web Services, and ASP.NET server controls and caching. It also integ ....Read More
Rating
This is a link to a different site How Do I...Handle Events from XmlDocument?
Total Hit (913) This sample illustrates how to receive and handle events when nodes in an XML document change. In particular, this sample demonstrates how to catch the NodeChanged and NodeInserted events described in the following paragraphs. Modifying an XmlDocument can result in one or more of the following e ....Read More
Rating
This is a link to a different site How do I determine if a file or directory exists?
Total Hit (2081)
Rating
This is a link to a different site How Do I...Enumerate directories and their contents?
Total Hit (1273) This sample illustrates how to use the DirectoryInfo class to create a directory listing. This is a great way to quickly list files for users or reports, or to find basic information about a specific directory. When used in combination with FileInfo, you can get all the information you need about fi ....Read More
Rating


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