- Subscribe to this page:
- RSS
- Email Alert
programming languages
(168 results)-
Downloads
Learn and use regular expressions with Kodos
Feb 2010
Kodos is a Python program that helps you learn and create regular expressions via a GUI interface. Vincent Danen offers this introduction to using regular expressions.
Provided by Vincent Danen
-
Downloads
Reset local administrator password VBScript
Apr 2004
One of the best tools Microsoft has ever given the average administrator is scripts. This handy VBScript allows administrators to quickly reset the local administrator password.
Provided by TechRepublic
-
Downloads
Create users in Active Directory from a CSV file with this VBScript
Jan 2006
This VBScript will create users with passwords in Active Directory in the Users container. Creating users can be tedious, especially when user information already resides in your company's HR...
Provided by TechRepublic
-
Downloads
How do I... Use C# to upload and download files from an FTP server?
Oct 2007
Many third party components exist that enable developers to implement upload and download capabilities in their applications. With C# and the .NET Framework Microsoft has given developers this...
Provided by Zach Smith
-
Downloads
How do I... Generate barcodes using C#?
Nov 2007
There are many libraries that you can buy to generate barcodes from the .NET Framework. But why buy one when you could use a free font in conjunction with a few GDI+ functions? Zach Smith shows...
Provided by Zach Smith
-
Downloads
Use Microsoft Message Queuing in C# for inter-process communication
Mar 2007
Microsoft Message Queuing (MSMQ) is a way to send messages to a queue for later processing. The messages are sent to the queue by a "Producer" application, and retrieved from the queue by a...
Provided by Zach Smith
-
Downloads
How do I... Modify Word documents using C#?
Jan 2008
Accessing Word components from C# isn't quite as straight-forward as many other features of C# and the .NET Framework. With that said -- it's not rocket science either. You simply need to know...
Provided by Zach Smith
-
Downloads
Use the .NET FileSystemWatcher object to monitor directory changes in C#
Mar 2007
There are many instances that require systems to perform certain tasks when files or directories are created or modified. One of the more interesting objects included in the Microsoft .NET...
Provided by Zach Smith
-
Downloads
Manage WinForm controls using the Anchor and Dock properties
Mar 2007
Many beginning WinForms developers have trouble keeping the controls on their forms uniform and organized. Often the controls look fine at design time, but when the form is resized at runtime the...
Provided by Zach Smith
-
Downloads
70+ Keyboard shortcuts to move faster in Microsoft Access
Jul 2005
This handy, two-page table lists more than 70 keyboard shortcuts and their corresponding functions for Microsoft Access. Download and print this time-saving document and post it near your keyboard...
Provided by TechRepublic
-
Downloads
A pragmatic approach to training programmers
Jul 2009
Justin James believes there should be two educational tracks for software programmers: a true computer science program that focuses on a very mathematical, theoretical approach to programming, and...
Provided by Justin James
-
Downloads
Create Active Directory users and Exchange mailboxes from a CSV file with VBScript
Jan 2006
This VBScript will create Active Directory users and Exchange accounts from a CSV file. Creating users and Exchange accounts can be tedious, especially when user information already resides in...
Provided by TechRepublic
-
Downloads
Gather Windows system details with this VBscript
Jan 2006
This handy VBscript gathers information on Windows machines and writes the information to a CSV file. Use the handy VBscript to gather a variety of system information on and Windows machines in...
Provided by TechRepublic
-
Downloads
Understand schema-based XML filtering
Feb 2010
Edmond Woychowsky shares code that creates XSL using an XML schema. He says that using the code as a starting point when dealing with BizTalk may help you keep your sanity.This download is also...
Provided by Edmond Woychowsky
-
Downloads
The Network Address Inventory script
Jan 2002
Use this VBScript to inventory the Host name, IP address, and MAC address of every computer on your network using Microsoft Excel.
Provided by TechRepublic
-
Downloads
Convert an XML file into an Excel spreadsheet with this technique
Mar 2007
Developers often deal with information that is in no way user-friendly without really thinking about how a user would handle it. XML is a prime example --- most users don't know what to make of...
Provided by Edmond Woychowsky
-
Downloads
How do I... Use threading to increase performance in C#? (Part 2)
Mar 2008
Part 1 of this series demonstrated basic usage of the ThreadPool object and demonstrated a few different techniques that you can use with the ThreadPool. One of the main disadvantages of the...
Provided by Zach Smith
-
Downloads
Create a simple shopping cart using ColdFusion
Feb 2005
The techniques outlined in this article will enable you to implement a shopping cart on your Web site using the ColdFusion programming language. This method has advantages and disadvantages, but...
Provided by TechRepublic
-
Downloads
The Find Master Browser Utility script
Oct 2001
Use this VBScript to locate the master browser in any Windows peer-to-peer workgroup.
Provided by TechRepublic
-
Downloads
10 skills developers will need in the next five years
Apr 2009
If you're a developer looking to get ahead in your field (or in some cases, to simply stay employed), this is not a good time to be complacent. Justin James lists the skills you'll want to work on...
Provided by Justin James
-
Downloads
17 useful PHP array functions complete with examples
Jul 2005
This document outlines some of the more useful functions in the PHP array toolkit, and features detailed explanations and usage examples. Like arrays in other programming languages, PHP arrays...
Provided by TechRepublic
-
Book chapters
Master the use of variables in your Visual Basic for Applications (VBA) procedures
May 2007
Visual Basic for Applications (VBA) procedures often need to store temporary values for use in statements and calculations that come later in the code. Although you may get away with using the...
Provided by Que Publishing
-
Downloads
Empty Folder Tracker
Aug 2003
You don't want empty folders to waste resources on your Windows machines--but you also don't want to waste time locating them and deleting them manually. Use this handy VBS utility to quickly find...
Provided by TechRepublic
-
Downloads
How do I... Implement the Soundex function in C#?
Apr 2008
For years Microsoft SQL Server has provided developers with a method called Soundex that is used to retrieve an encoded string. Words that sound alike have similar encodings, so you can use this...
Provided by Zach Smith
-
Downloads
Dynamic XML document construction with the PHP DOM
Dec 2006
When working with XML-based applications, developers often find themselves facing the requirement to generate XML-encoded data structures on the fly. Although this task might seem intimidating,...
Provided by Melonfire
-
Downloads
Hands-on programming: Create a function library from an external configuration
Jan 2010
Developer Justin James shows you how to create a generic class that can be retrieved by name and a class that inherits from the generic class and pre-loads itself with functions stored in an...
Provided by Justin James
-
Downloads
Use C# and the .NET Framework to develop your own plugin architecture
Nov 2006
Many dynamic applications allow third parties to create plugins that extend the functionality of the application. In the past creating an architecture that would allow plugins was difficult, which...
Provided by Zach Smith
-
Downloads
GUI scripting in bash
Jul 2010
GUI programming for shell scripts, with helper programs like Zenity and kdialog, is much easier to accomplish than GUI programs for other programming environments. Vincent Danen demonstrates what...
Provided by Vincent Danen
-
Downloads
Applied reflection: Write 80 percent less access code when interacting with a database
Sep 2006
With databases behind virtually every application, quite a bit of time is spent by application developers writing code to interact with databases. Zach Smith explains how to combine the Microsoft...
Provided by Zach Smith
-
Downloads
Applied Reflection: Creating a dynamic Web service to simplify code
Oct 2006
Many developers are using Web services to communicate with their business logic, and there are a lot of advantages to this. This approach allows a wide range of flexibility in the architecture...
Provided by Zach Smith
-
Downloads
The Choice command is back in Windows Vista
May 2008
Microsoft has put the Choice command back in Windows Vista and made it a bit more powerful. Since the Choice command can come in extremely handy in a lot of situations and because it has been...
Provided by Greg Shultz
-
Downloads
Access the true power of JavaScript with object oriented programming
Jun 2005
This download takes an in depth look at some of the key concepts of object oriented programming (OOP) in JavaScript and then discuss how JavaScript implements them. While object oriented (OO)...
Provided by TechRepublic
-
Downloads
How do I... Determine the distance between ZIP codes using C#?
Mar 2008
Calculating the distance between ZIP codes has become a common feature in search engines. For instance, if you're searching for restaurants, a Web site will often allow you to enter a ZIP code and...
Provided by Zach Smith
-
Downloads
Learn advanced JavaScript techniques with this free chess game tool
Aug 2005
Whether it is determining the position of a pawn on a chess board or a button on a Web interface, properly coding JavaScript requires thorough knowledge of the underlying logic. Programming is as...
Provided by TechRepublic
-
Book chapters
Get up to speed on C# basic concepts
Jun 2006
C# is a simple, modern, object-oriented, and type-safe programming language that combines the high productivity of rapid application development languages with the raw power of C and C++. The C#...
Provided by Addison Wesley Professional
-
Book chapters
Master the fundamentals of C#
Jul 2007
Explore the fundamentals of the C# programming language in this sample chapter from C# Primer: A Practical Approach. Investigate Web forms and type inheritance as well as predefined language...
Provided by Addison Wesley Professional
-
Book chapters
Create ASP.NET applications
Oct 2005
This sample chapter, taken from Sams' ASP.NET Unleashed, 2nd Edition teaches you how to work with ASP.NET applications. An ASP.NET application consists of all files located within a particular...
Provided by Sams Publishing
-
Downloads
How do I... Publish a custom application performance counter in C#?
Apr 2008
One important aspect of enterprise level application development is the need to monitor processes and determine if those processes are working as intended. This can be solved many different ways...
Provided by Zach Smith
-
Book chapters
Get up to speed on scripting tools and techniques
Jul 2005
This book excerpt from Paraglyph Press offers an excellent overview of scripting and scripting tools. This introductory chapter to Windows Admin Scripting Little Black Book, Second Edition, lays...
Provided by Paraglyph Press
-
Downloads
Use the advantages of custom attributes in your C# applications
Apr 2007
In the .NET Framework attributes are used for many different reasons -- from defining which classes are serializable to choosing which methods are exposed in a Web service. Attributes allow...
Provided by Zach Smith
-
Downloads
10+ of my favorite Windows API functions to use in Office applications
Dec 2010
When a VBA solution falls short of your needs, there's probably a Windows API function that can handle the job. Susan Harkins lists 10 handy APIs and explains how you can put them to work.This...
Provided by Susan Harkins
-
Downloads
Product Download : WebLogic Server Performance Monitoring Tool
Sep 2010
ManageEngine Applications Manager, a tool for monitoring the performance and availability of applications and servers, helps in WebLogic Management. It automatically diagnoses, notifies, and...
Provided by ManageEngine
-
Downloads
GUI scripting in bash
Jul 2010
GUI programming for shell scripts, with helper programs like Zenity and kdialog, is much easier to accomplish than GUI programs for other programming environments. Vincent Danen demonstrates what...
Provided by Vincent Danen
-
Downloads
Understand schema-based XML filtering
Feb 2010
Edmond Woychowsky shares code that creates XSL using an XML schema. He says that using the code as a starting point when dealing with BizTalk may help you keep your sanity.This download is also...
Provided by Edmond Woychowsky
-
Downloads
Learn and use regular expressions with Kodos
Feb 2010
Kodos is a Python program that helps you learn and create regular expressions via a GUI interface. Vincent Danen offers this introduction to using regular expressions.
Provided by Vincent Danen
-
Downloads
Hands-on programming: Create a function library from an external configuration
Jan 2010
Developer Justin James shows you how to create a generic class that can be retrieved by name and a class that inherits from the generic class and pre-loads itself with functions stored in an...
Provided by Justin James
-
Downloads
A pragmatic approach to training programmers
Jul 2009
Justin James believes there should be two educational tracks for software programmers: a true computer science program that focuses on a very mathematical, theoretical approach to programming, and...
Provided by Justin James
-
Downloads
10 skills developers will need in the next five years
Apr 2009
If you're a developer looking to get ahead in your field (or in some cases, to simply stay employed), this is not a good time to be complacent. Justin James lists the skills you'll want to work on...
Provided by Justin James
-
Downloads
IT Hiring Kit: Programmer
Nov 2008
The IT Hiring Kit for Programmers will help you interview, evaluate, and select suitable candidates for a programmer's position in your company. This kit comes with a detailed job description,...
Provided by TechRepublic Pro
-
Downloads
Try command-line looping for added efficiency
Sep 2008
Creating complex commands is one of the strengths of the command line, even though it takes an investment of time to learn this skill. Using loops, you can take often-used commands that would...
Provided by Vincent Danen
-
Downloads
How do I... Make C# or .NET Framework applications accessible in the system tray?
Jun 2008
Putting an icon for your application in the system tray is a great way to insure that your program is easily accessible to the user. Zach Smith explains how to use the system tray with C# and the...
Provided by Zach Smith
-
Downloads
The Choice command is back in Windows Vista
May 2008
Microsoft has put the Choice command back in Windows Vista and made it a bit more powerful. Since the Choice command can come in extremely handy in a lot of situations and because it has been...
Provided by Greg Shultz
-
Downloads
How do I... Implement the Soundex function in C#?
Apr 2008
For years Microsoft SQL Server has provided developers with a method called Soundex that is used to retrieve an encoded string. Words that sound alike have similar encodings, so you can use this...
Provided by Zach Smith
-
Downloads
How do I... Publish a custom application performance counter in C#?
Apr 2008
One important aspect of enterprise level application development is the need to monitor processes and determine if those processes are working as intended. This can be solved many different ways...
Provided by Zach Smith
-
Downloads
How do I... Determine the distance between ZIP codes using C#?
Mar 2008
Calculating the distance between ZIP codes has become a common feature in search engines. For instance, if you're searching for restaurants, a Web site will often allow you to enter a ZIP code and...
Provided by Zach Smith
-
Downloads
How do I... Use threading to increase performance in C#? (Part 2)
Mar 2008
Part 1 of this series demonstrated basic usage of the ThreadPool object and demonstrated a few different techniques that you can use with the ThreadPool. One of the main disadvantages of the...
Provided by Zach Smith
-
Downloads
How do I... Use threading to increase performance in C#? (Part 1)
Jan 2008
Threading is commonly used by developers to increase the performance of applications. However, if used incorrectly threading can have the exact opposite effect. Bad threading logic can actually...
Provided by Zach Smith
-
Downloads
How do I... Modify Word documents using C#?
Jan 2008
Accessing Word components from C# isn't quite as straight-forward as many other features of C# and the .NET Framework. With that said -- it's not rocket science either. You simply need to know...
Provided by Zach Smith
-
Downloads
How do I... Warn a user before they submit a form or follow a link on an HTML page?
Dec 2007
Ever have an instance where you wanted to warn a user that they were about to delete a record or submit a form on a Web page? Zach Smith shows you how to use simple JavaScript statements to warn...
Provided by Zach Smith
-
Downloads
How do I... Create a customized JavaScript jump menu in Dreamweaver CS3?
Nov 2007
If you are in charge of maintaining a Web site, one of your recurring tasks is likely accommodating a committee of supervisors or clients that want to add links to the site on a continuing basis....
Provided by John Lee
-
Downloads
How do I... Generate barcodes using C#?
Nov 2007
There are many libraries that you can buy to generate barcodes from the .NET Framework. But why buy one when you could use a free font in conjunction with a few GDI+ functions? Zach Smith shows...
Provided by Zach Smith
-
Downloads
How do I... Use C# to upload and download files from an FTP server?
Oct 2007
Many third party components exist that enable developers to implement upload and download capabilities in their applications. With C# and the .NET Framework Microsoft has given developers this...
Provided by Zach Smith
-
Downloads
How do I... Get user input using the MessageBox object in C#?
Oct 2007
Nearly all .NET developers have experience with the MessageBox object for displaying simple messages to users. Zach Smith shows you how to use the MessageBox as a user input component by using the...
Provided by Zach Smith
-
Downloads
How Do I... Implement Drag-n-Drop in C# applications?
Oct 2007
Drag-n-Drop is a fundamental function of the Windows operating system. Users are used to the action of clicking on an item and dragging it to another location/program to either move, copy, or...
Provided by Zach Smith
-
Book chapters
Master the grammar of NXT-G and build a ScanBot
Oct 2007
LEGO and National Instruments designed the computer language NXT-G to explicitly run on a toy, but that doesn't mean it's "just a toy" or that it can't be used to write "real" programs. There is...
Provided by No Starch Press
-
Book chapters
Represent the Fibonacci Sequence as a collection in the form of an STL sequence class
Oct 2007
Anyone who appreciates mathematical elegance will appreciate the Fibonacci sequence and its associated relationship, the Golden Ratio. In this chapter download from Extended STL: Collections and...
Provided by Addison Wesley Professional
-
Downloads
How do I... Serialize a hash table in C# when the application requires it?
Oct 2007
The .NET Framework is unable to serialize any object that implements the IDictionary interface. This restriction includes, but is not limited to, hash tables. At some point in your application...
Provided by Zach Smith
-
Downloads
How do I... Catch system level events in C#?
Sep 2007
Nearly all C# developers are accustomed to subscribing to events that originate from the local application. What may come as a surprise to some developers is the fact that some system level events...
Provided by Zach Smith
-
Downloads
How Do I... Create an HTML page with multiple colored links?
Aug 2007
Before the advent of Cascading Style Sheets (CSS), HTML designers were stuck with a limited range of options when choosing color attributes for their anchor tags. But if you understand basic HTML,...
Provided by John Lee
-
Downloads
How do I... Resize images using GDI+ while preserving their aspect ratio?
Aug 2007
There are many projects that require the automatic resizing of an image. A good example of this is a Web site such as Flickr that allows users to upload images. The user-supplied images are...
Provided by Zach Smith
-
Downloads
How do I... Convert images to grayscale and sepia tone using C#?
Aug 2007
The Microsoft .NET Framework provides developers with many different libraries that enable them to create and modify images. In this How do I... Zach Smith demonstrates two methods for converting...
Provided by Zach Smith
-
Downloads
The architecture of a flexible .NET file processing system -- Part 3
Aug 2007
In the Part 1 of this series Zach Smith described the overall architecture of a dynamic and scalable file import system. In Part 2 of the series, he got into the details of designing a highly...
Provided by Zach Smith
-
Downloads
Create useful and relevant JavaScript documentation with JSDoc
Jul 2007
Whatever the reason, not documenting an application is never a good thing, even if it is usually something of a chore. This is especially true when given the task of documenting client-side...
Provided by Edmond Woychowsky
-
Book chapters
Master the fundamentals of C#
Jul 2007
Explore the fundamentals of the C# programming language in this sample chapter from C# Primer: A Practical Approach. Investigate Web forms and type inheritance as well as predefined language...
Provided by Addison Wesley Professional
-
Downloads
10 JSP tag libraries no programmer should be without
Jun 2007
One of JSP's most overlooked features is its ability to work with reusable code blocks, aka "tag libraries", to add new functionality to a JSP application. These tag libraries, declared using...
Provided by Melonfire
-
Book chapters
Write, compile, and execute a program in C++
Jun 2007
Learning any new programming language requires writing programs. Learn how to write, compile, and execute simple programs in C++ in this sample chapter from C++ Primer, 4th Edition. First,...
Provided by Addison Wesley Professional
-
Downloads
The architecture of a flexible .NET file processing system -- Part 2
Jun 2007
While Web services are taking the world by storm, and service oriented architecture is becoming the norm, some companies still rely on importing flat files to communicate with partners. BizTalk...
Provided by Zach Smith
-
Book chapters
Audit your code for security problems
Jun 2007
If you're a developer who has joined a development project already in progress or have decided to use third-party code, or if you're an administrator who is worried about the quality of code...
Provided by Syngress
-
Downloads
How do I... Get started using the F# programming language
Jun 2007
F# (pronounced F Sharp) is a functional programming language based upon OCaml. It was developed by Microsoft's Microsoft Research department. F# runs within the .NET CLR, which means it can be...
Provided by Justin James
-
Downloads
How do I... Control text properties with CSS?
May 2007
CSS lets you exert tremendous control over the visual aspects of your Web pages, adjusting page height and width, background colors and images, borders, and typeface. CSS also introduces some...
Provided by Melonfire
-
Book chapters
Use Visual Basic 2005 Express Edition to develop custom applications that link to an SQL Server Express database
Nov 2006
SQL Server Express is an innovative database product that combines power, flexibility, ease of use, and no cost, as well as the ability to develop custom applications using Visual Basic Express....
Provided by Sybex
-
Downloads
Create users in Active Directory from a CSV file with this VBScript
Jan 2006
This VBScript will create users with passwords in Active Directory in the Users container. Creating users can be tedious, especially when user information already resides in your company's HR...
Provided by TechRepublic
-
Book chapters
Follow the rules to more effective C# programming
Apr 2005
For C# programmers, no single function generates more discussion and more confusion than GetHashCode(). Hash-based containers use hash codes to optimize searches. In .NET, every object has a hash...
Provided by Addison Wesley Professional
-
Downloads
The Find Master Browser Utility script
Oct 2001
Use this VBScript to locate the master browser in any Windows peer-to-peer workgroup.
Provided by TechRepublic
-
Downloads
Learn and use regular expressions with Kodos
Feb 2010
Kodos is a Python program that helps you learn and create regular expressions via a GUI interface. Vincent Danen offers this introduction to using regular expressions.
Provided by Vincent Danen
-
Book chapters
Create a photo gallery using CSS
Jan 2006
This sample chapter, taken from Sams Teach Yourself CSS in 10 Minutes, discusses how to create a photo gallery using a series of floated div elements. You don't need to be a CSS expert to create...
Provided by Sams Publishing
-
Downloads
13 useful data manipulating Perl string functions
Jun 2005
This download will familiarize you with Perl's string functions, by listing and explaining some of the most important functions, together with sample code, and guidance on when to use each one. ...
Provided by TechRepublic
-
Downloads
Driver Query tool HTA
Aug 2002
This HTML Application (HTA) uses Windows Script Host and VBScript to give XP Pro's Driver Query tool a GUI front end.
Provided by TechRepublic
-
Downloads
File Compare Tool executable file
Sep 2002
For IT pros, using the FC DOS-based command can be frustrating. That is why Greg Shultz developed a neat little HTML Application (HTA) that uses Windows Script Host and VBScript to give the...
Provided by TechRepublic
-
Downloads
Create better interactive PDF Web forms with the FDF Toolkit
Aug 2005
Using the additional capabilities of Adobe's Portable Document Format (PDF) you can create Web forms that contain source information and interactive features resulting in a better overall user...
Provided by TechRepublic
-
Book chapters
Create advanced PHP 5 forms with these powerful techniques
Dec 2005
This sample chapter, taken from Sams' PHP 5 Unleashed, discusses how accomplish various tasks with PHP, such as protecting values passed to HTML forms, encoding data and data transformation, and...
Provided by Sams Publishing
-
Downloads
Extend the capabilities of your .NET application with Excel integration
Aug 2005
A .NET application may be greatly enhanced by providing additional functional via Excel integration. This includes the number-crunching capabilities inherent in Excel, as well as charting and much...
Provided by TechRepublic
-
Downloads
Building an asynchronous FTP client class in C#
Mar 2005
While it's a relatively old technology, the File Transfer Protocol (FTP) is still a viable and useful communication method for moving data across a network. This in-depth article explains how an...
Provided by TechRepublic
-
Downloads
What are you teaching your software developers and is it hurting you?
Feb 2006
If your software developers are learning how to be software developers through their experience at your organization, perhaps you should ask what you are teaching them. Learning a programming...
Provided by TechRepublic
-
Downloads
Demo Files: Use JavaScript to create a DataGrid control with inline editing
Jan 2005
This set of demonstration files will show you how to re-create an ASP.Net inline editable DataGrid, using Client Side JavaScript. For a complete explanation of how the DataGrid control is created...
Provided by TechRepublic
-
Downloads
Get control with 10 practical Perl modules for network programmers
Mar 2006
CPAN's network programming category has thousands of Perl modules ranging from general (server daemons) to highly-specific applications (interacting with a Cisco router). The Perl programming...
Provided by TechRepublic
-
Downloads
10 things you should know about Visual Studio 2005 and the .NET Framework 2.0
Nov 2005
Here are 10 important points to ponder regarding the new Visual Studio .NET 2005 and the .NET 2.0 development platform. The November 7, 2005 release of Visual Studio 2005 arguably marks...
Provided by TechRepublic
-
Downloads
Windows XP Pro File Sharing Interface Switcher VB script
May 2005
Windows XP Pro's Simple File Sharing interface makes it easy to set up common file sharing arrangements, but doesn't allow you to set individual NTFS permissions for each user--a task the Classic...
Provided by TechRepublic
-
Book chapters
Master JavaScript basics to make your Web site more dynamic
Jul 2005
In this intro chapter, you'll learn what JavaScript is (and isn't) and get your feet wet by creating some sample code. This excerpt from The Book of JavaScript provides a basic introduction to...
Provided by No Starch Press
-
Book chapters
Learn to use PHP and PostgreSQL to deliver dynamic Web content
Dec 2005
This chapter from Sams' PostgreSQL shows how you can use PHP to interact with a database to produce dynamic results. PHP and PostgreSQL combine with your Web server to create a system that...
Provided by Sams Publishing
-
Downloads
Combine the versatility of XML and JavaScript to create an adaptable quiz application
Aug 2005
Follow the creation and evolution of a JavaScript-based quiz application as a developer satisfies the specified requirements for a client-side-only solution. Developing applications based on the...
Provided by TechRepublic
-
Downloads
Delete Word Document Hyperlinks VBScript
May 2005
Deleting a single hyperlink from a Word document is easy, but deleting 50 or 100 can be time consuming. Our Delete Word Document Hyperlinks VBScript quickly deletes all the hyperlinks from a Word...
Provided by TechRepublic
-
Downloads
Create a multi-state image toolbar on your Web site with this JavaScript guide
Apr 2006
This document guides you through the process of using JavaScript and the DOM to build a three-state toolbar that accurately and efficiently handles different button states, and the...
Provided by TechRepublic
-
Book chapters
Master advanced PHP error handling techniques
Oct 2005
This sample chapter, taken from Sams' Advanced PHP Programming discusses PHP's built-in support for error handling. In programming, both external errors and code logic errors are inescapable....
Provided by Sams Publishing
-
Downloads
100+ Keyboard shortcuts to move faster in TextPad
Jul 2005
This list provides more than 100 keyboard shortcuts to help you work faster with the TextPad text editor. This handy, four-page table lists more than 100 keyboard shortcuts and their...
Provided by TechRepublic
-
Book chapters
Make your C# programs react with Delegates, Events, and Indexers
Oct 2005
This sample chapter, taken from Sams Teach Yourself the C# Language in 21 Days, discusses how to work with indexers, delegates, and events in C#. Learn about some of the more complicated topics...
Provided by Sams Publishing
-
Downloads
Add a text-size switcher to your Web site with PHP and CSS
Dec 2005
This tutorial will show you how to add such a text size switcher to your Web pages using PHP and CSS, thereby immediately making your Web site more accessible and scoring you useful brownie points...
Provided by TechRepublic
-
Book chapters
Learn to use data structures with VB 2005 Express
Dec 2005
This preview chapter from Visual Basic 2005 Express: Now Playing offers a solid introduction to using queues, stacks, and hash tables to manipulate data. Visual Basic 2005 Express is designed to...
Provided by No Starch Press
-
Downloads
17 useful PHP array functions complete with examples
Jul 2005
This document outlines some of the more useful functions in the PHP array toolkit, and features detailed explanations and usage examples. Like arrays in other programming languages, PHP arrays...
Provided by TechRepublic
-
Book chapters
Manipulate strings with PHP
Feb 2006
This sample chapter, taken from PHP Phrasebook, discusses how to use PHP to manipulate strings. Of all data types PHP supports, strings are probably the ones most often used.This sample chapter,...
Provided by Sams Publishing
-
Downloads
Ten commandments of egoless programming
Jun 2005
The term 'egoless programming' was coined more than 30 years ago to describe a philosophy that advocates putting developer egos on hold in the interest of producing higher-quality, lower-defect...
Provided by TechRepublic
-
Book chapters
Use the WPF to create visual effects without custom controls
Nov 2005
This sample chapter, taken from Programming Windows Presentation Foundation, examines the role that styles play in WPF, the types of properties that you can apply to styles, and how to create a...
Provided by O'Reilly Media
-
Downloads
Gather hard disk utilization data and store in SQL Server 2005 Express with this VBScript
Mar 2006
This VBScript gathers hard disk utilization information from Windows Server 2003, Windows XP and Windows Vista machines and stores the data in a SQL Sever 2005 Express Edition database. The...
Provided by TechRepublic
-
Downloads
10 useful PHP configuration variables
Mar 2005
PHP is a very popular scripting language among Web developers. When it comes to configuring your PHP setup, the default configuration is designed to get you up and running quickly. However, these...
Provided by TechRepublic
-
Book chapters
Deploy Windows application with Visual C# .NET and Visual Studio .NET
Nov 2005
This sample chapter, taken from MCAD Developing and Implementing Windows-based Applications with Microsoft Visual C# .NET and Microsoft Visual Studio .NET Exam Cram 2 (Exam Cram 70-316), discusses...
Provided by Que Publishing
-
Book chapters
Create Windows services, Web services, and deploy applications with C# .NET 2003
Nov 2005
This sample chapter, taken from Sams' Microsoft Visual C#.NET 2003 Kick Start, covers three important topics: Windows services, Web services, and how to deploy applications. Learn how to create...
Provided by Sams Publishing
-
Downloads
Learn advanced JavaScript techniques with this free chess game tool
Aug 2005
Whether it is determining the position of a pawn on a chess board or a button on a Web interface, properly coding JavaScript requires thorough knowledge of the underlying logic. Programming is as...
Provided by TechRepublic
-
Downloads
Encourage users to move to a newly sanctioned app with this member-submitted script
Jan 2006
TechRepublic asked members to submit their favorite network administration scripts and this is one of the responses. This script will parse through every windows user profile on a machine and...
Provided by TechRepublic
-
Downloads
Create a dynamic photo gallery with PHP and your digital camera's metadata
Sep 2005
Automatically organize your digital photography by taking advantage of your cameras built-in metadata and PHP's EXIF functions. With cell phones, disposable cameras, and other modern gadgetry,...
Provided by TechRepublic
-
Book chapters
Integrate C# code with Microsoft Excel
May 2006
This sample chapter, taken from Visual Studio Tools for Office: Using C# with Excel, Word, Outlook, and InfoPath, discusses how to integrate your C# code with Microsoft Excel. Excel is the...
Provided by Addison Wesley Professional
Keep Up with TechRepublic
Upcoming Webcasts
Upcoming webcasts from leading IT vendors
-
2012-05-24 at 11:00 am PT | 2:00 pm ET
Live Webcast: The 2012 Guide to Better Business Benefits from Data Analytics
Sponsored by Tableau Software
-
2012-06-05 at 11:00 am PT | 2:00 pm ET
Live Webcast: Getting to Microsoft Office 365: The right migration for your business
Sponsored by Microsoft
-
2012-06-12 at 9:00 am PT | 12:00 pm ET
Live Webcast: WebSphere DataPower for Mobile Application Security
Sponsored by IBM
Submit a Paper
Get your content listed in our directory!
Our directory is the largest library of vendor-supplied technical content on the Web. It’s also the first place IT decision makers turn to when researching technology solutions. Our members are already finding your competitors’ papers here - shouldn’t they find yours, too? It's FREE so click here and submit your white paper, case study, data sheet, research report, or other document today!



