Click here to Skip to main content
16,005,389 members
Home / Discussions / C#
   

C#

 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
Colin Angus Mackay12-Jan-08 11:07
Colin Angus Mackay12-Jan-08 11:07 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
PIEBALDconsult13-Jan-08 4:05
mvePIEBALDconsult13-Jan-08 4:05 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
yoavyoavyoav13-Jan-08 4:24
yoavyoavyoav13-Jan-08 4:24 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
PIEBALDconsult13-Jan-08 13:28
mvePIEBALDconsult13-Jan-08 13:28 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
yoavyoavyoav13-Jan-08 19:22
yoavyoavyoav13-Jan-08 19:22 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
PIEBALDconsult14-Jan-08 4:24
mvePIEBALDconsult14-Jan-08 4:24 
GeneralRe: Detecting if a "Using" directive is not available in different computers [modified] Pin
yoavyoavyoav14-Jan-08 4:29
yoavyoavyoav14-Jan-08 4:29 
GeneralRe: Detecting if a "Using" directive is not available in different computers Pin
mav.northwind15-Jan-08 1:30
mav.northwind15-Jan-08 1:30 
Hi!
From my experience, a failed object creation for COM objects that are not available can be caught just like any other exception.
How do you create your Excel object? I don't have the Excel PIA (and thus the namespaces and classes it provides) at hand, but something like this should work:
Microsoft.Office.Excel._Application app = null;
try
{
  app = new Microsoft.Office.Excel._Application();
}
catch
{
// COM object cannot be created
}


Regards,
mav

--
Black holes are the places where God divided by 0...

GeneralDatabase... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 4:57
Jacob Dixon12-Jan-08 4:57 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay12-Jan-08 5:03
Colin Angus Mackay12-Jan-08 5:03 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 10:05
Jacob Dixon12-Jan-08 10:05 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 10:23
Jacob Dixon12-Jan-08 10:23 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay12-Jan-08 11:06
Colin Angus Mackay12-Jan-08 11:06 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 11:16
Jacob Dixon12-Jan-08 11:16 
GeneralRe: Database... Problems with a textbox converting.. Pin
Gareth H12-Jan-08 12:57
Gareth H12-Jan-08 12:57 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon12-Jan-08 16:01
Jacob Dixon12-Jan-08 16:01 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay12-Jan-08 22:50
Colin Angus Mackay12-Jan-08 22:50 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay12-Jan-08 22:57
Colin Angus Mackay12-Jan-08 22:57 
GeneralRe: Database... Problems with a textbox converting.. Pin
Jacob Dixon13-Jan-08 9:15
Jacob Dixon13-Jan-08 9:15 
GeneralRe: Database... Problems with a textbox converting.. Pin
Colin Angus Mackay13-Jan-08 9:46
Colin Angus Mackay13-Jan-08 9:46 
GeneralRe: Database... Problems with a textbox converting.. Pin
Paul Conrad13-Jan-08 6:40
professionalPaul Conrad13-Jan-08 6:40 
GeneralODBC connection Error Pin
Thaer Hamael12-Jan-08 4:05
Thaer Hamael12-Jan-08 4:05 
GeneralRe: ODBC connection Error Pin
pmarfleet12-Jan-08 6:48
pmarfleet12-Jan-08 6:48 
GeneralRe: ODBC connection Error Pin
Jimmanuel12-Jan-08 10:16
Jimmanuel12-Jan-08 10:16 
GeneralRe: ODBC connection Error Pin
PIEBALDconsult13-Jan-08 13:30
mvePIEBALDconsult13-Jan-08 13:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.