Monthly Archives: April 2018

Create SharePoint Add-in Visual Studio 2017

This post show you how to create a SharePoint Add-in for SharePoint Online or SharePoint 365. As some of you know, in order to create a SharePoint Online, there are many settings and setup need to be configured. Visual Studio … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet, Office 365 | Tagged , , , , | Leave a comment

window.location.href not working in Chrome

This short blog to show you an alternative way to work if the window.location.href is not working in Chrome for you. For some reasons window.location.href is not working in Chrome for me. In my Angular code I put $scope.Calling = … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged , | Leave a comment

Windows 10 start button search not working

This post is one of the ways to resolve Windows 10 start button search not working. After I fixed it then it works again like below. I am using solution 9 below but before that I do a complete Disk … Continue reading

Posted in .Net, Community, Computers and Internet, Operating System | Tagged , | Leave a comment

SSIS set property for more than one component at one time

This quick tip showing you how to set a property for few SSIS component at once. For example, I want to set the ValidateExternalMetadata to Flase for those XML Source on the first row. Select multiple components by pressing down … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged | Leave a comment

Call Angular js function from JavaScript

This post is to show how to call Angular code from JavaScript. Firstly, include the Angular js file in the html page. <s cript src=”~/Scripts/AngularCode.js”></script> I put a bottom on the page. <p>     <button onclick=”OnSuccessData(document.getElementById(‘EmpId’).value,  document.getElementById(‘PeriodId’).value)”>Incentive</button> </p> Create … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged , , , | Leave a comment

C# finding week of the year

This post shows a how to get the week of the year using C#. This task is not very tough but it will take you something to find the correct answer. The day variable below will capture the week of … Continue reading

Posted in .Net, Cloud, Community, Computers and Internet | Tagged , , | Leave a comment