No announcements
Found 3288618 threads
-
0 Votes
How can choose msdia80.dll, msdia90.dll, msdia90.dll in an exe com server dynamically?
That said, each of these dll's COM objects have different guids, so you should certainly be able to programatically create whichever you require.Answered | 1 Replies | 3993 Views | Created by YangmeiGe - Thursday, February 23, 2012 1:47 PM | Last reply by Ed Dore - Thursday, February 23, 2012 8:30 PM -
0 Votes
Calling a COM dll from another COM dll
That's the whole point of COM.Answered | 3 Replies | 3593 Views | Created by vatsa_mitr - Tuesday, June 23, 2009 5:57 AM | Last reply by Brian Muth - Tuesday, June 23, 2009 4:12 PM -
2 Votes
MFC as Shared DLL vs.
Comparing with the static linking, it offers several advantages.Answered | 5 Replies | 5900 Views | Created by J. R. Crison - Thursday, December 17, 2009 6:48 PM | Last reply by Rong-Chun Zhang - Monday, December 28, 2009 7:45 AM -
2 Votes
How can value in a global variable in COM Server dll, can be accessed by other application loading the same COM dll.
Create a COM exe with SINGLE_USE property.Answered | 6 Replies | 3248 Views | Created by isampro - Wednesday, July 22, 2009 6:03 AM | Last reply by Palaniappa - Wednesday, July 22, 2009 3:43 PM -
1 Votes
Static Link Library and Dll from same project
Here is another way to combine both DLL and static libs in the same project, that is selecting static or dynamic via vsprops files.Answered | 4 Replies | 4308 Views | Created by CatusMang - Monday, May 30, 2016 11:52 PM | Last reply by RLWA32 - Saturday, June 4, 2016 12:50 PM -
1 Votes
COM DLLs built with different versions of VC withing the same EXE - compatibility
We have an EXE built in VS2015.Answered | 1 Replies | 441 Views | Created by CJM-YMX - Wednesday, August 3, 2016 9:12 AM | Last reply by RLWA32 - Wednesday, August 3, 2016 10:48 AM -
2 Votes
Possible to build dll's in an exe.?
Best regards, FisnikCoder24.comAnswered | 6 Replies | 3082 Views | Created by programatic - Thursday, August 20, 2009 9:32 PM | Last reply by Fisnik Hasani - Saturday, August 22, 2009 3:17 PM -
5 Votes
Porting to Metro - static libs and DLLs
You can use either LoadLibraryPackage or dynamically link to this DLL using it's import lib.Answered | 9 Replies | 7747 Views | Created by jmuffat - Wednesday, September 21, 2011 3:35 PM | Last reply by David_Brooks - Wednesday, February 1, 2012 4:40 PM -
0 Votes
Can a COM DLL be statically linked with an EXE?
Or do I need to change the COM DLL to normal DLL and link statically with it?Answered | 7 Replies | 3563 Views | Created by _San - Thursday, November 25, 2010 10:37 AM | Last reply by _San - Thursday, December 2, 2010 10:34 AM -
2 Votes
What combinations of EXE and DLLs or LIBs can be safely done?
Since DLLs are not the same as static libraries the rules are different.Answered | 5 Replies | 715 Views | Created by Juan Dent - Tuesday, August 1, 2017 12:27 AM | Last reply by Igor Tandetnik - Wednesday, August 2, 2017 12:15 AM -
2 Votes
Metro Style App Exe + Metroy Style Static Library linking
I figure out that my solution is to #include header with object where i define my main(), then executable code can link properly.Answered | 5 Replies | 4384 Views | Created by Angin3 - Wednesday, August 29, 2012 3:17 PM | Last reply by MannekinPis - Wednesday, October 3, 2012 11:21 AM -
1 Votes
Distinguish .Net Dll from a COM Dll
What if the DLL is a .NET assembly with a COM interface.Answered | 3 Replies | 805 Views | Created by mpdillon56 - Thursday, July 21, 2016 5:00 PM | Last reply by Paul P Clement IV - Thursday, July 21, 2016 8:21 PM -
0 Votes
Problems adding references to COM dlls
Now I can add the dll using the "Add Reference" dialog.Answered | 7 Replies | 2858 Views | Created by MrProsser - Sunday, June 16, 2013 10:07 PM | Last reply by MrProsser - Friday, June 21, 2013 4:11 AM -
0 Votes
What's the difference between a DLL's LIB and a Static Lib?
That lib code may be statically linked into the DLL itself, or there may be links to another DLL.Answered | 4 Replies | 16985 Views | Created by SoBigSoBig - Friday, December 25, 2009 7:20 AM | Last reply by WayneAKing - Friday, January 1, 2010 8:26 AM -
3 Votes
dll(dynamic link library)
JK, A Dynamic Link Library or named as .DLL is a library that contains code and data that can be used by more than one program at the same time.Answered | 3 Replies | 2594 Views | Created by a.jayakumar - Tuesday, October 18, 2011 7:32 AM | Last reply by Lingaraj Mishra - Tuesday, October 18, 2011 10:07 AM -
7 Votes
What is the difference between .dll and .exe ?
<copied> the main difference between .dll and .exe is that .dll has no main function and .exe has main function that is the reason ...Answered | 11 Replies | 71992 Views | Created by TheNemo - Tuesday, June 12, 2007 12:45 PM | Last reply by Harish Supekar - Wednesday, July 12, 2017 12:06 PM -
2 Votes
Compile as .dll instead of .exe
I am trying to compile as .dll file instead of .exe.Answered | 3 Replies | 25828 Views | Created by cboshdave - Thursday, January 21, 2010 6:03 PM | Last reply by Reed Copsey, Jr - Thursday, January 21, 2010 7:21 PM -
0 Votes
How can I call the VSTO generated dll from an EXE
Use my EXE to invoke these DLL's after a Word version check on the client system.Answered | 8 Replies | 2296 Views | Created by BlueBangalore - Monday, March 10, 2014 8:03 AM | Last reply by BlueBangalore - Wednesday, March 12, 2014 7:30 PM -
0 Votes
Debugging an Exe and DLL
>But now I am trying to attach these two projects so that I get a link when debugging from the exe project to the .dll project.Answered | 2 Replies | 751 Views | Created by Arun6784 - Thursday, November 5, 2015 3:03 PM | Last reply by Jack Zhai-MSFT - Sunday, November 8, 2015 7:30 AM -
2 Votes
static linking in c#
Do you mean you got multiple .NET library's and want to combine them as one, like the C++ static linking?Answered | 3 Replies | 21677 Views | Created by Mvinaymurthy - Monday, May 30, 2011 6:50 AM | Last reply by Jesse Houwing - Wednesday, June 1, 2011 9:00 AM - Items 1 to 20 of 3288618 Next ›
No announcements