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 67 of 133) 3985 Result(s) found 

 

ExecuteSqlScriptsWithOsql - Executing an array of script files with the OSQL utility
Total Hit (2604)
Rating
GetOsqlPath - Get the path of the SQL Server's OSQL.exe utility
Total Hit (2757)
Rating
RestartDefaultSite - Restarting the default website in IIS
Total Hit (2671)
Rating
CreateAppendElement - appending a XmlElement under another XmlNode
Total Hit (2703)
Rating
DisplayXmlFile - loading a XML file in a TreeView
Total Hit (2681)
Rating
GetUSStates - Get the list of US States and their abbreviations
Total Hit (3150)
Rating
How to make a ComboBox do auto complete?
Total Hit (3013)
Rating
How to make a ComboBox do auto complete?
Total Hit (2894)
Rating
All about .NET Assemblies, GAC, Manifests and Deployment
Total Hit (3426) A .NET application is composed of three primary entities: assemblies, modules and types. An Assembly is the primary unit of deployment. The individual files that make up a .NET application are call modules. Types are the basic unit of encapsulating data and behavior behind an interface composed of ....Read More
Rating
How to determine Application Path in .net?
Total Hit (3584) In Visual Basic 6 you could use App.Path to see where your application's executable resides. In VB.NET you need to use the Application object and its ExecutablePath property to get the path for the executable file that started the application, including the executable name: Dim aPath As Strin ....Read More
Rating
How to assign ItemData to combobox / listbox in VB.net
Total Hit (9855) There is no ItemData property in VB.net for ComboBox and ListBox but you can use another approach which will give you same functionality of ItemData. Use following code to test how you can assign ItemData. ItemData is generally used to store Id related to the Item of list. ....Read More
Rating
GetComPlusAppRoleMembers - Retrieving a COM+ Application role's members
Total Hit (2907)
Rating
GetComPlusAppRoles - Retrieving a COM+ Application's roles
Total Hit (2778)
Rating
RegisterEnterpriseService - Register an Enterprise Service in the COM+ Catalog
Total Hit (2639)
Rating
ShutDownComPlusApplication - Shutting-down a COM+ application
Total Hit (2712)
Rating
StartComPlusApplication - Starting a COM+ application
Total Hit (2706)
Rating
UnregisterEnterpriseService - Unregister an Enterprise Service from the COM+ Catalog
Total Hit (2480)
Rating
GetWSException - Extracting the name of the SoapException's inner exception
Total Hit (2139)
Rating
This is a link to a different site ADO.NET and XML
Total Hit (1734)
Rating
This is a link to a different site Multicast Sockets
Total Hit (3894) 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 Working with Data in .NET : Sample Chapter from Professional .NET Framework
Total Hit (810) Throughout this chapter you will see how the System.Data namespace is structured and how to utilize many of the classes within it. As well, we'll go over the pros and cons of using ADO.NET, and then compare and contrast current ADO functionality with that of ADO.NET. After that we'll go into using t ....Read More
Rating
This is a link to a different site Inheritance and Interfaces : Sample Chapter from Professional VB.NET
Total Hit (1109) Inheritance is the idea that we can create a class that reuses methods, properties, events, and variables from another class. We can create a class with some basic functionality, then use that class as a base from which to create other, more detailed, classes. All these classes will have the same co ....Read More
Rating
This is a link to a different site Smart Socket
Total Hit (4970) A Smart Socket will allow you to send serializable objects via a socket without having to manually serialize or deserialize the data on either the client or the server. When working with low-level objects like TCP clients and listeners, much code needs to be written before you can start using the ob ....Read More
Rating
This is a link to a different site Welcome to Visual Basic .NET
Total Hit (2382) The goal of this book is to help you come up to speed with the Visual Basic .NET language even if you have never programmed anything before. We will start slowly, and build on what we learn. So take a deep breath, let it out slowly, and tell yourself you can do this. No sweat! No kidding! This secon ....Read More
Rating
This is a link to a different site Defining Types
Total Hit (1227) Visual Basic .NET is usually described as an object-oriented programming language. This encourages us to think about our programming in terms of objects. During object-oriented analysis and design, then, we identify the most important objects in our system, and consider how they relate to each other ....Read More
Rating
This is a link to a different site How the System Deals with Text
Total Hit (1923) This chapter describes how text is used in a typical computer operating system. Specific descriptions are given of how text is used in Visual Basic .NET. This chapter will show some examples to set the context of how text processing was performed before Visual Basic .NET and the .NET Framework. With ....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
This is a link to a different site Displaying the directory tree using the TreeView control in VB.NET
Total Hit (1837) This project was created using the .Net Beta 2 Release. It was originally written in VB6 and then rewritten in VB.Net. It teaches how to browse the directory structure and display it using the TreeView control. I make a point of highlighting differences between the VB6 and the VB.Net solutions. Some ....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 Building Objects : Sample Chapter from Beginning Visual Basic .NET
Total Hit (1173) In the time you've been using computers, you may well have heard the term, object-oriented. You may also have heard that it's a scary subject and tricky to understand. Whilst this was true about ten or fifteen years ago, today, object-orientation (or OO) is a wonderfully easy-to-understand concept t ....Read More
Rating


(Page 67 of 133) 3985 Result(s) found  ... 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 ...

Recommanded Links

 

Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.