Articles submitted by members via their Technical Blog feed. Want to have the blog entries from
your Technical Blog automatically posted as articles on CodeProject? It's
easy!
1.
All About SSIS Variables Part 1
Variables have been available in SSIS since first introduced in 2005. So what exactly are they for and what can you do with variables? Glad you asked!! Variables can be used for a number of different purposes: 1. Define the path of a package 2. Hold system information, such as error information 3. P
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
derekman9707
|
Updated: 23 Sep 2014
Rating:
(No votes for this Article)
|
|
2.
Be Sure With Azure .NET – Azure Table Storage (Part 1)
This is the second article in an on going series on Microsoft Azure features and services. If your just joining us, you might want to take a look at the previous Microsoft Azure Blob Storage article that covers how to get started with an Azure Storage account, development tools, using the Azure Sto
(The Code Project Open License (CPOL))
Third Party Products »
Reviews on Third Party Products and Tools »
General
|
Max R McCarty
|
Updated: 23 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
3.
Application Security: Agreement
Building An Application Security Program: Business Agreement Starting An Application Security Program Getting Business to agree to start an application security program is one of the hardest obstacles you will face In light of the ever ending stream of large…Read more ›The post Applicati
(The Code Project Open License (CPOL))
Third Party Products »
Reviews on Third Party Products and Tools »
General
|
CdnSecurityEngineer
|
Updated: 23 Sep 2014
Rating: 5.00/5
(2 votes)
|
|
4.
Front-end development with Visual Studio
The emergence of single page applications introduces a new need for web developers: a front end build process. Javascript MV* frameworks now allow web developers to build complex and sophisticated applications with many files (js, css, sass/less, html …). We’re very far from those 3 lines of JavaScr
(The Code Project Open License (CPOL))
General Programming »
Game Development »
General
|
Cybermaxs
|
Updated: 23 Sep 2014
Rating:
(No votes for this Article)
|
|
5.
Custom YES/NO dialog with DialogResult in WPF
A simple example of how to make a custom YES/NO dialog with DialogResult in WPF. Freely (as in beer) available code is on Github: https://github.com/Hitman666/CustomYesNoDialogWPF. The breakdown is that you make a new window (MsgBoxYesNo) and assign DialogResult on the button clicks. You call this w
(The Code Project Open License (CPOL))
Web Development »
Custom Controls »
General
|
Nikola Breznjak
|
Updated: 23 Sep 2014
Rating: 4.00/5
(1 vote)
|
|
6.
Design and document your RESTful API using RAML
Creating documentation is one of the more tedious aspects of the software development process. Not that writing algorithms and object-oriented class hierarchies isn't tedious, but it often seems (at least to me) that writing plain text explaining your code is more tedious than writing the code itsel
(The Code Project Open License (CPOL))
Desktop Development »
Document / View »
Doc/View Internals
|
Bryan O'Connell
|
Updated: 23 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
7.
Windows Azure Storage Emulator failed to install
CodeProjectWindows Azure Storage Emulator failed to installWhen attempting to install a new version of the Azure Storage Emulator either as a separate installation package or automatically as part of an Azure SDK update, you may run into an error message which states the storage emulator has failed
(The Code Project Open License (CPOL))
Platforms, Frameworks & Libraries »
Windows Security »
User Account Control
|
Carl Randall
|
Updated: 23 Sep 2014
Rating:
(No votes for this Article)
|
|
8.
Some of the many quirks of Oracle
Oracle is a huge database system. One that I have used many times over my career. It has its good points. It has also been likened to a beast on more than one occasion by the various multitudes.These quirks are in no certain or consistent order (just like the results from a SELECT statement in Oracl
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Adam Zuckerman
|
Updated: 22 Sep 2014
Rating:
(No votes for this Article)
|
|
9.
Building a Technology Career
I recently read through what Eric Bloom had to say about building an IT career. Eric Bloom is the president for Manager Mechantronics and he’s got some insightful advice. I think he’s also got some advise that steers a lot…Read more ›The post Building a Technology Career appe
(The Code Project Open License (CPOL))
Third Party Products »
Reviews on Third Party Products and Tools »
General
|
CdnSecurityEngineer
|
Updated: 22 Sep 2014
Rating: 4.00/5
(2 votes)
|
|
10.
Enabling Diagnostics in Azure Cloud Services and Virtual Machines : Part – 1
CodeProjectAzure diagnostics enables us to capture diagnostics data from a worker role, web role, or virtual machine running in Azure. The captured data is stored in azure storage and can be used for debugging and performance monitoring. We can configure Azure … Continue reading →The pos
(The Code Project Open License (CPOL))
Web Development »
Web Services »
ATL Web Services
|
Bibhu Dutta
|
Updated: 22 Sep 2014
Rating:
(No votes for this Article)
|
|
11.
Processing SQL Server FILESTREAM Data, Part 2 - The Setup
Utilizing SQL Server FILESTREAM capabilities from .Net.
(The Code Project Open License (CPOL))
Database »
Database »
General
|
Bob McGowan
|
Updated: 22 Sep 2014
Rating: 5.00/5
(1 vote)
|
|
12.
Installing a NuGet package programmatically
codeproject I've been struggling for some time to make NuGet work for my online .Net IDE project, Chpokk. The good news is that there turned out to be a command line tool, NuGet.exe, which can be used on a build server, so I though I'd just use its functionality. The bad news is that it turned o
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
Artem Smirnov
|
Updated: 22 Sep 2014
Rating: 4.33/5
(3 votes)
|
|
13.
Data Mapper Pattern
Prerequisites : ORM’s , Active Record Pattern This again is a kind of persistence pattern. But it differs from Active Record pattern. Generally when there is a very simple domain logic one tends to go with Active Record pattern. But as the system starts getting complex with the need to cater
(The Code Project Open License (CPOL))
Desktop Development »
Grid & Data Controls »
General
|
adityaswami89
|
Updated: 22 Sep 2014
Rating: 4.50/5
(2 votes)
|
|
14.
Active Record pattern
Prerequisites : ORM’s This is a kind of Persistence Patterns . Now why do we need these kind of patterns ? When building a complex application , you tend to divide the application into UI , Middle tier and the Database . When building applications like WPF, their is a general suggestion tha
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
adityaswami89
|
Updated: 22 Sep 2014
Rating:
(No votes for this Article)
|
|
15.
Object/Relational Mapping (ORM’s)
Before answering what is ORM ? we will try to find why ORM was needed ?? The problem : Object Relational Impedance Mismatch What is Object relational Impedance Mismatch ? The object-relational impedance mismatch is a set of conceptual and technical difficulties that are often encountered when a rela
(The Code Project Open License (CPOL))
General Reading »
Uncategorised Technical Blogs »
General
|
adityaswami89
|
Updated: 22 Sep 2014
Rating:
(No votes for this Article)
|
|
16.
Repository Pattern
Prerequisites : Data Mapper Pattern If you look at the above patterns , you will always need to do the below tasks : 1.Find the connection string from some sort of configuration 2.Open a new connection to the database 3.Create a command object or a recordset object 4.Execute the SQL statement or sto
(The Code Project Open License (CPOL))
Development Lifecycle »
Design and Architecture »
Application Design
|
adityaswami89
|
Updated: 22 Sep 2014
Rating: 5.00/5
(2 votes)
|
|
17.
Domain Events and non-transactional behavior
This article provides some insight into implementation of Domain Event handlers that contain non-transactional behavior.
(The Code Project Open License (CPOL))
Development Lifecycle »
Design and Architecture »
Patterns and Practices
|
Gediminas Geigalas
|
Updated: 22 Sep 2014
Rating:
(No votes for this Article)
|
|
18.
Creating a UI Designer for Quick Development
User interface developers often come across situations that involve creating several web interface dashboards with similar architectures but with different UI controls and backend services serving real-time data. Examples of such Dashboards could be real-time stock quotes, or real-time performance o
(The Code Project Open License (CPOL))
General Programming »
Game Development »
General
|
Keyhole Software
|
Updated: 22 Sep 2014
Rating:
(No votes for this Article)
|
|
19.
[OoB] Sonar with Arduino, C#, JavaScript and HTML5
This post marks the beginning of "Out of Boredom" series. It will be about creating stuff with my recently purchased Arduino Uno. Let's have a break from chores of professional programming and create something just for fun :)My first Arduino based project is Sonar. It utilizes ultrasonic range senso
(The Code Project Open License (CPOL))
Internet of Things »
Arduino »
General
|
morzel
|
Updated: 22 Sep 2014
Rating: 4.89/5
(6 votes)
|
|
20.
Cool CSS 4 Feature: pointer-events
CSS 4? Really? CSS 3 isn't fully released yet! What on earth is going on here?It all started when I was fooling around with GIMP, the extremely powerful free graphics editor. I took a public domain image, re-sized it, gave it a transparent background and then added a perspective shadow. It is be
(The Code Project Open License (CPOL))
Web Development »
HTML / CSS »
CSS
|
Steve Wellens
|
Updated: 21 Sep 2014
Rating:
(No votes for this Article)
|