It is hard to find out simple way to create SharePoint web parts with visual designing. After looking at custom features, in this article I'm going to show you how to create custom SharePoint web part using Web User Control in Visual Studio.
Creating the Web Part
First Create New Project called...
Wednesday, September 30, 2009
Tuesday, September 29, 2009
Creating SharePoint Features
In this article I’m going to describe how to create SharePoint feature before look at custom web parts . Here I’m going to use Visual Studio 2008 and Visual Studio 2008 extensions for Windows SharePoint Services 3.0 to create my feature.
Creating the Feature
First create new SharePoint Empty project...
SharePoint List C# Part 2
In my previous post SharePoint List C# Part 1, I wrote how to retrieve data from SharePoint list. In this post also I'm going to show you how to retrieve data from SharePoint list which has look up fields. You can use this code in your custom webpart ot feature.
public void getData()
...
SharePoint List C# Part 1
Here I'm going to show you how you can use the SharePoint object model to read sharepoint list using C#.
To do this in your custom webpart or feature first you have to add the reference to Microsoft.Sharepoint.dll (Then in your code use "using Microsoft.Sharepoint;"). And also if you are going to...
Create Android Database

This sample code illustrates how we can use Android SQLite Database to store data in Android.
Following example will give output as Saranga/22 since I have created a text view and set the out put to it. If you want to add your own fields, first drop the existing table using given source code.
import...
VanCafe, My Android Project

Using Andriod we have built a solution for delivery van based Cafeteria. The overall process that targeted here is as follows. There is a main center cafe and there are delivery vans which would be assigned to different places. They sell goods to customers and the customers can order things via the...