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 

 

ExplodeForm - Showing a form with an explosion effect
Total Hit (3978) «Code LangId=2» ' Show a form with an explosion effect. ' the numSteps parameter is the number of steps to increase the form size from ' 0 to the original size ' the stepDuration argument is the number of milliseconds between each step ' Example: ' Private Sub Form1_Activated(...) Handles ....Read More
Rating
How to delete files older than N days from a specified path with specified file name pattern?
Total Hit (8270) Some time I need to write a clenup routine which checks fol old files and delete if older than a specified days. Here is a code snippet which does the same thing. «code LangId=2»Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click '//d ....Read More
Rating
GetComPlusAppRoles - Retrieving a COM+ Application's roles
Total Hit (2772)
Rating
IsValidUsZip - Validating a US ZIP code
Total Hit (2792) «Code LangId=2» ' Validate a US ZIP code ' Example: ' MessageBox.Show(IsValidUsZip("12345")) ' => True ' MessageBox.Show(IsValidUsZip("12345-1234")) ' => True ' MessageBox.Show(IsValidUsZip("12345-12345")) ' => False Function IsValidUsZip(ByVal zip As String) As Boolean Re ....Read More
Rating
IsImageFile - Returns whether the file is an image
Total Hit (3668) «Code LangId=2» ' Returns a boolean indicating whether the file is an image Function IsImageFile(ByVal filePath As String) As Boolean ' add more extensions if you wish Dim extensions() As String = New String() {".bmp", ".jpg", ".jpeg", ".gif", _ ".tif", ".tiff", ".png", ".tga", ....Read More
Rating
SaveTextFile - Save or append text to a file
Total Hit (3658) «Code LangId=2» ' Saves a text file. If the destination file already exists, ' its content can be replaced, or the new content can be appended ' at the end of the file, according to the last parameter ' Note: the destination directory must exist, otherwise the file is not ' saved and th ....Read More
Rating
CreateDatabase - Creating a SQL Server database
Total Hit (3113)
Rating
StartComPlusApplication - Starting a COM+ application
Total Hit (2700)
Rating
ExecuteSqlScriptsWithOsql - Executing an array of script files with the OSQL utility
Total Hit (2595)
Rating
UpdateDataAdapter - Update a data source through a DataAdapter
Total Hit (2089)
Rating
LogEvent - Logging an error/event to the Windows NT/2000 Application Event Log
Total Hit (2201)
Rating
Search and replace string with HTML formatting in Case-[In]sensitive mode using regular expression.
Total Hit (3300) Folloing function will Search specified string and make it Bold in HTML output. «Code LangId=2»Function BoldSearch(ByVal strInput As String, ByVal strSearch As String) As String BoldSearch=Regex.Replace(strInput, strSearch, "<B>" & "$&" & "</B>", RegexOptions.IgnoreCase) End Function«/Code» ....Read More
Rating
BrowseForFoldersDialog - A class to display the BrowseForFolders dialog box
Total Hit (2536)
Rating
Make read-only properties visible to Web Services clients
Total Hit (2052) Read-only and write-only properties in a Web Service class aren't visible to the Web Service client. The reason is that XML serialization doesn't support these sort of properties, and read-only and write-only properties aren't included in the Web Services Description Language (WSDL) documentation. ....Read More
Rating
Determine type and number of CPUs
Total Hit (4424) There is no method call that directly retuns information about the number and type of installed CPU(s). However, this information is stored in a few environment variables, so it's just a matter of extracting it with the Environment.GetEnvironmentVariable method: «Code LangId=2» ' this code is me ....Read More
Rating
ArrayInsertElement - Inserting an element in any type of array
Total Hit (2615) «Code LangId=2»' A generic routine that inserts an element in any type of array. ' Example: inserting an entry of value 5 between the 1st and 2nd entry of the ' array arr ' ArrayInsertElement(arr, 1, 5) Sub ArrayInsertElement(ByVal arr As Array, ByVal index As Integer, _ Optional By ....Read More
Rating
GetNetworkAvailability - Retrieving the network availability
Total Hit (2508)
Rating
GetUrlParameters - Retrieving the key-value pairs from the specified url
Total Hit (2568) «Code LangId=2» ' Returns a hashtable with the key-value pairs extracted from the querystring ' of the specified url ' EXAMPLE: ' Dim ht As Hashtable = GetUrlParameters ' ("http://www.mysite.com?param1=123&param2=&param3=234") ' ' print the key=value pairs to the console window ' Di ....Read More
Rating
IsStringUpper - Determine whether a string contains only uppercase characters
Total Hit (1683) «Code LangId=2»' Returns True if a string contains only uppercase characters Function IsStringUpper(ByVal sText As String) As Boolean Dim c As Char For Each c In sText If Not Char.IsUpper(c) Then Return False Next Return True End Function «/Code» ....Read More
Rating
This is a link to a different site Preview and Print from Your Windows Forms App with the .NET Printing Namespace
Total Hit (2449) Printing is an integral part of every complete Windows-based application. Providing robust printing capabilities in these applications has often proved to be a tedious chore. Now, printing from Windows Forms with the .NET Framework means you must adopt a document-centric approach, resulting in clean ....Read More
Rating
This is a link to a different site How Do I...Build a .NET COM Server Callable from COM clients?
Total Hit (1671) This section explains how to build and install managed code that will be used from COM applications. The steps involved in the build process are as follows: «LI»Write and compile the managed code. «LI»Generate a type library for the assembly using the tlbexp.exe utility. «LI»Install and regi ....Read More
Rating
This is a link to a different site Custom Actions - Part 2
Total Hit (1889) Custom Actions are deployment projects .NET programs written by your team that execute near the end of the installation process. You can use them to perform installation shores hard to implement with the existing features exposed by the setup project, in this order of ideas a custom action can insta ....Read More
Rating
This is a link to a different site FAQ: How do I delete a file from the Web server's file system?
Total Hit (1824)
Rating
This is a link to a different site Using Visual Basic .NET to Access Google's Web Service
Total Hit (1571) Learn how to access the Google Web APIs service from a Visual Basic .NET Windows front end. This article describes how to call a SOAP Web service, execute a Google search, access a page in Google's cache, and call the Google spell checker.
Rating
This is a link to a different site Display Multiple reports using single ReportViewer control
Total Hit (1110) It is easy to get the ReportViewer Control to report off of a DataSet that is set during design time. But what if you want to use code to cause one ReportViewer control to display many totally different reports using your own O/R mapper collection instead? It is not easy to see how to do this, but i ....Read More
Rating
This is a link to a different site How Do I...Read XML from a URL?
Total Hit (2129) This sample illustrates how to read XML from an URL using the XmlTextReader class.
Rating
This is a link to a different site .NET Outlook Style ListBar Control
Total Hit (1801) The .NET ListBar control aims to provide the most accurate reproduction of the Microsoft Outlook bar control. All the features of the Outlook bar control are supported and more: in particular the control provides nicer drag-drop operation, has more display modes and provides an extensible object mod ....Read More
Rating
This is a link to a different site How Do I...Use ISerializable to Customize the Serialization of a Class?
Total Hit (776) This sample illustrates how to use the ISerializable interface to customize the serialization of your own objects. This sample serializes objects based on the mscorlib assembly namespace tree structure. Each object contains a property as the name of the item and a list of children as per the real ob ....Read More
Rating
This is a link to a different site How Do I...use multiple XmlReaders
Total Hit (1020) In some situations, you may have one reader that reads part of an XML document, and one or more other readers that read the rest of the document. For example, an e-commerce ordering system may have orders submitted as XML documents. In processing these orders, one reader may process information at t ....Read More
Rating
This is a link to a different site A 'Print This Page' Script Using the MS-XMLHTTP object and Regular Expressions
Total Hit (2553) This article deals with two not-so-commonly discussed topics. The first is using Microsoft's XMLHTTP component to perform an HTTP request. To learn more about how to use XMLHTTP for this purpose, be sure to check out this FAQ. This article also utilizes regular expressions to remove delimited chunks ....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.