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

 

Query Specific part of XML file using XPathNavigator and XPathDocument
Total Hit (2060) 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
Fill ComboBox from database
Total Hit (1982)
Rating
This is a link to a different site XPath Tester
Total Hit (561) Using this page you can test your XPath Queries
Rating
This is a link to a different site XPath Tutorial
Total Hit (533) XPath is a Query language for XML. You can use XPath to retrive data from XML document. XPath gives you faster performance and flexibility. This tutorial will explain you all basic concepts of XPath. It covers folloing topics. «LI»XPath Tutorial «LI»XPath HOME «LI»XPath Intro «LI»XPath Synt ....Read More
Rating
This is a link to a different site Stripping HTML Tags using Regular Expressions
Total Hit (1872) Have you ever wanted to strip all of the HTML tags from a string? There are many reasons you may want to do this. For example, if you provide a feature on your site where a user can have the contents of a Web page emailed to them, you may wish to strip all of the HTML tags from the particular articl ....Read More
Rating
This is a link to a different site Utilizing Regular Expression SubMatches
Total Hit (1617) This article examines advanced features of regular expressions. For more basic and beginner-level information on regular expressions, as well as a number of articles illustrating various applications of regular expressions, be sure to check out the articles at the Regular Expression Article Index! ....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 (2564) 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
This is a link to a different site Data Binding in Visual Basic .NET
Total Hit (1762) You might wonder why I didn't bind directly to the untyped DataSet. Well, the typed DataSet provides features such as early binding of fields. This enables you to use .CustomerName as a member of the DataSet instead of referencing the Items collection with the value "CustomerName," making the proces ....Read More
Rating
This is a link to a different site Fun With DrawImage
Total Hit (1257) If you've ever tried to rotate an image in VB6, you know how tedious it can be. Sure, given plenty of time for trial and error, combined with some reasonably tricky mathematics and a little patience, you can figure out how to map pixels from the source image into the rotated destination image. Enter ....Read More
Rating
This is a link to a different site Building Excel Real-Time Data Components in Visual Basic .NET
Total Hit (979) This article walks you through building a real-time data server for Microsoft Excel 2002 using Visual Basic .NET Beta 2.
Rating
This is a link to a different site Walkthrough: Building a Word Document Using SQL Server Data
Total Hit (910) 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 Walkthrough: Creating a Chart in Excel Based on SQL Server Data
Total Hit (988) Demonstrates how you can create a chart based on data from Microsoft SQL Server, using the Excel object model and code written in Microsoft Visual Basic .NET or Microsoft Visual C#.
Rating
This is a link to a different site Walkthrough: Creating a Table in Word
Total Hit (1018) Programmatically creating a table in Word is simple, once you know the tricks. Using the provided styles, you can quickly lay out an attractive table.
Rating
This is a link to a different site Walkthrough: Loading SQL Server Data into a Word Table
Total Hit (996) Learn to programmatically load data into a Word table from a SQL Server database by taking advantage of ADO.NET to access data, and using Microsoft Visual Studio Tools for the Microsoft Office System to create your project.
Rating
This is a link to a different site Walkthrough: Working with Offline SQL Server Data in Excel
Total Hit (1034) Microsoft Office Excel makes it easy to work with rectangular data, such as data from an external database. In this walkthrough, you'll load data from Microsoft SQL Server into an ADO.NET dataset. You'll then use the Excel object model to support synchronizing changes made to the data in Excel with ....Read More
Rating
This is a link to a different site Creating a Custom Spell-Checker with Word 2003 and Visual Basic .NET
Total Hit (993) You can tie into the objects and methods of Microsoft Office Word 2003 to create powerful applications. This article demonstrates using the Word object model in conjunction with Microsoft Visual Basic .NET to create a simple spell-checker whose functionality you can add to your own applications. ....Read More
Rating
This is a link to a different site A Primer on Building a Color Picker User Control with GDI+ in Visual Basic .NET or C#
Total Hit (2494) Although most developers and APIs use the RGB scheme when working with colors, it's not the only available way to represent or select colors. For instance, the standard Windows color-selection dialog box allows you to work with the HSL color scheme in an indirect way. In this article, the author des ....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 (2457) 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 Safe, Simple Multithreading in Windows Forms, Part 1
Total Hit (1067) It all started innocently enough. I found myself needing to calculate the area of a circle for the first time in .NET. This called, of course, for an accurate representation of pi. System.Math.PI is handy, but since it only provides 20 digits of precision, I was worried about the accuracy of my calc ....Read More
Rating
This is a link to a different site Safe, Simple Multithreading in Windows Forms, Part 2
Total Hit (1091) 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 Crawl Web Sites and Catalog Info to Any Data Store with ADO.NET and Visual Basic .NET
Total Hit (1879) Visual Basic .NET comes loaded with features not available in previous versions, including a new threading model, custom class creation, and data streaming. Learn how to take advantage of these features with an application that is designed to extract information from Web pages for indexing purposes. ....Read More
Rating
This is a link to a different site Add Professional Quality Reports to Your Application with Visual Studio .NET
Total Hit (2121) Crystal Reports for Visual Studio .NET provides a comprehensive reporting solution for .NET developers that is thoroughly integrated with both the Visual Studio .NET IDE and the .NET Framework. Crystal Reports supports ADO.NET, XML Web Services, and ASP.NET server controls and caching. It also integ ....Read More
Rating
This is a link to a different site .NET P2P: Writing Peer-to-Peer Networked Apps with the Microsoft .NET Framework
Total Hit (2013) Peer-to-peer applications such as Napster, Gnutella, and Scour that communicate as peers sharing and receiving information are becoming commonplace as a means for users connected on large networks to take advantage of the vast resources available to them. The Microsoft .NET Framework provides a rich ....Read More
Rating
This is a link to a different site Formatting with Regular Expressions
Total Hit (2854) If you're familiar with regular expressions, you know that they can be used for pattern matching and replacement in strings. (If you are not familiar with regular expressions, you're missing out on a powerful technology that has a myriad of applications. Read An Introduction to Regular Expressions t ....Read More
Rating
This is a link to a different site Common Applications of Regular Expressions
Total Hit (1866) Regular Expressions (for those not yet acquainted with them) provide a way of matching patterns of strings that may be simple or extremely complicated and they do it in a very efficient manner. For an introduction to regular expressions in ASP be sure to read: An Introduction to Regular Expressions ....Read More
Rating
This is a link to a different site Utilizing Regular Expressions
Total Hit (1683) This article is a follow-up to an earlier 4Guys article, An Introduction to Regular Expression with VBScript. (If you are not familiar with regular expressions, I highly recommend that you read the An Introduction to Regular Expression with VBScript article!) Since the previous article served more a ....Read More
Rating
This is a link to a different site Validate What? Using Regular Expressions to Validate Input
Total Hit (1733) Validating user input is a basic but very necessary part of web development, especially when dealing with databases. Queries don't go too well when you have !@)#&#$*%?= in the search field. So we have to build a function that searches the input string for illegal characters (defined by you) and then ....Read More
Rating
This is a link to a different site Removing All HTML Tags from a String Using Regular Expressions
Total Hit (1782) Have you ever had the need to remove all HTML tags from a file? Perhaps you wanted to display all HTML tags on a Web page, but as the raw HTML tags (like showing <B>bold</B> as opposed to bold). The script presented in this artcle will accomplish these tasks with ease! ....Read More
Rating
This is a link to a different site Picking Out Delimited Text with Regular Expressions
Total Hit (1728) Have you ever wanted to parse an HTML document and be able to easily grab the text between certain text delimiters? For example, imagine that we wanted to list all the text in an HTML document that falls within any bold tags (<b> ... </b>). Or say that we wanted to grab the text (if any) that was th ....Read More
Rating
This is a link to a different site User Tips: Converting URLs into Hyperlinks
Total Hit (2022) I just finished reading Designing Active Server Pages and was inspired by the regular expressions section. I would like to contribute some code... two functions which are fresh out of the oven! These functions are to cater for web content stored in a database where URLs & email address are part ....Read More
Rating


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