internet explorer 8 developer tools window shows in task bar but not showing
what a frustrating 5 minutes....
try Windows key + Up key
enjoy
Achievement provides the only real pleasure in life
what a frustrating 5 minutes....
try Windows key + Up key
enjoy
Posted by SF at 3:05 pm 0 comments
oldPath and newPath should look like "c:/FolderABC" or "~/FolderABC"
System.IO.Directory.Move(@oldPath, @newPath);
Posted by SF at 5:38 pm 0 comments
found this useful to keep necessary usage of disk space with sql db installed
USE myDatabase
GO
DBCC SHRINKFILE(myDatabase_log, 1)
BACKUP LOG myDatabase WITH TRUNCATE_ONLY
DBCC SHRINKFILE(myDatabase_log, 1)
Posted by SF at 11:16 am 0 comments
found the solution at:
http://www.telerik.com/community/forums/aspnet-ajax/editor/incorrect-rendering-of-radeditor-when-shown-with-ajax-in-initially-hidden-parent.aspx
Posted by SF at 11:14 am 0 comments