After lots of efforts I managed to install Google outlook calendar sync on my Windows 2003 server. By default it supports installation to Windows XP and Windows Vista only.
Solution was damn simple -
Right click on GoogleCalendarSync_Installer.exe and go to properties, then go to Compatability tab, check the 'Run this program in compatibilty mode for;' flag and choose windows XP, click ok and try run again..... Boom it worked :-))))
Something new for me to learn and store on this pagefile.
Friday, January 15, 2010
Tuesday, January 5, 2010
Things to Remember
TypeForwardTo attribute (Use to divert the search for a class from one Assembly to other Assembly without Recompiling the Caller application)
-->For this attribute to work, You cannot change the namespace of the Class if you shift it to other assembly :-(
----------------------------------------------------------------------------------------------
Use HashTable against ListDictionary if n >10 ( See Microsoft documentation )
--> No evidence to support this, except to the fact that HybridDictionary uses an Internal flag to switch the data type ( from ListDictionary to Hashtable) when elements are greater than 10 .
----------------------------------------------------------------------------------------------
ServiceController (Can be used to create you own service manager for Windows service)
--> We should write our own service manager because MMC snap in does not support custom commands.
------------------------------------------------------------------------------------------------
Set ANSI_NULLS ON
--> Do not use Equal and not equals operator with Null when using this , instead use Is Null and Is Not Null operators
------------------------------------------------------------------------------------------------
Set Quoted_Identifier ON
--> Can's use double quotes for string comparison if it is ON :-(
If you want to use [Where name = "Ankur Jindal"] instead of [Where name = 'Ankur Jindal'] then Set Quoted_Identifier OFF
-->For this attribute to work, You cannot change the namespace of the Class if you shift it to other assembly :-(
----------------------------------------------------------------------------------------------
Use HashTable against ListDictionary if n >10 ( See Microsoft documentation )
--> No evidence to support this, except to the fact that HybridDictionary uses an Internal flag to switch the data type ( from ListDictionary to Hashtable) when elements are greater than 10 .
----------------------------------------------------------------------------------------------
ServiceController (Can be used to create you own service manager for Windows service)
--> We should write our own service manager because MMC snap in does not support custom commands.
------------------------------------------------------------------------------------------------
Set ANSI_NULLS ON
--> Do not use Equal and not equals operator with Null when using this , instead use Is Null and Is Not Null operators
------------------------------------------------------------------------------------------------
Set Quoted_Identifier ON
--> Can's use double quotes for string comparison if it is ON :-(
If you want to use [Where name = "Ankur Jindal"] instead of [Where name = 'Ankur Jindal'] then Set Quoted_Identifier OFF
Subscribe to:
Comments (Atom)
