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  
Actuate Whitepapers 
Moblin 
IBM® developerWorks 
Sun Developer Network 
Weekly Newsletter
 
Developer Updates  
Free Website Content 
IBM developerWorks
 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

Database Form Functions with HTML in HTML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-07-23
 
In this third part to a 13-part series on building database forms with HTML, we take an in-depth look at the various form controls: how they work, how to code them, and why they work the way they do. We'll cover text input, editing, and more. You'll also learn about the navigation controls.


Multiplying Large Numbers with Karatsuba`s Algorithm in C++
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-07-22
 
Numbers are magic; magic by their properties, their existence, and most importantly, their huge impact on our day-to-day modern life. Everything can be reduced and narrowed down to numbers. In this second part of our series on large numbers, we'll delve more deeply into this magic.


Using the HTML Table Element as a Recordset in HTML
     
Rating: 4 stars4 stars4 stars4 stars4 stars / 3
2008-07-21
 
When you query a database, the result you receive is a recordset. The form in which your result can be presented is affected by the capabilities of the language you use. This can present a challenge for certain languages. This article presents one way to meet that challenge if you program for the web.


Detect Browser Compatibility with the Request Object in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-07-17
 
If you use AJAX to improve your visitors' experience when they browse your web site, you may want to try out the hack described in this article. It helps with browser compatibility considerations. This article is excerpted from chapter one of the book Ajax Hacks, written by Bruce W. Perry (O'Reilly; ISBN: 0596101694). 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)


Building Single Row Database Forms with HTML in HTML
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 3
2008-07-16
 
Welcome to the second chapter of a thirteen part series about creating database forms with HTML. In this article, we will continue our discussion on single-row forms and explain how to send changes to the server database. We will also go over the recordset and the common functions used to manipulate the corresponding form.  Discuss (1)


Large Numbers in C++
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2008-07-15
 
People in general seem to dislike the concept of number arithmetic, especially if it’s all about large numbers – and here we literally mean huge ones. However, the twenty-first century is the era of computers. Our everyday lives are covered by tons of data encapsulated in computers. In this series we’re going to discuss and code operations of which Euler wouldn’t dare to dream.


Using the EXT JS Date Picker Widget in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2008-07-14
 
In a recent article I looked at the EXT JS JavaScript library and gave a brief overview of what it does and what it contains. In this article we’re going to look at implementing one of the many widgets that come with the library – the date picker widget.  Discuss (1)


Ajax Hack for Entering Information Without Refreshing Your Browser in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 2
2008-07-10
 
Ajax improves the web experience by letting users interact with web sites more quickly and intuitively. With Ajax properly set up on a web site, a user can enter a comment and see it appear on the site without waiting for their browser to refresh. This article will explain how to accomplish this bit of online magic. It is excerpted from chapter 12 of the book Ajax Hacks, written by Bruce W. Perry (O'Reilly; ISBN: 0596101694). 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)


Introduction to Database Forms with HTML in HTML
     
Rating: 4 stars4 stars4 stars4 stars4 stars / 3
2008-07-09
 
This article is written for those who have basic knowledge of database programming, HTML, CSS and JavaScript. It is the first article in a 13-part series that explains how to build database forms with HTML. There are a number of advantages to this approach, which I will enumerate in the article. Let's get started.  Discuss (1)


Dijkstra`s Shunting Algorithm with STL and C++ in C++
     
Rating: 4 stars4 stars4 stars4 stars4 stars / 3
2008-07-08
 
In 1993 Alex Stepanov wrote the STL library. The library redefined the way people code in C/C++. Using it gradually became synonymous with elegance and speed. Later, as STL fought its way into the standards, it became even more popular and the numbers of people who used it increased exponentially. In the first two parts of this article series I presented the basics of STL; in this third part I will show you more complex code. You’ll also learn how to write an expression evaluator/compiler.  Discuss (1)


EXT JS 2.1 Overview in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 7
2008-07-07
 
EXT JS is a feature-packed and cross-browser RIA framework built from JavaScript and CSS that seriously reduces the development time of Web 2.0 applications. It was originally built as an extension of the popular YUI library. In this article we take a close look at its features and what you can do with it.  Discuss (1)


Using the Style Object for Zebra Tables with CSS and JavaScript in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-07-02
 
Welcome to the final chapter of the series "Building Zebra Tables with CSS and JavaScript." In this article, I’ll teach you how to build zebra tables by using the popular “style” object, thus completing this educational four-part guide.  Discuss (3)


Brief Introduction to the STL Containers in C++
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-07-01
 
STL stands for Standard Template Library. It is probably one of the most important contributions to the standard library. It has brought the most crucial improvements to the C++ language and redefined the way we perceive the data structures and the way we are coding right now. If you just know the basics of C++, then this is definitely an article that will help you gather knowledge and progress.  Discuss (1)


Binary Searching in JavaScript
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-06-30
 
Binary Searching involves searching for an element in an array, where the items are arranged in ascending or descending order. That means the entries in the array are sorted. If you want to learn how to write a function that does this, keep reading.  Discuss (1)


Completing a Configuration for Chrome and a Server in Web Standards
     
Rating: 5 stars5 stars5 stars5 stars5 stars / 1
2008-06-26
 
In this fourth article in a four-part series on configuring Firefox for Chrome and a server, you will learn how to create a XUL file, how to make login changes, and more. This article is excerpted from chapter four of Programming Firefox, written by Kenneth C. Feldt (O'Reilly, 2007; ISBN: 0596102437). 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)

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!

Check out the new Jazz space on developerWorks
developerWorks Jazz spaceYou've heard the buzz about Jazz... want to know more about it from a developer's perspective? Check out the Jazz space on developerWorks. This space is an up-to-date resource for developers, including technical information about Jazz and products built on Jazz, like Rational Team Concert Express. The Jazz space includes content from a wide variety of sources, including links, feeds, and comments from experts.

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.

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.


 
Try It Free




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