Andrei's blog
sharing coding bits
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...
Monday, February 04, 2008
MSI remember-to's
›
I am working with a wix installer and i needed to perform a specific task on uninstall. After coding and compiling the msi, I tried to uni...
‹
›
Home
View web version