Monthly Archives: November 2010

Dreamweaver issues

I was suddenly having cut/paste and save issues within dreamweaver. After about 30 minutes of search I found 2 solutions. Reinstall Dreamweaver OR – Close Dreamweaver – go to drive:documents and settingsusernameapplication datamacromediadreamweaver mx 2004 – there’s supposed to be … Continue reading

Posted in Problems & Fixes, Software | Comments Off on Dreamweaver issues

SQL – Synchronizing identity field between two tables

One thing that DBAs often have difficulty with is moving data from one database to another database. This may be to synchronize a development environment with databases or tables on other servers with the same data values. Fortunately MSSQL provides … Continue reading

Posted in Code, Snippets, SQL | Comments Off on SQL – Synchronizing identity field between two tables

Javascript and form style

You can control some form elements CSS style attributes using Javascript. This comes in handy when trying to highlight errors or disabled fields. You can use a select onChange event to disable/enable form fields. The style attributes I find most … Continue reading

Posted in Code, CSS, Javascript | Comments Off on Javascript and form style