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

 

MDAC 2.6 is required for .NET applications
Total Hit (2678) All ADO.NET applications require MDAC 2.6 or later (MDAC 2.7 is recommended). MDAC 2.7 comes with Visual Studio .NET but no MDAC version is included in the Microsoft .NET Framework SDK and the .NET Framework redistributable package. If your .NET application attempts to open a connection without a va ....Read More
Rating
Very great tutorial for ADO.net and XML
Total Hit (2722) Step By Step Powerpoint presentation of all aspects of ADO.net and XML in .net
Rating
CreateDataAdapter_OleDb - Create an initialized OLEDB Data Adapter
Total Hit (2937)
Rating
LoadTextFile - Load the contents of a text file
Total Hit (2809) «Code LangId=2» ' Returns the content of the specified text file ' Note: it can throw an exception ' Usage: Dim FileContent As String = LoadTextFile("C:\Autoexec.bat") Function LoadTextFile(ByVal FilePath As String) As String Dim sr As System.IO.StreamReader Try sr = New ....Read More
Rating
IsWordInstalled - Checking whether MS Word is installed
Total Hit (1780)
Rating
Calling web services from behind a proxy server
Total Hit (2088) When you use a web service's proxy class, the calls to the web service might fail if you're behind a proxy server. To solve the problem, you set the Proxy property of a web service's proxy class to an instance of WebProxy, that contains the HTTP proxy settings needed for the web method calls. Here's ....Read More
Rating
SetCommandsTransaction - Assign a transaction to the DataAdapter's commands
Total Hit (2895)
Rating
Pasting the text in the Clipboard into a RichTextBox
Total Hit (3471) «Code LangId=2»' Paste the text currently in the Clipboard into the specified RichTextBox ' Example: PasteIntoRichTextBox (richTextBox1) Public Sub PasteIntoRichTextBox(ByVal rtb As RichTextBox) ' get the data currently in the Clipboard Dim data As IDataObject = Clipboard.GetDataObject ....Read More
Rating
ArrayDeleteElement - Deleting an element in any type of array
Total Hit (2573) «Code LangId=2»' A generic routine that deletes an element in any type of array. ' Example: deleting the 2nd element of the array arr ' ArrayDeleteElement(arr, 1) Sub ArrayDeleteElement(ByVal arr As Array, ByVal index As Integer) ' Shift elements from arr(index+1) to arr(index). ....Read More
Rating
GetLocalHostIpAddresses - Retrieving the array of IP addresses for the local host
Total Hit (2741)
Rating
Extract null-delimited strings
Total Hit (3632) Most API function that return a string require that you pass a buffer where they can place the result as a null-terminated ANSI string (a.k.a. ASCIIZ string). The calling code must then extract the string by taking all the characters up to the first Chr$(0) character, if there is one. For example, t ....Read More
Rating
Change the application priority
Total Hit (2922) The application's priority - and more in general the thread's priority - indicates how the application is "important" for the CPU. The more the priority is hight the more the CPU will dedicate his time to execute it. In .NET the priority of a thread is indicated to the Thread.Priority property. B ....Read More
Rating
GetDelimitedText - Extract the text between open and close delimiters
Total Hit (2766) «Code LangId=2»' get the text enclosed between two Delimiters ' ' it advances Index after the close delimiter ' Returns "" and Index = -1 if not found ' search is case sensitive ' ' For example: ' Dim source As String = " a sentence with (a word) in parenthesis" ' Dim i As Integer = 0 ....Read More
Rating
Create all the subdirectories for a new folder
Total Hit (3774) The System.IO.Directory class exposes a CreateDirectory method that, as its name suggests, can create a subdirectory. However, this method is even more powerful than it appears at a first glance, in that it can even create all the intermediate subdirectories, if necessary. In other words, the follow ....Read More
Rating
Setting the font family of the selected text of a RichTextBox
Total Hit (2303)
Rating
GetDirectorySize - Calculate the size of a directory
Total Hit (2782) «Code LangId=2» ' Returns the size of the specified directory ' - Note: requires Imports System.IO ' - Usage: Dim DirSize As Long = GetDirectorySize("D:\Projects") Function GetDirectorySize(ByVal DirPath As String) As Long Dim DirSize As Long Dim Dir As DirectoryInfo = New DirectoryInfo( ....Read More
Rating
Showing and enumerating MDI child forms
Total Hit (3181) An MDI child form is a regular form whose MdiParent property points to its MDI container form, so the code that creates and displays a child window is very simple: «Code LangId=2» Sub ShowMdiChildWindow() ' Display the MenuForm form as a child of this form. Dim frm As New MenuForm() ....Read More
Rating
Determining if a database value is null in VB.NET
Total Hit (1644) You must create an object of the System.DBNull class and then once you have an instance of it you can check your variables like the example below shows.
Rating
This is a link to a different site .NET Overview - sample chapter from Introducing .NET
Total Hit (1299) This first chapter will summarize many of the most important aspects of .NET. We'll start by looking at some of the serious drawbacks of current software development that prompted Microsoft to rethink their entire development structure. Then we'll progress to an overview of the overall vision and th ....Read More
Rating
This is a link to a different site Multicast Sockets
Total Hit (3895) In this chapter, we will create two Windows applications using multicasting features. With one application it will be possible to chat with multiple systems, where everyone is both a sender and a receiver. The second application – in the form of a picture show – demonstrates how large data packets c ....Read More
Rating
This is a link to a different site Adding Mouse Gesture Support to .NET Windows Applications
Total Hit (1969) Use of mouse gestures to control application is becoming increasingly common in the more sophisticated web browsers. This sample demonstrates how you can support a range of mouse gestures in .NET Windows Forms Applications by implementing an IMessageFilter. VB.NET and C# code provided. ....Read More
Rating
This is a link to a different site ADO.NET: Convert an ADO Application to ADO.NET
Total Hit (591) This is an example of an ADO application that has been ported to .NET without the original graphical interface. It also shows the usage of a forward-only read-only fast DataReader. It shows how to use a DataView class to take a table from a DataSet and operate on it in a fashion similar to the old A ....Read More
Rating
This is a link to a different site SOAP Basics : Sample Chapter from Professional XML Web Services
Total Hit (1972) At the core of the Web Services model is SOAP (Simple Object Acc Protocol), the protocol that allows messages to be transmitted as XML documents and invokes the capabilities of Web Services. The SOAP standard is the key to Web Services. This chapter delves into SOAP 1.1, and the concepts needed to ....Read More
Rating
This is a link to a different site How Do I... Get Started Using Interoperability?
Total Hit (1636) The common language runtime's COM interoperability services make it possible to use existing COM objects from within managed applications and expose managed objects to existing COM applications. Note: Managed code is code that targets the common language runtime. In addition, the runtime's p ....Read More
Rating
This is a link to a different site How Do I...Serialize an Object Graph
Total Hit (749) This sample shows how to serialize a graph of objects using the serialization infrastructure.
Rating
This is a link to a different site .NET Data Caching
Total Hit (1584)
Rating
This is a link to a different site Using Threads
Total Hit (2326) This article explains the different models of threading — single, apartment, and free — and the use of each model. It also introduces a code sample in C# that uses threading to help you write applications that will take advantage of threading. The article also discusses important issues involved in ....Read More
Rating
This is a link to a different site Serialize VB.NET objects without the events
Total Hit (1972) Because of the way VB.NET implements events, when you serialize an object, its events get serialized too (because events are actually implemented using hidden multicast delegate fields). A side effect of this is that any object which handles events raised by the object being serialized will be consi ....Read More
Rating
This is a link to a different site Skinned ListBar
Total Hit (1948) This article demonstrates overriding the drawing routines in the Outlook Style ListBar to create a new ListBar which inherits the behaviour of the original control but draws in a much customised way.
Rating
This is a link to a different site FAQ: How do I copy or move a file from one location to another?
Total Hit (1979)
Rating


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