Dev Articles
  Programming Help, Web Design Help, CSS Help - Hosted by Hostway
Dev Articles Forums 
ADO.NET  
Apache  
ASP  
ASP.NET  
C#  
C++  
ColdFusion  
COM/COM+  
Delphi-Kylix  
Design Usability  
Development Cycles  
DHTML  
Embedded Tools  
Flash  
Graphic Design  
HTML  
IIS  
Interviews  
Java  
JavaScript  
MySQL  
Oracle  
Photoshop  
PHP  
Reviews  
Ruby-on-Rails  
SQL  
SQL Server  
Style Sheets  
VB.Net  
Visual Basic  
Web Authoring  
Web Services  
Web Standards  
XML  
Dedicated Servers  
Moblin 
JMSL Numerical Library 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
 RSS  Articles
 RSS  Forums
 RSS  All Feeds
Write For Us Get Paid 
Request Media Kit
Contact Us 
Site Map 
Privacy Policy 
Support 
 USERNAME
 
 PASSWORD
 
 
  >>> SIGN UP!  
  Lost Password? 
PHP PROGRAMMING

Tabular Database Forms with HTML in HTML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-27
 
In this eighth part to a thirteen-part series on HTML database forms, you will learn what a tabular form is, how to lay it out, and what functions you should use with it. Join us as we continue our journey.


Swapping Column Positions in Web Page Layouts with Negative Margins in Style Sheets
     
Rating: 3 stars3 stars3 stars3 stars3 stars / 2
2008-08-26
 
In this second part of a four-part series on using negative margins to create DIV-based web page layouts, we're going to expand on what we learned in the first article by actually switching the positions of the columns of our sample web page. Keep reading to learn how.  Discuss (1)


Building a Server Application for an Internet Cafe in Delphi-Kylix
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-25
 
If you're building an Internet access control application, such as you might find in an Internet cafe, you can't do it without some way to keep track of the staff members who log users into the computers. This article, the second part of a six-part series that covers the entire application, will deal with user authentication, including the setting up of a database to track the important information.


Iterating and Incrementing Strings in Ruby in Ruby-on-Rails
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2008-08-21
 
