Clive Ciappara

Founder of WOW. Passionate Software Engineer and UX Designer with 18 years of professional experience in building and designing high performance web applications.

SQL Server 2005 | “Product level is insufficient”

The following error kept popping up when trying to import data from a flat file source […]

Visual Studio | No source code available for the current location

Whilst trying to debug a Stored Procedure, the following error prompted: There is no source code […]

Could not execute stored procedure ‘master.dbo.sp_enable_sql_debug’

This morning I found this error when trying to debug a stored procedure from Visual Studio […]

SQL Server 2005 | Copy Database Diagrams

Next is the code to copy database diagrams from one database to another (tested on SQL […]

Convert String to GUID | Quickie

To convert a string to GUID you have to do the following: string text = “6937e459-f1bd-4a20-ab10-28ff0010c15b”; […]

Get a Double Random Number | Quick Tip

This is useful since the Random() object can only export a double number between 0.0 and […]

CSS | Hide Overflow Vertical Scrollbar

When you set a div style like this: div#tbl-container { width: 600px; overflow: auto; scrollbar-base-color:#ffeaff } […]

Convert degrees to minutes for Google Maps in Excel

Normal Formula =”N” & INT(H2) & ” ” & ROUND(((H2 – INT(H2)) * 60), 6) Advanced […]

Mime Types

Was searching for the flash content mime type and found this list of all the mime […]

Set Negative and Zero Formatting in String.Format

Apart from setting the format you want the string to be shown, the format parameter in […]

1 16 17 18 19 20 27