Click here to Skip to main content
Email Password   helpLost your password?
Unanswered questions View unanswered questions in the COM forum    RSS: RSS Feed
Home > Forums > COM

You must Sign In to use this message board.
 
 
Per page  Date Filter 
 FirstPrevNext
GeneralRe: Has Microsoft exposed Direct3D 10 on COM?
EliottA
8:29 8 May '09  
Erroneous because he gave him directions to the documentation three times before posting the actual direct URL. In my opinion, nothing is wrong with giving a direction instead of the direct result, working a bit and navigating shouldn't be such a big issue. And as for your other post 'are you kidding me', no I'm not.

Go back to making tutorial sites for viruses.


GeneralRe: Has Microsoft exposed Direct3D 10 on COM? [modified]
bulg
11:57 8 May '09  
This is the wrong place for this argument, but you don't have posting enabled on your user page or an email link. However, I do. If you want to call me names, do it there.

Also, get off my lawn!

modified on Friday, May 8, 2009 5:30 PM

GeneralRe: Has Microsoft exposed Direct3D 10 on COM?
bulg
7:12 8 May '09  
EliottA wrote:
He had the decency to stop replying hours ago, you carried it over to a new board, attempted to have a community (which he served tirelessly whilst earning MVP honors) turn and downgrade his posts for no reason other then you weren't satisfied. He gave you your answers even while you insulted him. You should sit and apologize, not attempt to defend your lack of class and your rudeness.
You gotta be kidding me
GeneralRe: Has Microsoft exposed Direct3D 10 on COM?
bulg
7:00 8 May '09  
I think it was totally appropriate, given ledmike's childish language in the first response
GeneralRe: Has Microsoft exposed Direct3D 10 on COM?
Jörgen Sigvardsson
12:27 7 May '09  
What's your beef with this guy? He wasn't rude, he didn't ask you to do his homework, and he didn't offend anyone.

--
Kein Mitleid Für Die Mehrheit

QuestionHow to capture Close event of Winword Application using AddIn?
Supra2
0:32 6 May '09  
Hi,
I have develope a AddIn using ATL in .Net enviroment and I want to capture [Winword Cross] application close and not document close. How can I get this event? I want to Invoke this event when I am closing a document.

