Search the web
Sign In
New User? Sign Up
developers-Heaven · Developers Heaven
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1 - 30 of 33   Newest  |  < Newer  |  Older >  |  Oldest
Messages: Show Message Summaries   (Group by Topic) Sort by Date v  
#30 From: Developers Heaven <developers_hvn@...>
Date: Thu Jan 8, 2009 11:31 am
Subject: Add a YouTube Search Page to your ASP.NET Site
developers_hvn
Offline Offline
Send Email Send Email
 
YouTube is a popular video sharing website where users can upload, view and share video clips. YouTube was created in mid February 2005 by three former PayPal employees. The San Bruno-based service uses Adobe Flash technology to display a wide variety of video content, including movie clips, TV clips and music videos, as well as amateur content such as videoblogging and short original videos. In October 2006, Google Inc. announced that it had reached a deal to acquire the company for US$1.65 billion in Google stock. The deal closed on November 13, 2006.

Since YouTube has become so popular, it occured to me that I might want to add a YouTube Search Page to my "playground site", IttyUrl.net. It turned out that with the REST - based YouTube developer API, it was a "piece of cake".

Here is how you can add a very simple yet effective YouTube search page to your ASP.NET  web site:
Read more ...
 
--------------------------------------------------------------
Our other free services:
Free Web Directory 
Free programming source codes & tools
Free programming discussion forum
Free IP services
Free Holy Bile with commentaries & original languages


#29 From: Developers Heaven <developers_hvn@...>
Date: Wed Dec 10, 2008 12:31 pm
Subject: Using Regular Expressions with PHP
developers_hvn
Offline Offline
Send Email Send Email
 
Regular expressions are a powerful tool for examining and modifying text. Regular expressions themselves, with a general pattern notation almost like a mini programming language, allow you to describe and parse text. They enable you to search for patterns within a string, extracting matches flexibly and precisely. However, you should note that because regular expressions are more powerful, they are also slower than the more basic string functions. You should only use regular expressions if you have a particular need.

This tutorial gives a brief overview of basic regular expression syntax and then considers the functions that PHP provides for working with regular expressions.

  • The Basics
  • Matching Patterns
  • Replacing Patterns
  • Array Processing
 
Read more ...
 
--------------------------------------------------------------
Our other free services:
Free Web Directory 
Free programming source codes & tools
Free programming discussion forum
Free IP services
Free Holy Bile with commentaries & original languages


#28 From: Developers Heaven <developers_hvn@...>
Date: Mon Nov 24, 2008 6:55 am
Subject: for students of C and C++
developers_hvn
Offline Offline
Send Email Send Email
 
#27 From: Developers Heaven <developers_hvn@...>
Date: Sat Nov 15, 2008 2:01 pm
Subject: SQL to Select a random row from a database table
developers_hvn
Offline Offline
Send Email Send Email
 
There are lots of ways to select a random record or row from a database table. Here are some example SQL statements that don't require additional application logic, but each database server requires different SQL syntax.
read more:
 
Our other free services:
 
We need moderators for our forum, requests can be sent to: developers_hvn@...
 


#26 From: Developers Heaven <developers_hvn@...>
Date: Tue Nov 11, 2008 10:07 am
Subject: VBScript Backup Software Script - Desktop developing tools - Coders & Programmers
developers_hvn
Offline Offline
Send Email Send Email
 

This configurable VBScript data backup Windows utility script completely automates the process of backing up all of your critical files. its expansion capability is unlimited it performs daily, weekly, and monthly data backups so you can revert to versions of your critical files back through each of the last 7 days, each of the past 5 (some months have 5 weeks) weeks, and each of the last 12 months. This is the ideal scenario for all critical files for any mission critical system. When combined with the Windows Scheduled Tasks (or a third party tool - some highly rated ones are here - download.com) this backup software script will perform automatic backups of all of your critical files. by it's very nature (VBScript) it is the source code and is executed by the Microsoft Scripting Engine. You can get the MS Scripting Engine here if your version of Windows doesn't have it. You can backup several ways - depending on your current software - WinZip (you can get it here), WinZip Command Line (no dialogs that stop processing - for silent backups), XCopy (only updated files), and normal Copy. Notifications inform the user what was backed up, where it was backed up to, and how many bytes were backed up Script can run in silent mode by disabling user notifications Optional data backup to a separate or removable drive is supported

