Lance's Whiteboard

Random scribbling about C#, ASP.NET, Sql Reporting, etc.

News

BlogMailr Enabled




Sponsored Ad
Sponsored Ad

Blogs I Read

Developer Sites

Googling, etc...

MSDN Resources

Tutorials & Reference

Browse by Tags

All Tags » .NET CF (RSS)
FW: Data structures in C#
Data structures in C# via Edgar Sánchez's .NET Blog Bit by bit, C# is finding its way in the academic environment, I just found out a C# version of Bruno Preiss "Data Structures and Algorithms with Object-Oriented Design Patterns". The book is available...
DateTime woes and "The Pit of Failure"...
Having had my own struggles with DateTime parsing, I completely concur with the comments from my peers as they replied to Brad Abrams and the BCL team on the past, present, and future of DateTime processing in the .NET Framework. The current situation...
String Formatting
I constantly see people write code like this for formatting numbers as strings, and wonder why: int testNumber = 12345; string myString = testNumber.ToString(); for ( int i=0; i< 8 - myString.Length; i++) { myString = "0" + myString; } Especially when...
Is that a Mozilla in your Pocket, or are you just happy to see me?
Just stumbled across “ Minimo “ a port of the Mozilla browser for the PocketPC on MobileSlash : Minimo v0.1 is the "first" public preview release of a small device browser. We have tested this release on Familiar 0.7.2 unstable running GPE...
Posted: Feb 26 2004, 04:57 PM by CodeSniper | with 1 comment(s)
Filed under:
"VS.NET 2003 Build Here" bug-fix...
I just posted an update to the utility to fix a bug that left the /bin folder empty after a build. Thanks for the quick feedback!
Posted: Jan 20 2004, 07:21 PM by CodeSniper | with no comments
Filed under: ,
"VisualStudio.NET 2003 Build Here" Explorer Extension
Have you ever wanted to build a project or solution without opening up Visual Studio.NET? There are plenty of command-line utilities (including “devenv.exe /build“) to do this, but I couldnt find anything that worked from within Windows Explorer. ...
Posted: Jan 20 2004, 05:59 PM by CodeSniper | with 6 comment(s)
Filed under: ,
.NET Compact Framework 1.0 SP2 (Re-release)
Microsoft has finally re-released SP2 for .NET CF! Both the Developer Redistributable and the End-User Redistributable are now available.
Posted: Dec 17 2003, 04:47 PM by CodeSniper | with no comments
Filed under:
Microsoft.ApplicationBlocks.UIProcess
I'm a newbie to many of the established OO patterns, but am trying to learn. Many months ago, I joined the GDN Workspace for the MS User Interface Application Block . This application block employs Model-View-Controller(MVC) style pattern that intrigued...
Posted: Oct 10 2003, 11:41 AM by CodeSniper | with 2 comment(s)
Filed under: ,
Exceptions, Error Handling, Try/Catch, etc.
Having spent years developing with Visual Basic I am starting to realize that with the switch to C# and .NET, Exception handling is one core skill I still havent mastered. As a VB programmer I was always a bit anal about proper structure, defensive error...
Posted: Oct 03 2003, 12:49 PM by CodeSniper | with 1 comment(s)
Filed under: ,
.NET CF: DateTime Picker control sample
Here is something I have been needing: MS sample of how to create a DateTime Picker for the .NET CF
Posted: Aug 27 2003, 10:31 AM by CodeSniper | with no comments
Filed under:
More Posts Next page »