| Thread | Last Post | Replies |
|
| Mysterious values in IDE when debugging | 17 Jul 2005 09:55 GMT | 3 |
I recently started using VC7.1 (upgraded from VC6). I've noticed that when stepping through code, some of the values of my variables make no sese at all. For instance, I had some code like this: int i = 1, j =1 ;
|
| Link 1103 for DXGUID | 17 Jul 2005 02:08 GMT | 2 |
Cannot compile Debug version of simple DI joystick demo program in C++ because of following: "dxguid.lib(dxguid.obj) : fatal error LNK1103: debugging information corrupt; recompile module" Using Visual C++ version 6 with SP6, DXSDK 2005. Any suggestions ?
|
| cannot convert parameter 2 from 'int' to 'int' | 16 Jul 2005 21:37 GMT | 1 |
I have a strange compile error. C2664 cannot convert parameter 2 from int to int... Earlier in my code I was setting up my dataset... I add an int field like so...
|
| Problem creating multiple .dlls that depend on each other | 16 Jul 2005 13:16 GMT | 3 |
I am in VS2003, building C++ .dll libraries. I want to create a single .dll that combines its own code with code from other dlls. For example, I want to build B.dll, where B has its own source code, and also refers to routines in A.dll. I have another app C.exe that
|
| Can I build both a .dll and .lib for the same library at the same | 16 Jul 2005 01:57 GMT | 2 |
In a thread below, I found out that I need to build a .lib if I also want to build a .dll that depends on it. Sometimes I would like to have a .dll and a .lib both for the same library. Is there a way to build both in the same build, or is the only solution to go
|
| COM - java interop | 15 Jul 2005 23:49 GMT | 3 |
Hi evrybody ! Does anybody know how to call a java class from a COM component ? Any suggestion ? Thanks
|
| Application::ProductVersion usage | 15 Jul 2005 21:05 GMT | 6 |
How is this set in visual c++. I assumed it was in the AssemblyInfo.cpp file, but the changes are never picked up and Application::ProductVersion keeps coming back empty. Help is appreciated.
|
| COM+ call to MultiThread can only create 3 STA Thread ? | 15 Jul 2005 19:27 GMT | 1 |
I have a STA Multithreaded dll, which is called by a VB COM DLL, and this VB DLL is called by a COM+ dll. During the debug testing in VC++, I found only 3 STA thread can be created. However, when I tested the STA Multithreaded dll using VB form and it work fine and can create ...
|
| How to make a function thread safe in mc++? | 15 Jul 2005 19:16 GMT | 7 |
I was looking at the C#'s "lock()" statement, and I was wondering if there was an equivalent or recommended way of doing this in MC++. I have a thread which I am calling a function from mc++, and I was wondering what
|
| Strings ints and enums | 15 Jul 2005 18:17 GMT | 6 |
I'm having some problems working with enumerations. A function call to a 3rd party dll has in it's parameter list an enumerated type which connects me to a COM port. I'm trying to convert a stored parameter from a database into this enumerated value and can't seem to get
|
| Displaying a JPEG Image | 15 Jul 2005 14:48 GMT | 1 |
I have a JPEG image data in a char array, i know the length of the data as well, which functions could i use to display the Image in an already open window.
|
| error | 15 Jul 2005 14:43 GMT | 3 |
i am just about as new to C++ as it gets and i have a friend who gave me a C++ example. the code is fine because he can compile it but i cant. i have vc++ express my first question is: do i click build or compile?
|
| Sending Binary Data over a network | 15 Jul 2005 12:20 GMT | 1 |
How can i send binary data over a network using winsock. I dont want to use a char array as the binary data has a lot of 'NUL' characters in it which causes problems when i receive data using recv() and store in a character array.
|
| Managed and unmanaged C++: error LNK2020: unresolved token | 14 Jul 2005 20:46 GMT | 1 |
ultimately I want to call some unmanaged C++ class that contains some DirectShow code of mine from my C# classes, but for the time being I'd be happy if I could get this to build! I have read the other topics on the same problem here on the groups but haven't found the solution to
|
| Simple Types and Marshalling Question | 14 Jul 2005 19:53 GMT | 2 |
When working with managed c++, do you have to do anything special when going from simple types from managed to unmanaged and vice versa. Or is marshalling handled automatically for you? I have seen from several posts that you have to do special conversions for
|