Monday, April 19, 2004

Dynamic Code Generation and Execution

Sample code that shows how to dynamically create an assembly in memory, using code from a text box, and execute a method on it

See this content on www.pocketnerd.net -->

Wednesday, April 07, 2004

Windows Service Remoting

This article is similar to the Remoting Publisher-Subscriber article below however if focuses on hosting remote objects in a Windows Service. This is quite an in depth look at Remoting from solution structure to remote delegates.

See this content on www.pocketnerd.net -->

Sunday, March 28, 2004

Saving User Settings Between Sessions

Sample code that shows how to save user settings, preferences and choices between application sessions

See this content on www.pocketnerd.net -->

Sunday, March 21, 2004

Windows Service Interaction

Sample code that shows how to interact with a Windows Service; Stop, Start and Pause a Service

See this content on www.pocketnerd.net -->

Tuesday, March 16, 2004

Defult TextBox Context Menu

Sample code that shows how to implement the default functionality of the TextBox ContextMenu

See this content on www.pocketnerd.net -->

Saturday, March 13, 2004

Embedding Resources into an Assembly

Sample code that shows how to embed resources such as XML Files and Images into a Resource file

See this content on www.pocketnerd.net -->

Tuesday, March 09, 2004

Desktop Images and XML

Sample code that shows how to capture a desktop Image and store images in a XML file

See this content on www.pocketnerd.net -->

Active Directory Authentication

Sample code that shows how to authenticate against Active Directory

See this content on www.pocketnerd.net -->

Monday, March 08, 2004

NotifyIcon Balloon ToolTips

Sample code that shows how to display a Balloon ToolTip from a NotifyIcon

See this content on www.pocketnerd.net -->

Wednesday, February 25, 2004

TextBox Balloon ToolTips

Sample code that shows how to display a Balloon ToolTip from a TextBox

See this content on www.pocketnerd.net -->

Sunday, February 01, 2004

Windows Forms Max and Min Behaviour

Sample code that shows how to detect and override the default Windows Forms Maximize and Minimize behaviour before it occurs

See this content on www.pocketnerd.net -->

Triple DES File Cryptography

Sample code that shows how to encrypt and decrypt a File on disk using the Triple DES cyptography provider

See this content on www.pocketnerd.net -->

Triple DES String Cryptography

Sample code that shows how to encrypt and decrypt a string using the Triple DES cyptography provider

See this content on www.pocketnerd.net -->

Friday, October 10, 2003

PocketProd Tools

This article describes the tools that are provided by PocketProd, what tools are available and how to use them.

See this content on www.pocketnerd.net -->

Sunday, September 14, 2003

PocketNerd Productivity Tool

The PocketNerd Productivity Tool is an add-in for Visual Studio.NET that enables developers to quickly and easily customize the IDE to include their code and applications.

The tool is aimed at increasing developer productivity by allowing developers to work how they want to.

See this content on www.pocketnerd.net -->

Monday, August 25, 2003

Remoting Publisher-Subscriber (Observer) Pattern

The Publisher-Subscriber or Observer pattern is a notification pattern that enables all subscribers to receive notifications from a single publisher when - for example - the publisher’s data is changed.

This implementation uses Remoting to distribute asynchronous notifications between subscribers in different applications on different machines.

See this content on www.pocketnerd.net -->