Add a folder named "screen-density-xhigh" to the resource folder and store image to this folder that you want to set as application background. Now declare result type onDraw() function into the application header.Now implement the code bellow to the .cpp file of this form. result TizenForm::OnDraw()
{
result r...
Tuesday, December 24, 2013
Monday, November 04, 2013
undefined
201
Implement full row selection in C# asp.net GridView without select button:
This feature will be used to Select Full row of grid view instead of select button when user press on any point of this row.
protected void GridView1_RowCreated(object sender, System.Web.UI.WebControls.GridViewRowEventArgs e)
{
if...
Monday, April 29, 2013
It's a common problem for Linux users who use it at first time. I have also faced this problem but actually it's so easy. Just follow this steps that's are given bellow:
Process 1 #
Step 1 : sudo apt-get install libnspr4-0d libnss3-1d libxss1 libcurl3
Step 2 : Download chrome from here
Step 3: sudo dpkg -i './Downloads/google-chrome-stable_current_amd64.deb'
Process...