versia.com

Alexander Kojevnikov's blog

Month: February, 2008

SQL Server: Full-Text Searching Across Multiple Tables

Sometimes a full-text search needs to be performed on multiple tables. For example, if we have two tables, Post and Comment, we may want to search for posts that have keywords both in the post text and in the comments. SQL Server doesn’t allow to include multiple tables in the CONTAINS and FREETEXT predicates. We [...]

Editing icons of WinForms controls.

I love icons! I use them all the time in my WinForms applications – anywhere from buttons and tab pages to tool strip items. Icons look nice (at least they should be), but editing them is not. In WinForms you need to edit the original image and change the corresponding .Image or .Icon properties everywhere [...]