Andrei's blog
sharing coding bits
Wednesday, January 19, 2011
ICollectionView and CollectionViewSource
›
Very good sources for these two: http://marlongrech.wordpress.com/2008/11/22/icollectionview-explained/ http://omniscientist.net/?p=187 http...
Thursday, November 05, 2009
Removing path point tangent in Expression Blend
›
I had situations went I wanted to remove the corner roundness of path points. For instance, you have a path created from a rectangle with co...
Wednesday, November 26, 2008
DataGrid custom sorting
›
As you know DataGrid can sort your items by default when column headers are clicked. You can however implement your own custom sorting. Whe...
Tuesday, September 16, 2008
Extract all files from MSI
›
msiexec /a msifilepath /qb TARGETDIR=folderpath Example: msiexec /a c:\testfile.msi /qb TARGETDIR="c:\my test\"
Wednesday, July 30, 2008
'AG_E_RUNTIME_METHOD : Begin' error when starting a storyboard
›
Before starting animation, always make sure that animation objects and objects participating in the animation are added to the application...
Thursday, March 13, 2008
vtable and __declspec(novtable) (aka ATL_NO_VTABLE)
›
__declspec(novtable) is a storage-class attribute and Microsoft specific applied to classes declaration. It's purpose is to tell t...
References in favor of pointers use
›
Always try to use reference instead of pointer to data wherever is possible. A pointer to a data always raises the question if the pointer h...
‹
›
Home
View web version