How to change css styles of elements using jQuery
Sometimes when you work with jQuery, you want to change css-style of elements. There are two common ways to do it: 1 – to change class of element, 2 – add css attribute Read more»
Sometimes when you work with jQuery, you want to change css-style of elements. There are two common ways to do it: 1 – to change class of element, 2 – add css attribute Read more»
I was asked to download a lot of files from document library. Of course, I could open document library in Explore mode, but there was a lot of files and it could take a long time. So I’ve found a good PowerShell script to save files from document library. Read more»
The reason of error “‘Namespace.className.source’ is inaccessible due to its protection level” is that by default class variables “source” and “substitute” are protected and you don’t have access to them anywhere out of the class. Read more»
It’s not very often but sometimes I have to update SharePoint user email in profile. Here’s a simple powershell code to do it. Read more»
When you created a new project (Java. Create new project in Eclipse), you want to know how to work with text files. Open SampleText.java and add after “package SampleText” two strings. Read more»
For real beginners in Java development 🙂 It’s quite easy to write Java code if you already know C#. I will write down some things for memories. Read more»
There’s a comfortable way to define variable in PHP. For example, Read more»
Below I write a powershell script to get the author and date of creation of SharePoint List. Today I have suddenly found out the new list. I was very surprised to see it and wanted to know who and when created it. Read more»
GridView is a powerful and easy in use tool in Asp.net, especially if you know how to use it. There are a lot of tutorials how to add dynamic hyperlink column to GridView not programmatically, but this tutorial is about how to add hyperlink to GridView programmatically (in code-behind). Read more»
On test environment I have executed an SQL Server Integration Services Package and I’va got the error: SSIS Error Code DTS_E_PRODUCTLEVELTOLOW. The component “Lookup My Cities” (64) cannot run on installed (64-bit) of Integration Services. It requires Standard Edition (64-bit) or higher. End Error As it turned out, service SQL Server Integration Services wasn’t installed […] Read more»