read more:

http://developers-heaven.net/display_tools.php?id=14

 

 

Our other free services:


#25 From: Developers Heaven <developers_hvn@...>
Date: Sun Oct 26, 2008 4:09 pm
Subject: The difference between “&& ” , “& ”,"||" and "|" operators
developers_hvn
Offline Offline
Send Email Send Email
 
What is the difference between “&& ” , “& ”,"||" and "|" operators?
there are two uses:
1- In the conditional statements
2- Bitwise Operations
read more:
 
Our other free services:

 


#24 From: Developers Heaven <developers_hvn@...>
Date: Mon Oct 20, 2008 1:41 pm
Subject: Determine Columns Names from an Excel file
developers_hvn
Offline Offline
Send Email Send Email
 
If you'd like to Determine Columns Names from an Excel file just use the following function,
I hope it could help.
Thanks
 
Our other free services:

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#23 From: Developers Heaven <developers_hvn@...>
Date: Sat Oct 18, 2008 2:05 pm
Subject: Fill a ListView with any Dataset, and perform sorting by a Column Header in Visual C# .NET
developers_hvn
Offline Offline
Send Email Send Email
 
Fill a ListView with any Dataset, and perform
sorting by a Column Header in Visual C# .NET
Overview
Data Loading using a DataSet

This article will show how to fill a ListView Control with the data loaded into a DataSet. You may use a DataSet bind it to a Grid Control to show the output of a query, but data binding of controls is not always the ideal method of accessing the data (You may encounter problems with the DataBinding). A DataSet maintains a copy of the entire resultset in the client systems memory in case you need to make changes to a row. Instead of using a bound grid and a DataSet, we can use the listview control with the view set to details mode and fill it with the data from a DataSet.

Sorting the ListView
When you are working with the ListView control, you may want to sort its contents based on a specific column. An example of this kind of functionality occurs in a Windows Explorer program when you view the contents of a folder on your hard disk. In Details view, Windows Explorer displays information about the files in that folder. For example, you see the file name, the file size, the file type, and the date that the file was modified. When you click one of the column headers, the list is sorted in ascending order based on that column. When you click the same column header again, the column is sorted in descending order. read more... 
 
 
 
Our other free services:

__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com

#22 From: Developers Heaven <developers_hvn@...>
Date: Tue Oct 14, 2008 8:52 am
Subject: Generate More traffic to your website
developers_hvn
Offline Offline
Send Email Send Email
 
Do you want to Generate more traffic to your website ?
 
Then you can add your website here:
 
 
For free.


#21 From: Developers Heaven <developers_hvn@...>
Date: Tue Oct 7, 2008 2:03 pm
Subject: Increase your website visitors for free !!!
developers_hvn
Offline Offline
Send Email Send Email
 
Do you want to increace your website visitors without pay a cent?
 
Then you can add your website here:
 
 
For free.


#20 From: Developers Heaven <developers_hvn@...>
Date: Thu Sep 11, 2008 9:04 am
Subject: Implementing Cross-Domain Cookies - PHP - Cookies
developers_hvn
Offline Offline
Send Email Send Email
 
Implementing Cross-Domain Cookies - PHP - Cookies

This is an article about cookies and more than one domain. If a cookie is set for one domain the other domain cannot use that cookie. This tutorial shows give a solution for cookie cross domain.

 
 
 


#19 From: Developers Heaven <developers_hvn@...>
Date: Thu Sep 4, 2008 8:30 am
Subject: html2pdf - PHP - Miscellaneous
developers_hvn
Offline Offline
Send Email Send Email
 
#18 From: Developers Heaven <developers_hvn@...>
Date: Fri Aug 29, 2008 9:40 pm
Subject: MCImageManager PHP - PHP - Image Manipulation
developers_hvn
Offline Offline
Send Email Send Email
 
MCImageManager PHP - PHP - Image Manipulation

