Search   Feed   Browse   Add
Feed items 1 - 4 of 4 for January 2004

Philip Rieck

Phil in .net

WaitHandles for the confused - January 27, 2004

I put up a somewhat old writeup on the ManualResetEvent and AutoResetEvent on my full blog, thought since it was .net, I'd post here as well.  Here's an excerpt: Confused about WaitHandles Sure you are. For one, they have the word "Event" on them.. Are they events Do they call delegates. For another, what's this "Reset" action, and why would I want to do it manually And lastly, what does the documentation mean when it says "Signaled" and "Nonsignaled" In project codename you see a good...
http://weblogs.asp.net/prieck/archive/2004/01/27/63510.aspx

Sharing my oft-used Ink controls, part 1. - January 22, 2004

I do a good amount of TabletPC development, pretty much mostly for myself.  I have lots of fun and useful apps that do things I need, and some apps I use to demo the Tablet to others.. And, like any developer, I hate to redo work.  So I created a library of controls that I use that I can drop-in.  I showed these to a friend today and she said &8220;Share with the world!&8221;.  So here you are.  This is the first one that I would even consider letting anyone else look...
http://weblogs.asp.net/prieck/archive/2004/01/21/61446.aspx

Strongly typed dataset tip - January 21, 2004

While doing code reviews (for .net code, of course!),  I see one minor annoyance with strongly typed datasets again and again - not using the TableName property.  I don't know why this comes up so often, so I thought I'd add a quick tip about it. If you have a strongly typed dataset (some call them XSD datasets), great. You don't need to remember column names or worry about casting values.  So why do I see things like this: dAdapter.TableMappings.Add("Table1",...
http://weblogs.asp.net/prieck/archive/2004/01/21/61104.aspx

Don't loose this regex - January 16, 2004

I really wish I knew where I found this... but after only an hour of digging in my old code, I found the regex to deal with CSV files (that is, handle both quoted and non-quoted values, commas in quoted values, etc). I know I didn't write the regex pattern. I also know I don't want to lose this and have to try. ,(=("""")(!"")) Regex rex = new Regex(",(=("""")(!""))");string values = rex.Split( csvLine );foreach( string v in values)   ... If you have an attribution for me, please let..
http://weblogs.asp.net/prieck/archive/2004/01/16/59457.aspx
Available Archives
- January (4 items)
- February (2 items)
- March (2 items)
- May (1 item)
- June (1 item)
Sponsored Links
© 2008 FeedCapsule.com  |  Contact