Thursday, March 28, 2019
Useful Windows Command Prompt Commands
›
1. Command History: You can track down your command history. c:\> doskey /history 2. Run multiple commands:You just need to put “&...
Wednesday, March 20, 2019
Upload Attachment to SharePoint Site List Item
›
Application Form Window CODE ---------------------- using System; using System.Windows.Forms; using System.IO; using System...
Replace "Tab Character" in Excel Active Sheet
›
TAB - horizontal tab Decimal Value is 9 Private Sub Workbook_SheetActivate(ByVal Sh As Object) Dim lRow As Long Dim lCol As Long ...
Thursday, March 14, 2019
Rest API to check field value contains...
›
[ site url ]/_api/Web/Lists/GetByTitle('myList')/items/ ? $filter = substringof ( 'ABC' , Title )
Filter Unique Value in Array
›
var items = ['abc','pqr','abc','xyz','pqr','abc']; var result = items.filter(UniqueElemen...
Saturday, March 9, 2019
Simple way to Check if JSON is correct or not..
›
function IsJsonString(str) { try { JSON.parse(str); } catch (e) { return false; } return true; }
Remove control characters from a string
›
function removeCC(s) { /* Remove NewLine, Carriage Return and Tab characters from a String */ r = ""; for (i=0; i <...
‹
›
Home
View web version