The MCImageManager PHP is a combination of PHP, HTML and Javascript, possible to integrate with the MCFileManager. The purpose of the MCImageManager is to be able to preview images through thumbnails and conduct basic file operations on them.

 
 


#17 From: Developers Heaven <developers_hvn@...>
Date: Tue Aug 26, 2008 12:40 pm
Subject: Quiz Manager - PHP - Tests and Quizzes
developers_hvn
Offline Offline
Send Email Send Email
 
Quiz Manager - PHP - Tests and Quizzes

Quiz Manager is an PHP software for conducting a small quiz or contest. This programme enables you to create multiple quizzes and output score results. This automates your function of adding quizes into your site.

 

http://developers-heaven.net/display_source_code.php?id=119

 



#16 From: Developers Heaven <developers_hvn@...>
Date: Sun Aug 24, 2008 10:46 am
Subject: PHPLOT - PHP - Graphs and Charts
developers_hvn
Offline Offline
Send Email Send Email
 
PHPLOT - PHP - Graphs and Charts

PHPLOT is a multi useful type of graphs and charts creator application in PHP. This improved version has major code optimization, adds labels on bars, text alignment, title alignment, title alignment fixes etc.

 

http://developers-heaven.net/display_source_code.php?id=118

 

 
 


#15 From: Developers Heaven <developers_hvn@...>
Date: Fri Aug 22, 2008 10:33 pm
Subject: A Line graph generator - PHP - Graphs and Charts
developers_hvn
Offline Offline
Send Email Send Email
 
 

A Line graph generator is a PHP script that creates line graph. This script consists of a class called Line and similar in usage to the Bar chart script. The output can be changed in the form of jpg or png or gif format.

 


#14 From: Developers Heaven <developers_hvn@...>
Date: Thu Aug 21, 2008 7:48 am
Subject: TextArea Rich - Web developing tools - Script and Text Editors
developers_hvn
Offline Offline
Send Email Send Email
 
TextArea Rich - Script and Text Editors
 
TextArea rich is a free WYSIWYG web-based eitor which replaces the existing textarea HTML tag. Textarea Rich uses a similar interface to Micorosft Word and uses buttons to allow you to make text bold, italic, underlined. You can also switch between WYSIWYG view and the HTML source code to allow for even greater editing! The whole editor is written in Javascript and HTML, so there is no need to download any plugins, or ActiveX components. Version 3.0 now includes a configuration file so you can easily switch off buttons and any feature you like. TAR v3.0 now uses right click context menus, advanced colour picker which will store your "favourite" colours, and much more.


#13 From: Developers Heaven <developers_hvn@...>
Date: Thu Aug 14, 2008 7:50 am
Subject: Online Signature Maker - PHP Source Code - Image Manipulation
developers_hvn
Offline Offline
Send Email Send Email
 
#12 From: Developers Heaven <developers_hvn@...>
Date: Fri Aug 8, 2008 3:29 pm
Subject: Paging Records in JSP
developers_hvn
Offline Offline
Send Email Send Email
 
#11 From: Developers Heaven <developers_hvn@...>
Date: Wed Aug 6, 2008 7:37 am
Subject: Programming with NuSOAP Using WSDL
developers_hvn
Offline Offline
Send Email Send Email
 
Programming with NuSOAP Using WSDL
NuSOAP is a group of PHP classes that allow developers to create and consume SOAP web services. It does not require any special PHP extensions. The current release version (0.6.7) of NuSOAP at the time this was written (03-November-2004), supports much of the SOAP 1.1 specification. It can generate WSDL 1.1 and also consume it for use in serialization. Both rpc/encoded and document/literal services are supported. However, it must be noted that NuSOAP does not provide coverage of the SOAP 1.1 and WSDL 1.1 that is as complete as some other implementations, such as .NET and Apache Axis.... read more
 
 
 
 


#10 From: Developers Heaven <developers_hvn@...>
Date: Wed Jul 23, 2008 9:17 am
Subject: Event Calendar - PHP - Calendars
developers_hvn
Offline Offline
Send Email Send Email
 
Event Calendar - PHP - Calendars

Event Calendar is a PHP based simple calendar software. The main feature of this software is, you can add your important events in the calendar to view later and also you can delete it.

 

