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

 

Fill ComboBox from database
Total Hit (1976)
Rating
Adding an image as an embedded resource, and loading it from code
Total Hit (2614) 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 (2756)
Rating
Case insensitive replace in .net
Total Hit (12024) 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 (2735) «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 (2329) «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
Take advantage of the new math functions
Total Hit (3000) The System.Math class exposes several static methods that let you perform many common operations. These functions replace the VB6 functions with same name, but there are a few new functions that have no direct VB6 counterpart: Ceiling(x) returns the integer equal or higher than the argument Floo ....Read More
Rating
Select the transaction isolation level and timeout in a serviced component
Total Hit (2947) Writing a transactional COM+ component with VB.NET is as simple as applying the Transaction attribute to a class that inherits from System.EnterpriseServices.ServicedComponent: «Code LangId=2» Imports System.EnterpriseServices < Transaction()> Public Class BankTransfer Inherits ServicedC ....Read More
Rating
Discovering if the input connection string is for the SQL Server managed provider
Total Hit (2784)
Rating
CreateFileAssociation - Creating a new file association
Total Hit (4479)
Rating
Iterating over the characters in a string
Total Hit (2857) 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 (2495) «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 (2117)
Rating
Query Specific part of XML file using XPathNavigator and XPathDocument
Total Hit (2054) our sample XML document is as below «Code LangId=2»<?xml version="1.0" encoding="utf-8" ?> <SideBar> <Panel Caption="Downloads"> <Link Text="VB" URL="LanguageCategory.aspx?SelectionId=1" /> <Link Text="VB.net" URL="LanguageCategory.aspx?SelectionId=2" /> <Link Text="C#" URL="Language ....Read More
Rating
Dashed lines with custom caps
Total Hit (4290) 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 (4284)
Rating
Exclude code portions with the Conditional attribute
Total Hit (3240) VB developers have always used the #IF compiler directive to include or esclude portions of code from the application. The problem with this directive is that you can easily exclude a procedure with a single directive, but it isn't easy to discard all the calls to that procedure (which would raise a ....Read More
Rating
AddRemoveEventHandler - Add or remove an event handler through reflection
Total Hit (2302)
Rating
This is a link to a different site Efficiently Searching a Sorted Array
Total Hit (1525) 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 (2241) 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 Multithreaded Programming with Visual Basic .NET
Total Hit (1170) 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 Walkthrough: Building a Word Document Using SQL Server Data
Total Hit (908) Shows how you can create customized documents based on Microsoft SQL Server data in code by taking advantage of bookmarks in a Microsoft Office Word 2003 document or template.
Rating
This is a link to a different site Flat Style Combo Boxes
Total Hit (2100) 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 DataSets in Microsoft .NET - 1
Total Hit (1779) ADO.NET was designed to meet the needs of this new programming model: disconnected data architecture, tight integration with XML, common data representation with the ability to combine data from multiple and varied data sources, and optimized facilities for interacting with a database, all native to ....Read More
Rating
This is a link to a different site Creating Control Arrays in Visual Basic .NET and Visual C# .NET
Total Hit (1042) This paper shows how to create and manage control arrays with Visual Basic® .NET and Visual C#™ .NET.
Rating
This is a link to a different site XML Web Services (RPC the Easy Way)
Total Hit (2187) This sample chapter covers following things «LI»The Role of XML Web Services in a Distributed System «LI».NET Remoting vs. XML Web Services «LI»XML Web Service Plumbing «LI»The Role of IIS «LI»Creating a Virtual Directory «LI»The XML Web Service File Format «LI»Creating an XML Web Service ....Read More
Rating
This is a link to a different site Sample Chapter from Visual Basic .NET Code Security Handbook
Total Hit (1628) A whole chapter for .net security
Rating
This is a link to a different site How Do I...Make an Asynchronous Call to a Remote Object?
Total Hit (740) All the examples up to this point made synchronous calls to the remote object. This strategy might not always be desirable since the remote object might have to perform a number of time-consuming tasks and it is not advisable to block the client while a call is in progress. This example demonstrates ....Read More
Rating
This is a link to a different site Safe, Simple Multithreading in Windows Forms, Part 2
Total Hit (1086) Explores how to leverage multiple threads to split the user interface (UI) from a long-running operation while communicating further user input to the worker thread to adjust its behavior, thus allowing a message-passing scheme for robust, correct multithreaded processing. ....Read More
Rating
This is a link to a different site Easy way to send SMS from .net application
Total Hit (1227)
Rating


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