WPF Personal FAQs

di Luigi Boschetti

BoolToVisibilityConverter BoolToVisibility converter is a standard converter that allows to convert a boolean value to a Visibility value for WPF controls. To use it: In a UserControl/Window xaml file: 2. Use the converter in Binding…

SQL Server Personal FAQs

di Luigi Boschetti

How to find Duplicates in a Table? References: How to find where an SQLServer Object is referenced? You can use the sys.sp_depends: Thanks to: David R Tribble. References:

MySQL Personal FAQs

di Luigi Boschetti

Create a new GUID() Use the mysql function UUID(). Example: Reset AutoIncrement Counter Set AUTO_INCREMENT for the Table to the desired value (must be bigger than the biggest current value in the table, for innodb…