http://developers-heaven.net/

http://developers-heaven.net/forum 

http://get-ip-free.developers-heaven.net/

http://online-holy-bible-study.developers-heaven.net/



#9 From: Developers Heaven <developers_hvn@...>
Date: Thu Jul 17, 2008 11:49 pm
Subject: Creating and Consuming Web Services With PHP
developers_hvn
Offline Offline
Send Email Send Email
 
Creating and Consuming Web Services With PHP

by Jean-Luc David

Web services are widely supported by all the major technology vendors and organizations including IBM, Microsoft, Sun Microsystems and the W3C. Millions of dollars have been invested in the development of this technology. Web services allow you to share data across many platforms and hardware configurations. For example, you can create a Java web service and someone else can consume it using a .NET client without having to learn one line of Java code.

There are many available scripting languages that support web services. PHP is one such language, with a powerful arsenal of open source functions and tools. read more... 

 

http://developers-heaven.net/forum/index.php/topic,43.msg71/topicseen.html#msg71

 

Also you can see:

http://developers-heaven.net/

http://get-ip-free.developers-heaven.net/

http://online-holy-bible-study.developers-heaven.net/



#8 From: Developers Heaven <developers_hvn@...>
Date: Mon Jul 14, 2008 8:17 am
Subject: Php-Jobsite, drop down selection with an array, osTicket STS, TestManager
developers_hvn
Offline Offline
Send Email Send Email
 
Php-Jobsite - PHP - Component & Controls

Php Jobsite v1.32 is a PHP/MySQL-based highly customizable online job listing application for regional, international employment and recruitment sites. It features searchable job database, template based and multilanguage support.

Creating a drop down selection with an array - PHP - Site Navigation

Creating a drop down selection with an array is a tutorial that tells the users how to make and create a simple drop down menu with array function by using php in their programs.

osTicket STS - PHP - Component & Controls

osTicket STS is a simple program for open source support ticket system written in PHP and MySQL database as backend. It is a system which supports aliases with perl gateway etc., Admin features such as email alerts for pager, create categories, representa

PHPTestManager - PHP - Tests and Quizzes

PHPTestManager is a simple and easy to handle test program with MySQL database. You can create you own questions on different subjects to test the skills of your students.

 

Also you can see:

http://developers-heaven.net/forum

http://get-ip-free.developers-heaven.net/

http://online-holy-bible-study.developers-heaven.net/



#7 From: Developers Heaven <developers_hvn@...>
Date: Tue Jul 8, 2008 7:10 am
Subject: Making Domains Your Business
developers_hvn
Offline Offline
Send Email Send Email
 

Making Domains Your Business
By Peter T Davis

Even though there's not a NASDAQ or S&P 500 for domain investors, industry insiders all know how steeply the domain market rose in 2007.

More people have asked me about domains -- or told me that they've started their own portfolio of domains in 2007 -- than in all the years since I registered my first domain in 2000. I wouldn't suggest that domaining has gone mainstream yet, but the industry of domaining does seem to have sparked interest in a far wider demographic over the last twelve months than it had previously. Services such as Domain Capital have arisen due to the explosive growth of domains. Domain Capital is a financial service to help fund the purchase of domain names in much the same way as a mortgage funds the purchase of a new home. read more...

 

http://developers-heaven.net/forum/index.php/topic,40.msg65/topicseen.html#msg65

 

 

Also you can see:

http://developers-heaven.net/

http://get-ip-free.developers-heaven.net/

http://online-holy-bible-study.developers-heaven.net/


 



#6 From: Developers Heaven <developers_hvn@...>
Date: Sun Jul 6, 2008 5:57 am
Subject: Randomize Images,Create Custom Mailboxes and more...
developers_hvn
Offline Offline
Send Email Send Email
 
EasyPHP Install Guide - PHP - Component & Controls

This is a tutorial that helps users to install and configure Mysql, php and Apache on a windows based system. It may prove tideous to download and install all these components separately. So this is all in one package that makes installation and configura

Create Custom Mailboxes using cPanel - PHP - Email Systems

