| Thread | Last Post | Replies |
|
| what do I do with an SDK? | 08 Nov 2007 04:57 GMT | 9 |
I've downloaded the Adobe Acrobat SDK, but don't know what to do with it. I have Visual C++ 2005 Express Edition installed and I'm trying to make an Acrobat plug-in.
|
| HELP!! in FTP Sessions, how to refresh directory listing? | 07 Nov 2007 18:29 GMT | 1 |
HELP!! in FTP Sessions, how to refresh directory listing? I read a document about FTP Sessions in MSDN. http://msdn2.microsoft.com/en-us/library/aa384180.aspx In the document, if you upload a file to FTP server, delete or rename
|
| 'Fatal Execution Engine Error' using unmanaged obj from 2 appdomai | 07 Nov 2007 16:13 GMT | 4 |
I believe I've found a bug in either the compiler or in the runtime....for some reason when accessing a specific unmanaged object from 2 appdomains it causes a fatal execution engine error. It took me over a week to narrow it down, but here's a nice simple snippet of code that ...
|
| VC++ 2005 problem creating an ActiveX in a secondary Thread | 07 Nov 2007 14:13 GMT | 8 |
In my vc++ 2005 dialog based application i need to use a comunication activex component in a secondary thread: CFINSAxEFS* pNewAx = new CFINSAxEFS(); if ( !pNewAx->Create( NULL, NULL, CRect( 0,0,0,0), pParent,
|
| Debug or Release? | 07 Nov 2007 11:42 GMT | 2 |
I am having some difficulties with mixed Release / Debug versions of various libraries. In order to sort this out, I need to know if the libraries were built using the Debug or Release dlls originally. Is there a simple way to do this?
|
| Debugging | 06 Nov 2007 14:42 GMT | 1 |
I have a C# application which references a C++.NET DLL which links to a C++/MFC DLL. When I am debugging I cannot step from the C++.NET DLL into the C++/MFC DLL. Any idea why? (If I write a little test app in C+ +.NET then I can step into the MFC DLL from the .NET DLL).
|
| Calling C++ DLL from C# | 05 Nov 2007 16:11 GMT | 1 |
Using VS 2005. I want to write a DLL in C++.NET that will then be used in a Windows Forms application written in C#. How do I write the C++ DLL such that C# will be able to use it?
|
| 'GetTempPathW' : is not a member of 'System::IO::Path' | 05 Nov 2007 16:04 GMT | 3 |
when I compile the following statement.. this->_FileDirectory = System::IO::Path::GetTempPath(); I always get this error: Error 1 error C2039: 'GetTempPathW' : is not a member of
|
| module definition file | 05 Nov 2007 06:01 GMT | 2 |
I am using Visual Studio 2005 to develop C++ DLL (in-process COM). There is a setting in Linker --> Input called Module definition file. This setting makes me confused, 1. I have tried that if input a file name (.def), then the generated DLL be
|
| Saving location and data | 04 Nov 2007 22:43 GMT | 5 |
I apologize if this is in the wrong discussion group. I have a C++ form (VS2003) that includes a couple text boxes and a slider bar. Moving the slider bar changes a picture that is displayed and some label elements and the text boxes have an initial value of 0. When a value is ...
|
| delete [] | 04 Nov 2007 10:25 GMT | 29 |
I remembered delete[] is implemented through operator overloading, but I am not quite clear. Could anyone recommend some links about how delete[] is implemented so that I can learn and refresh my memory? :-)
|
| Directory::GetDirectories returning non-existent directories | 03 Nov 2007 23:48 GMT | 4 |
Assuming you have the default directory settings, try this code: String^ full_path = "c:\\Users\\Owner\\Documents" ; array<String^>^ dir_list = Directory::GetDirectories( full_path ) ; In my case, it returns all the directories as it should in dir_list, but it
|
| name conflicts in enum | 03 Nov 2007 06:31 GMT | 6 |
Suppose I have two enums which has an item with the same names -- but different values, [Code] enum foo {
|
| Problems with sizeof function | 02 Nov 2007 19:45 GMT | 2 |
sHi! I have a very strange problem with the behaviour of the sizeof command. I have tested it in vc6,vc 2001 and vc 2003. The problem is quite simple. When I made a sizeof to the next struct, it returns that the size is 40
|
| DllUnregisterServer | 02 Nov 2007 07:29 GMT | 13 |
I asked a related question about when DllRegisterServer is called and my question is answered. Now I am thinking that when DllUnregisterServer will be called? It is reasonable to understand that during installation process or when we
|