I have Bios-diabled COM2; PnP has detected and configured (56KFlex) modem correctly as COM2 on IRQ 3 at 2F8. Modem shows on the device manager as working correctly. However, when I try to access ...
http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Windows/Win95_3x/95/Win95_S...
Zones:
Win95 SetupDate Answered: 08/26/1998 Rating: 6.2 Views: 0
How dow I convert an arbitrary COM error code (eg. STG_E_ACCESSDENIED) into a (user friendly) text string (eg. "Access denied").
Is there a Win32 SDK function for doing this?
Or do I have to writ...
http://www.experts-exchange.com/Programming/System/Windows__Programming/Q_10164042.html
Dear,
I have an eventhandler for a COM server defined like:
BEGIN_DISPATCH_MAP(CDevice, CWinThread)
//{{AFX_DISPATCH_MAP(CDevice)
DISP_FUNCTION_ID(CDevice, "CleanupIndicatio...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20065362.html
Hi,
I have an application that calls functions in other applications using COM. Whenever I call such a function, I always put a try {} catch (_com_error &er) {} around it. Whenever there is an e...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_22418616.html
Zones:
C++Date Answered: 04/27/2008 Rating: 8.2 Views: 0
Hi.
I'm seeing lots of COM client code that looks like this:
CoInitialize(NULL);
try
{
// Do stuff that would throw an exception.
}
catch (_com_error &e)
{
return e.Error()...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_10254017.html
Zones:
C++Date Answered: 01/03/2000 Rating: 9.2 Views: 0
Hello
Can please any one tell me, what is the functionlity of "_com_issue_error()" function, because I see it in MSDN in ADO samples for VC++, but I can't find the description of this function.
I...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_11010681.html
Zones:
C++Date Answered: 08/29/2001 Rating: 7.6 Views: 19
Hey All,
I have previously asked a question concerning connecting to a database. I have comed further now, but still have a problem.
My code is as following:
#include "DB.h"
#include <io...
http://www.experts-exchange.com/Programming/Languages/CPP/Q_20348982.html
Zones:
C++Date Answered: 12/10/2002 Rating: 6.8 Views: 0
Wow. When I try to look at the references tab in my project settings, I see the following:
An error occurred trying to load the page.
Unable to cast COM object of type 'System.__ComObject' t...
http://www.experts-exchange.com/Programming/Languages/.NET/Visual_Basic.NET/Q_22037275.htm...
I am attempting to migrate a SQL 7 database named 'OTG' to a new server with SQL 2000 on it. I have setup the DSN connection to the database on the client (which tests successfully) but when I try...
http://www.experts-exchange.com/Database/Miscellaneous/Q_22913038.html
I am using the following code to create a reference to Outlook:
<cfobject Type ="COM"
Name="objOutlook"
Class="Outlook.Application"
Action="Create">
However I get the following error...
http://www.experts-exchange.com/Software/Server_Software/Web_Servers/ColdFusion/Q_20119885...