Create Custom Mailboxes using cPanel is an email utility software that assists webmaster in creating unique automated email signup forms on their website. A handy tool for all software developers in creating mail boxes.

Page generation time - PHP - Date and Time

This tutorial teaches about how to display the execution time in PHP scripts. The author made it with three functions and gives some PHP sample scripts for this purpose.

PHP Freaks: Randomize Images, Quotes and MySQL Results - PHP - Randomizing

This tutorial explains and gives some tip about how to randomize images, quotes and MySQL results on your website with some file function.

 

 

Also you can see:

http://developers-heaven.net/forum

http://get-ip-free.developers-heaven.net/

http://online-holy-bible-study.developers-heaven.net/



#5 From: Developers Heaven <developers_hvn@...>
Date: Thu Jul 3, 2008 6:09 pm
Subject: Retrieving Data as XML from SQL Server
developers_hvn
Offline Offline
Send Email Send Email
 

All the hype that once surrounded XML is finally starting to die down, and developers are really beginning to harness the power and flexibility of the language. XML is a data descriptive language that uses a set of user-defined tags to describe data in a hierarchically-structured format. read more

 

http://developers-heaven.net/forum/index.php/topic,37.msg58/topicseen.html#msg58

 

 

Also you can see:

http://developers-heaven.net/

http://get-ip-free.developers-heaven.net/

http://online-holy-bible-study.developers-heaven.net/



#4 From: "developers_hvn" <developers_hvn@...>
Date: Sat Jun 21, 2008 10:23 am
Subject: MySQL 5.0 New Features: Stored Procedures
developers_hvn
Offline Offline
Send Email Send Email
 

This 67 page guide is for long-time MySQL users who want to know "what's new" in version 5. The short answer is "stored procedures, triggers, views, information_schema". The long answer is the MySQL 5.0 New Features series, and this book is the first in the series. read more
 

http://developers-heaven.net/forum/index.php?topic=35.msg55#new

 

 

http://online-holy-bible-study.developers-heaven.net/

http://get-ip-free.developers-heaven.net/


#3 From: Developers Heaven <developers_hvn@...>
Date: Sat Jun 14, 2008 3:52 pm
Subject: Choice Between Stored Procedures, Functions, Views, Triggers, Inline SQL
developers_hvn
Offline Offline
Send Email Send Email
 

Business Logic: To Store or not to Store that is the Question?

A lot of people in the database and programming professions are vehemently in favor or opposed to the use of stored procedures and the like in databases. They will argue that all access to the database should go thru stored procedures because it is more secure and shields applications from changing logic. The other side will vehemently argue that you should avoid this because not all databases support this and the way each supports it is different so your code is less portable... read more

 

 

http://developers-heaven.net/forum/index.php/topic,36.msg55.html#msg55

 

 

http://developers-heaven.net

Free source code library.

The Heaven for developers.

 

http://online-holy-bible-study.developers-heaven.net/

 

http://get-ip-free.developers-heaven.net/



#2 From: Developers Heaven <developers_hvn@...>
Date: Thu Jun 12, 2008 4:46 pm
Subject: The GridView 'GridViewID' fired event PageIndexChanging which wasn't handled.
developers_hvn
Offline Offline
Send Email Send Email
 

If you set AllowPaging="true" or AllowSorting="true" on a GridView control without using a DataSourceControl DataSource (i.e. SqlDataSource, ObjectDataSource), you will run into the following errors: ... read more

 

http://developers-heaven.net/forum/index.php/topic,34.0.html

 

http://developers-heaven.net

Free source code library.

The Heaven for developers.



#1 From: "developers_hvn" <developers_hvn@...>
Date: Sat May 31, 2008 11:06 am
Subject: Become an Author
developers_hvn
Offline Offline
Send Email Send Email
 
Did you ever write programming code and want to share it with others?
You can do that for free in:
http://developers-heaven.net
You can become an author and share your code and have commented in the
discussion forum:
http://developers-heaven.net/forum

Have nice time.

Messages 1 - 30 of 33   Newest  |  < Newer  |  Older >  |  Oldest
Advanced
Add to My Yahoo!      XML What's This?

Copyright 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help