­

மன அழுத்தம் இல்லாத வாழ்க்கை வாழ 8 பழக்கங்கள்!

0 Comments
Stolen from Here - http://www.dinakaran.com/News_Detail.asp?Nid=106645 சாதனையாளர்கள் மற்றவர்களை விட தங்களின் உணர்ச்சிகளை கட்டுப்படுத்தி தங்களின் மன நிலைகளை சரியான முறைகளில் தக்க வைத்து கொள்வது மட்டுமல்லாமல், தங்களின் உணர்வுகளை புரிந்துகொண்டு அதனை திறம்பட வெளிப்படுத்துகின்றனர். சாதனையாளர்களிடமிருந்து கவனிக்கப்பட்ட 8 பழக்கங்களை இங்கே பார்ப்போம். அந்த பழக்கங்களை நாமும் கற்றுக்கொண்டு மன அழுத்தம் இல்லாத வாழ்க்கையை வாழ்வோம்.1) ஃபோகஸ்; கவனத்தை சிதறவிடக்கூடாதுசாதனையாளர்கள் தங்களின் கவனத்தை சிதறவிடமாட்டர்கள். ஒரு நேரத்தில்...

Continue Reading

Add List fields(Columns) in Sharepoint programmatically using client object model

0 Comments
Referred URL - http://adicodes.com/adding-fields-to-list-with-powershell-in-sharepoint-2010-part2/   public static Boolean CreateSPListField(string SourceUrl, String listTitle)         {             try             {                 using (ClientContext clientContext = new ClientContext(SourceUrl))        ...

Continue Reading

Check List Exists in Sharepoint 2010 Site using Client Object Model

0 Comments
Referred URL  http://pholpar.wordpress.com/2011/01/27/how-to-check-if-a-specific-list-or-folder-exists-using-the-managed-client-object-model/ public List GetListByTitleCS(ClientContext clientContext, String listTitle){    List existingList;     Web web = clientContext.Web;    ListCollection lists = web.Lists;     IEnumerable<List> existingLists = clientContext.LoadQuery(            lists.Where(            list => list.Title == listTitle)            );    clientContext.ExecuteQuery();     existingList = existingLists.FirstOrDefault();     return existingList;} ...

Continue Reading

SharePoint Move/Copy all items of a document library to another from one SharePoint application to another

0 Comments
https://nasironline.wordpress.com/tag/move-document-library-items-using-client-object-model/ These two SharePoint Web applications are on different servers (cross server) so we need to use client object model, if there is a requirement to move items of one document library to another of two applications residing on same server then we can use Server Object Model....

Continue Reading

Asynchronous Processing

0 Comments
http://msdn.microsoft.com/en-us/library/office/ee857094(v=office.14).aspx using System; using System.Collections.Generic; using Microsoft.SharePoint.Client; class Program { static void Main(string[] args) { AsynchronousAccess asynchronousAccess = new AsynchronousAccess(); asynchronousAccess.Run(); Console.WriteLine("Before exiting Main"); Console.WriteLine(); Console.WriteLine("In a real application, the application can"); Console.WriteLine("continue to be responsive to the user."); Console.WriteLine(); Console.ReadKey(); } } class AsynchronousAccess { delegate void...

Continue Reading

Accessing Large Lists

0 Comments
http://msdn.microsoft.com/en-us/library/office/ee857094(v=office.14).aspx SharePoint development guidelines indicate that you should not attempt to retrieve more than 2000 items in a single query. If this is a possibility in your application, consider using the RowLimit element in your CAML queries to limit how much data that the client object model retrieves for your...

Continue Reading

6 Ways to Prove You're a Genuine Superstar at Work by Jeff

0 Comments
https://www.linkedin.com/today/post/article/20140819124414-20017018-6-ways-to-prove-you-re-a-genuine-superstar-at-work?trk=mta-lnk Remarkable employees (here's how to tell if you are remarkable) spend significant time helping other people succeed: their company, their employees, their customers and vendors and suppliers... But remarkable employees also spend a little time helping themselves succeed, both for "selfish" reasons and because their success creates success for others. Want...

Continue Reading

How Successful People Stay Calm by Travis

0 Comments
https://www.linkedin.com/today/post/article/20140805002649-50578967-how-successful-people-stay-calm?trk=mp-details-rr-rmpost The ability to manage your emotions and remain calm under pressure has a direct link to your performance. TalentSmart has conducted research with more than a million people, and we’ve found that 90% of top performers are skilled at managing their emotions in times of stress in order to...

Continue Reading

9 Things Successful People Won't Do by Travis Bradberry, Ph.D.

0 Comments
https://www.linkedin.com/today/post/article/20140818190427-50578967-9-things-successful-people-won-t-do?trk=tod-home-art-list-small_1 My last post, How Successful People Stay Calm, really struck a nerve (it's already approaching 1.5 million reads here on LinkedIn). The trick is that managing your emotions is as much about what you won’t do as it is about what youwill do. TalentSmart has tested more than a million people and found...

Continue Reading

கற்ப மூலிகை சருமத்தைக் காக்கும் குப்பைமேனி..

0 Comments
https://www.facebook.com/Thamil.Siththars/posts/677094255717230:0 மூலிகைகள் என்றால் ஏதோ பெரிய மலைக்காடுகளில் காணப்படுவது என பலர் நினைக்கலாம். மலைக்காடுகளிலும் மூலிகைகள் வளர்கின்றன. அதேபோல் நம் வீட்டருகே, சாலை ஓரங்களிலும், வீதிகளிலும், தோட்டங்களிலும் வயல் வரப...்புகளிலும் ஏராளமன மூலிகைகள் வளர்கின்றன. நாம் களைகள் என்று ஒதுக்கும் புல், பூண்டு, செடி, கொடிகள் அனைத்தும் மாபெரும் மருத்துவத் தன்மை கொண்டவை. மூலிகைகள் ஒவ்வொன்றுக்கும் தனித் தன்மையான மருத்துவக் குணங்கள் உள்ளன. அவற்றில் கற்ப மூலிகைகள்...

Continue Reading