New Toy! Eee PC T101MT

Tablet PC Icon
Photo by ichibod
I finally got me one of those new fangled netbooks with touch! I have been looking for a small form tablet PC for a while. So far it has been working as expected, the IO seems a little slow but I am uninstall a heap o apps and will defrag the poor thing shortly. The touch seems ok so far but I cannot wait to get OneNote 2010 on it to see how it rolls.

It seems to come with a bit of bloatware and has office 2007 pre-installed. So farm I have removed:

  • Office 2007 + Language Packs – Will install Office 2010
  • Trend Micro Security – Will install MS Security Essentials

Ill see how the other applications go before removal.

They keyboard is nice and responsive which is a bonus, I was always dubious hitting the small keys with fat fingers but it seems fine so far.

Deleting Content Types in SharePoint

I found this peice of SQL on the web a while ago, I have no idea where it came from but it did come in handy the other day when a client needed to delete a content type but kept on getting the message it was in use.

When deleting content types you need to ensure:

  • All items using the type are deleted (and deleted from the recycle bin)
  • The Content type is removed from any list using it.
  • Any Page Layouts using the type nolonger reference it.

To help track down where the content type is in use the following query will help.

DECLARE @ContentTypeName nvarchar(128)
SET @ContentTypeName='ABCC.CourtCasePage'
SELECT w.Title AS [Web Site], w.FullUrl AS [Web Url], al.tp_Title AS [List Title], ct2.*
FROM ContentTypes ct1
JOIN ContentTypes ct2
      ON LEFT(ct2.ContentTypeId, Len(ct1.ContentTypeId))=ct1.ContentTypeId
LEFT OUTER JOIN dbo.ContentTypeUsage ctu
      ON LEFT(ctu.ContentTypeId, Len(ct2.ContentTypeId)) = ct2.ContentTypeId
LEFT OUTER JOIN dbo.AllLists al
      ON ctu.ListId = al.tp_Id AND ctu.WebId=al.tp_WebId
LEFT OUTER JOIN dbo.Webs w
      ON al.tp_WebId = w.Id
WHERE ct1.ResourceDir=@ContentTypeName

Updated Toodledo Distration Free

You can get the update here: http://www.sytone.com/toodledo-distraction-free/

Changes:

  • Added Focus mode which will grey out the background so you just have your toodledo list.
  • Updated the hover icons.
OutlookDASLQueryBuilder

Enabling the query builder for outlook views

 You can use an undocumented Registry key to display a Query Builder tab on the Filter dialog box associated with the View Summary dialog box. After you use the Query Builder to construct your query, you can then copy the Filter syntax displayed on the SQL page and paste it into your code. Do not attempt to add the Query Builder page Registry setting unless you are familiar with the Windows Registry Editor.

To display the Query Builder tab of the Filter dialog box, follow these steps:

  1. Click Start and point to Run. In the Run dialog box, type Regedit, and then click OK to launch the Windows Registry Editor.
  2. In the Registry tree, navigate to HKEY_CURRENT_USER\Software \Microsoft\Office\12.0\Outlook.
  3. From the Edit menu, select New, and then select Key.
  4. In the Key edit box, type QueryBuilder. Regedit will suggest New Key #1, but you should replace that key name with QueryBuilder.