User Profile

Collapse

Profile Sidebar

Collapse
shyamenk
shyamenk
Last Activity: Mar 16 '13, 11:00 AM
Joined: Oct 8 '11
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • shyamenk
    replied to Add user input into UITableView in Xcode
    Code:
    - (NSString *)relativeDateString
    {
        const int SECOND = 1;
        const int MINUTE = 60 * SECOND;
        const int HOUR = 60 * MINUTE;
        const int DAY = 24 * HOUR;
        const int MONTH = 30 * DAY;
    
        NSDate *now = [NSDate date];
        NSTimeInterval delta = [self timeIntervalSinceDate:now] * -1.0;
    
        NSCalendar *calendar = [NSCalendar currentCalendar];
        NSUInteger
    ...
    See more | Go to post

    Leave a comment:


  • shyamenk
    started a topic Data Grid
    in .NET

    Data Grid

    Code:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Data.SqlClient;
    using System.Configuration;
    using System.Data;
    
    namespace Final
    {
        public partial class Default : System.Web.UI.Page
        {
            SqlConnection conn = new SqlConnection(ConfigurationManager.ConnectionStrings["App"].ConnectionString);
    ...
    See more | Go to post
    Last edited by PsychoCoder; Mar 8 '12, 06:51 PM. Reason: Code tags added
No activity results to display
Show More
Working...