mikeon

Stories kicked by mikeon

7 of Hardest Things I Learned About Writing Software(simpable.com)

submitted by rimsystemsrimsystems(6119) 4 years, 6 months ago

Learning to write code is not that hard. With a book, Google, and a little free time just about anyone can hack something together. However, to become a good software developer you need a passion to constantly and continually learn. read more...

3 comments |category: |Views: 8

tags: another

.NET Framework 3.5 Is Shared Source(weblogs.asp.net)

submitted by benrickbenrick(1020) 4 years, 7 months ago

Microsoft's .NET Framework 3.5 is going to be released open source. read more...

26 comments |category: |Views: 152

tags: another

Utilities.NET 1.0 released(james.newtonking.com)

submitted by JamesNKJamesNK(3020) 4 years, 7 months ago

Utilities.NET is a collection of helper classes and components for quickly solving common .NET programming tasks. read more...

1 comment |category: |Views: 11

tags: another

BlogEngine.NET needs translators(dotnetblogengine.net)

submitted by madskristensenmadskristensen(8565) 4 years, 8 months ago

We are just about to ship the next release, but we need help translating a resource file (.resx). If you can, please help out. You will be credited with name and URL on the official BlogEngine.NET website. read more...

add a comment |category: |Views: 4

tags: another

Open Type Macro In Visual Studio(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 8 months ago

Second article on working with macros in Visual Studio. This time I present to you, a very useful macro: OpenType. It allows you to open a file that contains a type with a given name. Code included as always :-) read more...

add a comment |category: |Views: 15

tags: another

Open File Macro In Visual Studio(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 8 months ago

Do you know how to use Visual Studio macros? Today I describe how to write and use a Visual Studio macro for opening files found in the solution. read more...

add a comment |category: |Views: 80

tags: another

Quickly Find/Open a File in Visual Studio(alteridem.net)

submitted by rprouserprouse(1175) 4 years, 8 months ago

A quick way to find and open files in a large solution in Visual Studio that very few people know about. Other people have created addins to do this without even realizing the functionality was already there. read more...

3 comments |category: |Views: 81

tags: another

Using SingleTagSectionHandler Instead Of appSettings(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 8 months ago

As an alternative to appSettings you can use SingleTagSectionHandler to store settings in a web.config file. Learn how. read more...

4 comments |category: |Views: 439

tags: another

Easily Test Custom Controls Inside of Visual Studio(jeremyjarrell.com)

submitted by jeremyjarrelljeremyjarrell(2685) 4 years, 8 months ago

Here's a quick way easily test and debug your custom WinForms controls right inside of Visual Studio without having to launch your entire application. read more...

add a comment |category: |Views: 7

tags: another

Use DebuggerDisplay attribute for Easier Debugging(dotnettipoftheday.org)

submitted by manovichmanovich(755) 4 years, 8 months ago

Did you know that you can appply DebuggerDisplay attribute to a class or member to determine how it is displayed in the watch window. It's quick, it's easy, and it really works! read more...

add a comment |category: |Views: 65

tags: another

CodeFileBaseClass Attribute And Generic Types(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 10 months ago

Ever wanted to declaratively set properties of you Page class in a Page directive like you do with Title? It can be done with a use of CodeFileBaseClass. But what about generics? How to handle them? Read on. read more...

add a comment |category: |Views: 100

tags: another

RegularExpressionValidator - Do Not Repeat Yourself(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 10 months ago

Best Practice for working with RegularExpressionValidator controls. read more...

add a comment |category: |Views: 8

tags: another

Getting MS SQL Server Database Dump (vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 10 months ago

How to get a dump of SQL Server 2000/2005 database. The Database Publishing Wizard. read more...

add a comment |category: |Views: 21

tags: another

Event Handler Code Snippet(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 10 months ago

A code snippet for creating Event Handlers in C#. read more...

add a comment |category: |Views: 26

tags: another

DebuggerTypeProxyAttribute - Attribute That Helps(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 10 months ago

Description of an attribute that allows you to create "views" of your types that are then used by Visual Studio debugger. A useful find! read more...

add a comment |category: |Views: 7

tags: another

Working With Web.config And App_Code(vaultofthoughts.net)

submitted by mikeonmikeon(5200) 4 years, 11 months ago

Few things to know when working with Web.config and App_Code directory. What is the assembly name for App_Code classes, how to use controls defined there etc. read more...

add a comment |category: |Views: 523

tags: another