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

 

Determine whether a string is uppercase
Total Hit (3070) 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
Language features - String
Total Hit (4559) 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
Copying the selected text of a RichTextBox text into the Clipboard
Total Hit (3493) «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
MoveCursorToControl - Moving the cursor to the center of the input control
Total Hit (2134)
Rating
Filter file names on their names or attributes
Total Hit (2781) The GetFiles and GetDirectories methods of the System.IO.Directory class can take an argument containing wildcards, to filter the result: «Code LangId=2» ' Display all the *.txt files in C:\DOCS. Dim fname As String For Each fname In Directory.GetFiles("c:\docs", "*.txt") Console.WriteLin ....Read More
Rating
AddToRecentDocs - Adding a file to the list of recent documents
Total Hit (2756)
Rating
RestartDefaultSite - Restarting the default website in IIS
Total Hit (2671)
Rating
A Complete guide to .net Framework
Total Hit (1670) The Microsoft .NET Framework is a platform for building, deploying, and running XML Web services and applications. It provides a highly productive, standards-based, multiple-language environment for integrating existing investments with next-generation applications and services, as well as the agili ....Read More
Rating
Adding an image as an embedded resource, and loading it from code
Total Hit (2620) To add an image as an embedded resource in a Windows Forms application, add the image file to the project with Project | Add Existing Item. Then select the file in the Solution Explorer, go to the Properties Window, and set its Build Action property to Embedded Resource. At this point the file will ....Read More
Rating
AddComPlusApplication - Creating a new COM+ application
Total Hit (2766)
Rating
Case insensitive replace in .net
Total Hit (12051) Sounds easy right.... but sometimes it can take your entire day how to do that using String Replace method. By default .Net string operations are case sensetive. In order to do case insensitive you need to use Strings.Replace method this is another replace method provided for VB programmers. «co ....Read More
Rating
CompareFiles - Comparing two binary/text files
Total Hit (2747) «Code LangId=2»' Returns a boolean indicating whether two files are equal ' Example: Debug.WriteLine(CompareFiles("D:\File1.mdb", "D:\File2.mdb")) Function CompareFiles(ByVal path1 As String, ByVal path2 As String) As Boolean Dim file1 As New System.IO.FileInfo(path1) Dim file2 As New ....Read More
Rating
Get Registered Company Name and Registered Owner of the machine on Win NT
Total Hit (2336) «code LangId=2» '//Get Registered Owner name on current machine Function GetOwner() As String Dim regOwner As RegistryKey = Registry.LocalMachine.OpenSubKey("SOFTWARE\Microsoft\Windows NT\CurrentVersion") GetOwner = regOwner.GetValue("RegisteredOwner") End Function ....Read More
Rating
Iterating over the characters in a string
Total Hit (2866) Visual Basic .NET strings support the For Each statement, so you can iterate over each individual character as follows: «Code LangId=2» Dim s As String = "ABCDE" Dim c As Char For Each c In s Console.Write(c & ".") ' => A.B.C.D.E. Next «/Code» However, you should bear in mind th ....Read More
Rating
ExplodeString - Add a filling char between a string's chars
Total Hit (2505) «Code LangId=2» ' "Explode" a string by inserting a given filling character ' between consecutive characters in the original string ' ' The source string cannot contain Chr$(0) characters Function ExplodeString(ByVal Source As String, Optional ByVal fillChar As Char = _ " "c) As String ....Read More
Rating
GetNodeRelationship - Evaluates the relationship between two treeview's nodes
Total Hit (2122)
Rating
Running an Insert SQL Query with ADO.NET and VB.NET
Total Hit (1612) If you have SQL server setup on your machine and the Northwind database then this example should work for you. You may have to change the password for the sa account as it's blank in the example.
Rating
ExportComPlusApplication - Exporting a COM+ application to a MSI installer file
Total Hit (2958)
Rating
GetResourceContent - Retrieving the content of an embedded text file
Total Hit (2650) «Code LangId=2» ' Retrieve the content of an embedded text file ' Note: the file must be included in the project as an embedded resource. ' - after adding the file to the project set its Build Action property to ' Embedded Resource ' ' Example: txtScript.Text = GetResourceContent("script.sql ....Read More
Rating
Tutorial - The CLR (Common Language Runtime), Microsoft's answer to Sun JVM (Java Virtual Machine).
Total Hit (9578) «a name=#L1»«/a» «big»What is CLR«/big» The common language runtime is the execution engine for .NET Framework applications. It provides a number of services, including the following: «UL»«LI»Code management (loading and execution) «LI»Application memory isolation «LI»Verification of ty ....Read More
Rating
Dashed lines with custom caps
Total Hit (4308) You can set properties of the Pen object to create custom lines. For example, you can use the DashStyle enumerated property to draw dashed lines using a predefined pattern, and you can even create custom dash patterns by assigning an array of Single values to the DashPattern property. The StartCap a ....Read More
Rating
GetOleDbType - Retrieving the OleDbType for the specified system type
Total Hit (4298)
Rating
This is a link to a different site Multithreaded Programming with Visual Basic .NET
Total Hit (1175) The .NET Framework provides new classes that make it easy to create multithreaded applications. This article discusses how you can use multithreaded programming techniques with Visual Basic® .NET to develop more efficient and responsive applications. ....Read More
Rating
This is a link to a different site Flat Style Combo Boxes
Total Hit (2109) This article provides a class which you can attach to any .NET ComboBox control to allow it to render with a VS.NET or Office XP flat style by subclassing the messages associated with the control (VB.NET and C# code provided).
Rating
This is a link to a different site Efficiently Searching a Sorted Array
Total Hit (1529) Pop quiz, hotshot: you have an array of strings consisting of the various IP addresses of the visitors of the last 24 hours to your Web site. You want to determine if your site has been visited by the IP address 231.34.124.3. How can you quickly figure out if the string "231.34.124.3" is in the arra ....Read More
Rating
This is a link to a different site Receiving and Using Clipboard Change Notifications
Total Hit (2248) Clipboard support in the .NET Framework is fairly comprehensive, however, support for notification of clipboard changes is not provided. Knowing when the clipboard changes makes building an application with a toolbar containing a Paste button simpler; it also enables you to store a history of clipbo ....Read More
Rating
This is a link to a different site Role-Based Authorization With Forms Authentication
Total Hit (1537) In Web applications, typically there exist certain parts of the site that only certain individuals, or groups of individuals, can access. For example, imagine an intranet Web site used to administer the content on a company's public Internet Web site, where the public Web site lists products sold by ....Read More
Rating
This is a link to a different site How Do I...Save XML with the XmlDocument (W3C DOM)?
Total Hit (979) 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 Remoting Overview
Total Hit (1232) The common language runtime Remoting infrastructure provides a rich set of classes that allow developers to ignore most of the complexities of deploying and managing remote objects. Even though you are dealing with applications running against different run-time environments, calling methods on remo ....Read More
Rating
This is a link to a different site Object Syntax Introduction
Total Hit (1795) From the publisher: "In this book, we cover VB.NET virtually from start to finish: we begin by looking at the .NET Framework, and end by looking at best practices for deploying .NET applications. In between, we look at everything from database access to integration with other technologies such as XM ....Read More
Rating


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