Use our Google Custom Search for best site search results.
Browse by Tags
-
Provided below are code samples written in C# to format an input as per SharePoint DateTime field. /* -- Format for Date Only Field -- */ private static String ToSPDate(String strDt) { if (strDt == String.Empty) return strDt; else return (Convert.ToDateTime(strDt)).ToString("yyyy-MM-dd"); ...
-
Hi all, i'am having a little issue and a i didn't find an answer to this during my investigation. I have web-browser form with a repeating table with attachment fields... what i want to do is if a row has their request answered (based on a field controled in the row) i want to make the attachment...
-
Thank you for the quick response Jimmy. I added TOTAL_LENGTH_1MM .CreateAttribute("xsi", "nil", NamespaceManager.LookupNamespace("xsi"), "true"); to my code, but now I am getting this message System.InvalidOperationException was unhandled by user code Message="Schema...
-
Hello everyone, I have been trying for days now, to figure out but nothing id working :( i am writing some code on changed event to check the content of one of my fields in infopath, if the field contains anything (int in this case), then I display a message that the field must be blank and then I want...
-
In SharePoint, View is a virtual representation of a set of data from a specific list. We can programmatically create and update views for a list. Provided below is an example in C#.Net which explains the approach of creating and updating views. The code is divided in to 2 parts i.e. Part I - describes...