How To Force A Windows Application To Be Run With Administrator Priviledges

Visual Studio
If you are developing a Windows application that launches other programs you will run into user access control issues. Here's a quick look at how to force your application to run with administrator rights.

Filed under:

Parallel For Loop Processing With C# and .NET

Parallel processing
A look at how to perform parallel for loop processing under multi core CPUs running in the Microsoft .NET platform.

Filed under:

Namespaces In Javascript

Javascript logo
You created a function called Draw that does some really cool stuff. You load a few Javascript libraries and quickly find out that one of them uses the name Draw too, generating a symbolic name conflict. What do you do?

Filed under:

Javascript Object Literal Notation

Javascript
A quick five minute walk through of examples using object literal notation in Javascript.

Filed under:

2013: The Year I Finally Do Javascript

jQuery
Ive decided 2013 is the year I do Javascript - and its about time.

Filed under:

How To Wait In Javascript

Javascript logo
Javascript's setTimeout() is a way to schedule a function to execute sometime in the future. It is not meant as an accurate way to delay execution as we will see in this article.

Filed under:

Prevent Clickjacking Of Your Websites

Webmaster logo
Many of the most popular websites in the world use techniques to prevent clickjacking attacks. Here's what you can do too to plug up this often overlooked security hole.

Filed under:

Don't Clone To Add New Rows For A DataGridView

MS Dot net
When adding new rows into a DataGridView control, avoid cloning to prevent out of range errors.

Filed under:

Detecting Document and DOM Load

Javascript logo
In web automation, one needs to know when the document and/or DOM has been fully loaded. Here's how to do this in Javascript and jQuery.

Filed under:

Programming Drag and Drop in C#

C#
A C# demo on how to drag and drop from a TreeView control to a DataGridView.

Filed under: