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

 

Checking (from a VB6 program) whether the .NET Framework is present
Total Hit (2641)
Rating
A macro to protect a code section with a Try...Catch block
Total Hit (2984) When you're working with the Visual Studio .NET code editor, typing a Try keyword plus the Enter key automatically creates the End Try statement. The following simple macro does something more interesting: it lets you select a portion of code and protect it with a Try...Catch...Finally...End Try blo ....Read More
Rating
Ask a Yes/no question and return a Boolean
Total Hit (2823) «Code LangId=2» ' Ask a Yes/no question ' returns True if the user replies "Yes" ' Example: MessageBox.Show(AskYesOrNo("Do you like me?", "ME", True)) Function AskYesOrNo(ByVal text As String, ByVal title As String, _ ByVal defaultAnswer As Boolean) As Boolean Dim defButton As Messa ....Read More
Rating
IsAssembly - Check whether a specified file is a .NET assembly
Total Hit (2656) «Code LangId=2» ' Check whether a specified file is a .NET assembly Function IsAssembly(ByVal filename As String) As Boolean Try Dim asm As [Assembly] = [Assembly].LoadFrom(filename) ' if no exception is thrown, this is an assembly Return True Catch e As Excep ....Read More
Rating
Concatenate an array of strings with commas and a final "and", or other separators
Total Hit (2673) «Code LangId=2»' Concatenate an array of strings with commas and a final "and", ' or other separators ' ' Example: ' Debug.WriteLine("Choose one from " & CreateStringList(New String() {"item1", ' "item2", "item3"})) ' ' => Choose one from item1, item2 and item3 Function CreateStringL ....Read More
Rating
PlayAVIPictureBox - Playing an AVI file in a PictureBox synchronously
Total Hit (8454)
Rating
StartsWith - Check whether a string starts with one of multiple possible choices
Total Hit (1791) «Code LangId=2»' Check whether a string starts with one of multiple possible choices. ' Return -1 if no possible string matches the start of the source, ' otherwise return the index of the matching string. ' ' Examples: ' Debug.WriteLine(StartsWith("This is my test line", True, "this", ' ....Read More
Rating
Mouse clipping with the Cursor class
Total Hit (2147) The Clip property of the System.Windows.Forms.Cursor class represents the rectangle within which the mouse cursor is confined, or Nothing if the mouse can move over the entire screen. This rectangle is in screen coordinates, so you must do some conversions if you want to confine the mouse to an obje ....Read More
Rating
MoveCursorToControl - Moving the cursor to the center of the input control
Total Hit (2124)
Rating
Determine whether a string is uppercase
Total Hit (3058) Here's a quick-and-dirty method to determine whether a string contains only uppercase characters «Code LangId=2» ' the string to test is in the SOURCE variable If System.Text.RegularExpressions.Regex.IsMatch(source, "^[A-Z]+$") Then Console.WriteLine("Uppercase string") End If «/Code» ....Read More
Rating
Check whether a specified file is a .NET assembly
Total Hit (2572)
Rating
Language features - String
Total Hit (4550) String is a powerful datatype which you use everyday. VB.net gives you great functionality with String class. In this article we will see some common functions of string class and will also learn about StringBuilder class for very fast string operations. <big>Facts about String class</big> <b> ....Read More
Rating
A better way to query for a single node
Total Hit (2510) In the XmlNode class, that is the class that provides node functionality in an XMLDOM representation of an XML document, the SelectNodes (and the ancillary SelectSingleNode) method exploits the XPath query language to let you extract nodes based on logical conditions. The SelectNodes methods return ....Read More
Rating
GetUSStates - Get the list of US States and their abbreviations
Total Hit (3141)
Rating
Working with DateTime and TimeSpan Object in VB.net
Total Hit (34696) 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
Copying the selected text of a RichTextBox text into the Clipboard
Total Hit (3479) «Code LangId=2»' Copy the RichTextBox's selected text into the Clipboard ' Example: CopyFromRichTextBox (richTextBox1) Public Sub CopyFromRichTextBox(ByVal rtb As RichTextBox, _ Optional ByVal availableAfterEnd As Boolean = False) Dim data As New DataObject() ' get the selected ....Read More
Rating
Removing styles from the font of the selected text of a RichTextBox
Total Hit (2604)
Rating
This is a link to a different site Building Excel Real-Time Data Components in Visual Basic .NET
Total Hit (974) This article walks you through building a real-time data server for Microsoft Excel 2002 using Visual Basic .NET Beta 2.
Rating
This is a link to a different site Flat VS.NET Style Menus - Even on Windows 98
Total Hit (2593) First and foremost, this component provides a menu style that is 90% identical to the one provided by VS.NET (the 10% gap is described below in the "Work pending" section, please help me eliminate it). This means that it applies the VS.NET menu style to not only individual menu items but also to the ....Read More
Rating
This is a link to a different site How Do I...Save XML with the XmlDocument (W3C DOM)?
Total Hit (974) This sample illustrates how to update and save XML using the XmlDocument class, which is an implementation of the World Wide Web Consortium (W3C) Document Object Model (DOM).
Rating
This is a link to a different site ADO.NET: Connection Pooling
Total Hit (569) This sample illustrates how to construct a pool of connections to a datasource. You will want to do this to deploy high-performance applications. In this example the pool is established in the connection string and managed automatically by the SqlConnection. ....Read More
Rating
This is a link to a different site How Do I...Execute Custom Code During Installation?
Total Hit (885) An application can consist not only of the 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 the application is ....Read More
Rating
This is a link to a different site How to Keep the Visual Studio Designer Out of Your Control’s Properties
Total Hit (901) Do you create custom controls for Windows Forms projects? Do you add properties to those controls? If so, you'll probably want to apply a few attributes to those properties: Browsable and DesignerSerializationVisibility. Else, the designer will put brain dead default values in them. ....Read More
Rating
This is a link to a different site Use .NET Forms as Popup Windows
Total Hit (2266) This article provides a reusable class which you can use to convert a form into a popup which works in the same way as the drop-down portion of a ListBox or the popup controls for picking colours or tables in Office. In addition to wrapping all the functionality you need to ensure the popup is cance ....Read More
Rating
This is a link to a different site A .NET Implementation of the ZoomIn Utility
Total Hit (2182) The ZoomIn Utility enables you to look at any area of the screen and capture the display. This can be an excellent way to snip graphics from other applications or to work out the exact details of how other controls are drawn. A copy of this is provided along with Visual Studio as a tool and also as ....Read More
Rating
This is a link to a different site Validate What? Using Regular Expressions to Validate Input
Total Hit (1730) Validating user input is a basic but very necessary part of web development, especially when dealing with databases. Queries don't go too well when you have !@)#&#$*%?= in the search field. So we have to build a function that searches the input string for illegal characters (defined by you) and then ....Read More
Rating
This is a link to a different site How to access a File Transfer Protocol site by using Visual Basic .NET
Total Hit (1245) This article describes how to perform the File Transfer Protocol (FTP) operation by using Microsoft Visual Basic .NET. The code samples in this article perform the following FTP commands: • Upload a file to the FTP site • Download a file from the FTP site • Create a folder on the FTP site • Re ....Read More
Rating
This is a link to a different site .NET Remoting - Part II
Total Hit (3509) Remoting provides a very flexible environment for distributed applications in the .NET arena. In part one of this series of four articles (note that this is an extension of the initially planned three as indicated in article I) I introduced the background to distributed applications and the .NET rem ....Read More
Rating
This is a link to a different site How Do I...Pass an Array From .NET Code to VB6 Code?
Total Hit (707) This example demonstrates how to use a .NET object 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...Read a text file?
Total Hit (1040) This sample retrieves information from a text file, and uses an ArrayList to display that information for the user. Opening and reading files for read access is an important part of IO functionality, even if you do not need to write to the file in question. In this example, we open a file for read ....Read More
Rating


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