Apr 13

Sorry folks. I didn’t realize that i signed up with NDA. So, i can’t publish them legally. I will keep them added to my tutorials and i will publish them later. My old tutorials about Hello world iPhone and iPhone Button click are not available anymore.


Apr 02

Finally, I got the application working with interactions. I credit http://zone12.co.uk/iCode/tut1.html for this information.

Step 1: Create a new Cocoa Touch Application.

Step 2: Pick the directory and name for your application.

Step 3: As per the current template, it doesn’t generate Interface Builder file for you. Create a new one after opening the Interface builder in parallel as shown below: (Choose Cocoa Touch - View)

Continue reading »


Mar 21

I’ve been doing .NET development for about 10+ years. I recently started looking at Mac OS X development efforts. I had a hard time starting with that because of all of my Windows way of doing it. Finally, i got a hand on it. This is my version of Hello World application for Mac OS X 10.5 using XCode 3.1 (for iPhone Development). The IDE looks powerful. But as a first timer, i did struggle a little to get around.

Step 1: Launch XCode 3 and click File - New Project from the menu

 

 

Continue reading »


Feb 08

I found a tool where i can draw asp.net charts with this free control.

URL: http://www.carlosag.net/

Sample Code:

PieChart chart = new PieChart();
    chart.DataSource = GetDataSet().Tables[0].DefaultView;
    chart.DataXValueField = “Title”;
    chart.DataYValueField = “Price”;
    chart.DataLabels.Visible = true;
    chart.DataLabels.ForeColor = System.Drawing.Color.Blue;
    chart.Shadow.Visible = true;
    chart.DataBind();
    chart.Explosion = 10;
    ChartControl1.Charts.Add(chart);
    ChartControl1.RedrawChart();


Jan 23

Sometimes, you will be migrating your application from a typical ASP.NET into the microsoft supported ASP.NET AJAX Web Extension along with AJAX Control Toolkit. I often get the same issue where i forget to add the httpHandlers and httpModules. Please visit this blog for a quick solution for this issues. It worked for me.

‘Sys’ is undefined

Continue reading »


Jan 09

I started reading this book. It’s very interesting. I wanted to put my excerpts about the book with my opinion.

I started learning about Cirque du Soleil for the first time. By the same time, i understood the difference between Red Ocean and Blue Ocean for Businesses. In Red Ocean, companies enhance existing opportunities and make changes to them to compete in the market. But Blue Ocean companies pioneer in new market segments. I read some more about Cirque de Soleil and saw few performances. My first thought is to see them live very soon. Continue reading »