It would appear to me that one of the COM component references from your app isn't registered properly on the 64 bit machine. You'd have to register it using RegSvr32.
You are getting THIS error returned to you:
Code:
string sss = ex.Message;
Because the ComponentModel "System.ComponentModel.ISupportInitialize" isn't registered properly on the system.
Also, for more in depth debugging purposes, try using ex.ToString instead. It will return a lot more information for you to go by because this will return the full exception to a string.