Rakesh Patel
Thursday, March 29, 2018

Only Numeric with Single Decimal - JavaScript

›
//Keypress event on a Class $('.onlyNumeric').on('keypress', function(e) { return isNumber(event, this);    }); //Fu...
Friday, March 23, 2018

Send Email with Powershell

›
Example1 # You must have Site Collection Access to use following process. function SendEmail($requestor)             {                ...

Delete List Item with Excel Data Using Powershell

›
function DeleteListItem(){     $inputfile = Get-FileName "c:\"     if($inputfile -ne "")     {         $objExcel=...

Update List Item with Excel Data Using Powershell

›
function UpdateListItem(){     $inputfile = Get-FileName "c:\"     if($inputfile -ne "")     {         $...

Create List Item with Excel Data Using Powershell

›
function AddListItem(){     $inputfile = Get-FileName "c:\"     if($inputfile -ne "")     {         $objExcel=New...
Monday, March 19, 2018

capitalize , lowercase, uppercase to HTML input Text

›
I have found number of JavaScript to convert text to upper while keypress. But the way we can use CSS is the best... capitalize , lowercas...
Saturday, February 24, 2018

Download URL Link using VBA

›
'Add module in VBA, Copy and Paste following code into it. Option Explicit Private Declare Function URLDownloadToFile Lib "url...
‹
›
Home
View web version
Powered by Blogger.