In this conclusion to a three-part series focusing on strings in Ruby, you will learn not only how to iterate over and increment a string, but how to manage whitespace, convert a string, and more. It is excerpted from chapter four of Learning Ruby, written by Michael Fitzgerald (O'Reilly; ISBN: 0596529864). Copyright © 2007 O'Reilly Media, Inc. All rights reserved. Used with permission from the publisher. Available from booksellers or direct from O'Reilly Media.  Discuss (1)


Using the Find Functions for HTML Database Forms in HTML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2008-08-20
 
You may have any number of reasons to find a particular recordset in a database. Sometimes finding what you want is easier said than done. This article walks you through the different search functions (also known as Find functions) and shows you when you should use them. This is the seventh part of a thirteen part series that focuses on database forms with HTML.


Creating Web Page Layouts with Negative Margins in Style Sheets
     
Rating: 3 stars3 stars3 stars3 stars3 stars / 2
2008-08-19
 
If you regularly use floating DIVs to help your web pages look consistent in a variety of browsers, you'll be very interested in this technique. Instead of using positive margins, it involves using negative margins to help position your DIVs. This article is the first part of a four-part series.  Discuss (3)


Building an Internet Access Control Application in Delphi-Kylix
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-18
 
If you’ve ever visited an Internet café, you've noticed that there is usually a timer on the screen that tells you how much time you have left to use the Internet. In this series of articles we will discuss both the underlying architecture of such an application as well as the code involved, culminating in creating an example application.


Comparing and Manipulating Strings in Ruby in Ruby-on-Rails
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-14
 
In this second part of a three-part series focusing on strings in Ruby, you will learn how to test two strings to see if they are the same, and more. It is excerpted from chapter four of Learning Ruby, written by Michael Fitzgerald (O'Reilly; ISBN: 0596529864). Copyright © 2007 O'Reilly Media, Inc. All rights reserved. Used with permission from the publisher. Available from booksellers or direct from O'Reilly Media.  Discuss (1)


Sorting for Database Forms with HTML in HTML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-13
 
Welcome to the sixth part of a fourteen part series detailing how to create database forms in HTML. In this article, we will discuss sorting and its various functions as well as the boolean values that come as a result. Please join us as we tackle these issues.  Discuss (1)


Book Review: Learning the Yahoo! User Interface Library in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 3
2008-08-12
 
We've published many of Dan Wellman's articles here on Dev Articles, so it's a particular pleasure to review his first book. Learning the Yahoo! User Interface Library, published by UK-based Packt Publishing, promises to ease the job of JavaScript developers building web-based programs. Let's take a look between the covers.  Discuss (1)


Datatypes and More in RELAX NG in XML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-11
 
Welcome to the third part of a three-part series on RELAX NG. In this part, we will discuss datatypes, the grammar element, and creating named patterns. That's a lot of ground to cover, so let's get started.  Discuss (1)


Strings in Ruby in Ruby-on-Rails
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-07
 
Strings are used in every programming language, and most programmers spend a lot of time manipulating strings. This article will explain the various ways you can use and manipulate strings in Ruby. It is excerpted from chapter four of Learning Ruby, written by Michael Fitzgerald (O'Reilly, 2007; ISBN: 0596529864). Copyright © 2007 O'Reilly Media, Inc. All rights reserved. Used with permission from the publisher. Available from booksellers or direct from O'Reilly Media.  Discuss (1)


Edit and Other Database Form Functions with HTML in HTML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-08-06
 
This is the fifth part of a thirteen part series covering how to build database forms with HTML. We will start with a couple of edit functions and the deleteRow() function. Then we will go over the function that ties them all together and the function that completes the execution.  Discuss (1)


More Pattern Matching Algorithms: B-M in Development Cycles
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 3
2008-08-05
 
This is the second and final half of our two-part series on pattern matching, or string searching algorithms. In the first part, we covered the Knuth-Morris-Pratt (KMP) algorithm and in this segment, we’re going to present a new algorithm that originates from Boyer-Moore. It is currently considered the most efficient and practical algorithm, serving as a benchmark standard.


Providing Options in RELAX NG in XML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2008-08-04
 
XML schemas don't have to be rigid. Sometimes, it's best to provide flexibility and allow the author of XML documents to make choices. In this second part of a three-part article, we'll make some modifications to the schema we created in the first part, and learn how to make some things optional.  Discuss (1)

DEV ARTICLES RESOURCES


TECHNEWS TV
Click Audio or Video to get Podcast
DEVELOPER SHED SPONSORS
 

Brand New IBM Developer Knowledge Center
IBM Developer Knowledge Center on Developer ShedThe Developer Shed Network is proud to announce a brand new, IBM® developerWorks™ Developer Knowledge Center. Now, you can find new resources for FREE eKits, Tutorials, Webcasts, Trial Downloads and become part of a growing network of developers. Take advantage of this new and growing resource center today!

IBM DB2 Deep Compression ROI Tool
The IBM DB2 Deep Compression ROI tool is designed for DBA’s and IT management personnel to perform a clinical analysis of the cost savings gained from the Storage Optimization feature of DB2 9 for Linux, UNIX and Windows. The feature, also known as Deep Compression, compresses data that lies within a database by up to 80% at times.

IBM – Taking Web 2.0 to Work
You'll get answers to many questions and more from David Barnes, Lead Evangelist for IBM Emerging Internet Technologies. David will discuss aspects of Web 2.0 that bring value to corporations, academia, and government. He'll also discuss IBM's vision around Web 2.0, including the importance of remixability and consumability. The discussion will culminate with examples of various IBM Software Group solutions you can use to get ahead of the Web 2.0 adoption curve.

Read SunQuest Chronicles and Win Prizes
Book of DestinyRead and play along with our adventurer as he quests for the Ruby of Destiny in our choose-your-own-adventure style minibook- SunQuest Chronicles: Ruby of Destiny. As our brave hero faces different thrills and adventures, you control his actions and ultimately decide his fate.
Should he fool the witch or kill her? Can you make it to the end?
Or is failure your destiny...
So what are you waiting for? Come on in...if you dare.

NetBeans IDE 6.1
The Only IDE You Need
The NetBeans(TM) IDE is a free, open-source Integrated Development Environment for software developers. You get all the tools you need to create professional desktop, enterprise, web, and mobile applications with the Java language, C/C++, and Ruby. NetBeans IDE is easy to install and use straight out of the box and runs on many platforms, including Windows, Linux, Mac OS X, and Solaris.


 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 6 hosted by Hostway