This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Converts a single full address string into a streetname, housenumber and -suffix. | |
/// </summary> | |
public class NormalizedAddress | |
{ | |
public string Streetname { get; private set; } | |
public string HouseNumber { get; private set; } | |
public string HouseNumberSuffix { get; private set; } | |
public NormalizedAddress(string address) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Additional extensions for the LinkLabel UserControl. | |
/// </summary> | |
public static class LinkLabelExtensions | |
{ | |
/// <summary> | |
/// Adds a NavigateUrl() function to the LinkLabel component. | |
/// </summary> | |
/// <param name="url"></param> | |
/// <remarks> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
private void Form1_Load(object sender, EventArgs e) | |
{ | |
linkLabel2.Click +=new EventHandler(delegate { | |
System.Diagnostics.Process.Start(@"http://hanssens.com"); | |
} | |
); | |
linkLabel2.Click += new EventHandler(linkLabel2_Click); | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* ********************************************************************************** | |
* | |
* Copyright (c) Microsoft Corporation. All rights reserved. | |
* | |
* This source code is subject to terms and conditions of the Microsoft Permissive | |
* License (MS-PL). A copy of the license can be found in the license.htm file | |
* included in this distribution. | |
* | |
* You must not remove this notice, or any other, from this software. | |
* |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Runtime.InteropServices; | |
using System.Diagnostics; | |
namespace ShowAndHideTaskbar | |
{ | |
/// <summary> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<XmlSiteMap> | |
<Menu id="home" controller="Home" action="index" title="Mijn Homepage" url="http://www.mydomain.org" /> | |
<Menu id="producten" controller="Products" action="overview" title="Mijn Producten" url="http://www.mydomain.org/internet/" /> | |
</XmlSiteMap> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Windows Registry Editor Version 5.00 | |
; Visual Studio 2012 - Stop Screaming! | |
; This will simply add a DWORD (32-bit) key with value "1" to the registry node, | |
; disabling THE SCREAMING MENU CAPS in Visual Studio 2012. | |
[HKEY_CURRENT_USER\Software\Microsoft\VisualStudio\11.0\General] | |
"SuppressUppercaseConversion"=dword:00000001 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<XmlSiteMap> | |
<Menu id="home" controller="Home" action="index" title="Mijn Homepage" url="http://mijnhomepage.nl" /> | |
<Menu id="producten" controller="Products" action="overview" title="Mijn Producten" url="http://mijnhomepage/producten/" /> | |
</XmlSiteMap> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace Hanssens.BeyondRandomizing | |
{ | |
/// <summary> | |
/// Utilities for randomizing. | |
/// </summary> | |
public class Randomizer : IDisposable | |
{ | |
protected Random randomizer { get; private set; } | |
public Randomizer() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public enum ExternalLanguages | |
{ | |
NL, BE, DE, RU, JP, FR, SP | |
} |