Display Current Date and Time Demo in Android

Submitted by hob2006 on
This is a simple program that display the current time in running mode, the code returns the time in a 12-hour format (08:24:05). The current date is in a nice format (October 01,2012).This is possible using concatenation of strings. This simple little program is easy to create and can add variety and value to your Android programs.

Send Mail with SMTP Server

Submitted by [email protected] on
Sample code on how to send mail using SMTP Server. Public Function mailcall(ByVal mail_id) Try SmtpServer.Credentials = New _ Net.NetworkCredential("[email protected]", "*****") SmtpServer.EnableSsl = True SmtpServer.Port = 587 SmtpServer.Host = "smtp.gmail.com" mail = New MailMessage() mail.From = New MailAddress("[email protected]") mail.To.Bcc.add(mail_id) mail.Subject = "Test Mail" mail

Age Calculator System

Submitted by kr kumawat on

This is a simple age calculator system. Enter your Date Of Birth and then enter Current Date. RESULT IN CALCULATOR: YOUR AGE YY MM DD Ok Enjoy ......... The system show the Negative month to less the months into 12 and 1year less into Calculate year Example:- Your DOB is : 5 7 1990 Current Date : 28 2 2012 ___________________________________________ RESULT -----------------------------------------

Windows Azure SQL Updates with New Features

Submitted by navajocodetalker on
A service updates have been released and added to the Windows Azure SQL database according to the latest announcement by Microsoft. The company behind Windows Azure, Microsoft has deployed service updates to Windows Azure SQL Database that add new features. The updates now has support for linked server and distributed queries against the database. With the latest Windows Azure SQL Updates you can

Storage Classes in C

Submitted by amrendra oraon on
Any variable in C programming is specified by it's data-type and storage-class specifier. The general syntax is as follows :- //storage-class data-type variable-name; // Example: extern int myInteger; There are four storage classes in C: 1) Automatic 2) External 3) Static, and 4) Register. 1.1) Automatic Variables :- These are the variables defined with in a function. Alternatively any thing