Thanks
Questionhow to remote access to ad
ljz888666555
23:53 5 May '09  
I have write a program ,which can run on local computer .but it can't access to remote ad.
this is my first question ,please help me.thank you . :(
AnswerRe: how to remote access to ad
ljz888666555
0:06 6 May '09  
why no one help me? Cry Cry Cry
QuestionHow to retrive the Properties of a Active X control.
vibindia
17:51 5 May '09  
In C++\CLI I m able to get the properties using

PropertyDescriptorCollection^ Scadapropinfos = TypeDescriptor::GetProperties(AxHost^% );

How to get the properties of control in Native C++

VIBIN

"Fool's run away,where angle's fear to tread"

QuestionWMI Win32_Service
Jack Rong
6:23 4 May '09  
Anybody has idea how to start specific service in remote machine using WMI C++ API.

Jack Rong
AnswerCross posting pile of garbage
led mike
10:24 4 May '09  
Dead
GeneralRe: Cross posting pile of garbage
Jack Rong
3:16 5 May '09  
Doesn't seem like you understand the nature of WMI, Windows Management Instrumentation. It is a part of COM/DCOM components.

Jack Rong
GeneralRe: Cross posting pile of garbage
led mike
7:25 6 May '09  
If you want to talk to me stop spamming the forums like a giant arse. Until then frack off.
Questionoleview could able create instance but cocreateinstance fails.
rsandeepu
20:02 3 May '09  
Hi,

I could able to create instance of the com server using oleview.
But when i do the same thing in code with cocreateinstance it gives the error E_NOINTERFACE or 0x80004002. By breaking cocreate instance if found that Queryinterface return this error.
How could i resolve it?

Please help
many thanks in advance.
Questionprinter on distributed system
Snappy Wing
5:33 3 May '09  
hi
i have a problem, i want do my project that is we have a client/server system and we have 2printer for example hp1 and hp2,and one server and for example 6 cleint computer in network.
a program is install on server and printer me be connected to any client, and if click on hp1 on program in server , hp1 on any client that have hp1 print,and hp2 too.

i want help me ,what i should learn for this project? what idea you have ?
i do client programing and don`t write program on network.
after finish my project take my result on site.
Questiondynamic_cast of objects inherit from IUnknow
Jack20095
19:23 1 May '09  
#include "stdafx.h"

class A
{
};

class B
{
};

int _tmain(int argc, _TCHAR* argv[])
{
A* pA = NULL;
B* pB = dynamic_cast<B*>(pA);//error C2683: 'dynamic_cast' : 'A' is not a polymorphic type. This is no doubt.

return 0;
}


\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\
But if A inherits from IUnknow, the dynamic_cast compile successfully, why?
#include "stdafx.h"
#include <ObjBase.h>

class A : IUnknown {
};

class B
{
};

int _tmain(int argc, _TCHAR* argv[])
{
A* pA = NULL;
B* pB = dynamic_cast<B*>(pA);//Why compile successfully here?
return 0;
}
AnswerRe: dynamic_cast of objects inherit from IUnknow
Vi2
18:36 3 May '09  
"The dynamic_cast operator cannot be used to convert from a non-polymorphic class, that is, a class that does not define any virtual functions." (c) MSDN

So IUnknown is an interface with 3 virtual functions QueryInterface, AddRef and Release.

You can obtain such effect with
class A
{
virtual ~A() {}
};


With best wishes,
Vita

QuestionHow to debug COM+ Applications Using Microsoft .NET Enterprise Services ??
Yanshof
14:52 1 May '09  
I wrote some COM+ Applications Using Microsoft .NET Enterprise Services and its work fine.
But i don't know how to debug it.
I try to use "attached to process" and it is not stop on the break point ( the break point is valid - the modules are up ).

Someone know how to debug this thing ? and why its not stopping on the break point ? ? ? Confused Confused Confused

Thanks ... D'Oh! D'Oh!
Questioncopy file from local machine to remote using WMI
Jack Rong
9:39 28 Apr '09  
I would like to copy file from local to remote machine using WMI in C++. Not quite sure how to do this.

According to MS doc, "Win32_Directory" can be a good candidate. Anybody go idea? Thanks in advance.

Jack Rong
AnswerCross Posted
led mike
9:58 28 Apr '09  
Dead
QuestionInstall ActiveX
p_1960
4:51 25 Apr '09  
Hi,
i have an dll(using ATL) file in webserver and i included it in my html page ..
and when client requests for that html the ocx gets installed with his permission but the issue it"s getting successfully installed on Admin machine..but in non-admin machine even the message box that prompts to install dll is not displaying.....is there any limitation for non-admin...

pls help me out...
AnswerRe: Install ActiveX
KarstenK
21:36 26 Apr '09  
Did you care about signing the ocx and implementing the safety interfaces: IObjectSafety or IObjectSafetySiteLockImpl? Dead

But I have no ohter clue? Confused

Press F1 for help or google it.
Greetings from Germany

GeneralRe: Install ActiveX
p_1960
23:16 26 Apr '09  
ya i have signed and implemented IobjectSafety to mark ATl ActiveX control as safe....
but still i was unable to install and register in non admin only....Every thing works fine in admin machine...
GeneralRe: Install ActiveX
KarstenK
23:46 26 Apr '09  
Wasnt there something with "per user" installations? Confused

Press F1 for help or google it.
Greetings from Germany

GeneralRe: Install ActiveX
p_1960
1:49 27 Apr '09  
Ya but i need to install the ActiveX dll using IE .....

pls let me know regarding the same....


Last Updated 10 Aug 2007 | Advertise | Privacy | Terms of Use | Copyright © CodeProject, 1999-2010