| Thread | Last Post | Replies |
|
| LNK9038 SAFESEH warning, | 23 Jul 2006 12:11 GMT | 1 |
Iam linking my C++ project with some external libraries and getting the following error: someLib.lib(omeObj.obj) : LNK9038: module unsafe for SAFESEH image. I do not have exception handling turned on in my main project (no /GX /Eh
|
| Cyrcle reference problem... | 23 Jul 2006 11:07 GMT | 3 |
I have struct, and class that handle array of previous mentioned structs. How to declare struct member, that will point to class that it belongs? struct S {
|
| Problem about the project sln | 23 Jul 2006 07:16 GMT | 3 |
i have a problem on the sln file. After i have a error while coding, i close the VS studio and find the sln file to open the project. But i discover that the sln file become 0kb and i couldnt open it.
|
| Program to check its own memory usage? | 22 Jul 2006 12:38 GMT | 1 |
Does anyone know whether it is possible for a VC program to find out about its own memory usage? Thanks. regards, Daniel
|
| to set a native callback to managed member function | 22 Jul 2006 10:44 GMT | 1 |
I will quickly try to write a code that shows my intention. I will pass unnecessary code. typedef void(FP*)(LONG _param1, LONG _param2, BYTE* _pData); class CNative
|
| Variably sized instances of a class | 21 Jul 2006 20:58 GMT | 7 |
I want to create a class with a variably-sized array inlined. The array size will be known at each instantiation but not at compile time. Once created, arrays won't grow or shrink and their contents won't change.
|
| Char* variable in struct having junk address instead of NULL ptr | 21 Jul 2006 18:51 GMT | 1 |
In VC8 project, I am having a struct which is having a char* variable. Now I am creating a 3 elements array object for the struct. I send the base address of the object using VARIANT to a function where I am casting to struct again using reinterpret_cast.
|
| CString->GetLength() does not work | 21 Jul 2006 12:24 GMT | 9 |
Hi, I have a question for CString. My C++ code is detailed as below, FILE *fp1; fp1=fopen("F:\\aa.dat","rb"); if(!feof(fp1))
|
| How to change binary data buffer read from a binary file to string format | 21 Jul 2006 11:35 GMT | 1 |
Could anyone tell me how to convert binary data in buffer to string format,thanks in advance! Anderson
|
| Why I can not get the string buffer length ?Help!!! | 21 Jul 2006 08:20 GMT | 2 |
Hi, all I have a sample code like the following detailed: //----------------- FILE *fp1;
|
| Pass parameters for Stored procedure in VC++ | 21 Jul 2006 08:03 GMT | 3 |
Hi, all I have a stored procedure created in SQL Server like the following lines. // stored proceudre code starts here
|
| VC++ 2005 migration problem | 21 Jul 2006 07:47 GMT | 3 |
hi, i have 1 MFC project which is written using VC++2003 but i need to migrate to VC++2005. The program (VC++2003) is working fine. but there is erros occur when running in VC++2005, and i just able to figure out that the problem was come from the following code.
|
| Resitributable Visual C++ runtime side-by-side assemblies. | 21 Jul 2006 04:53 GMT | 5 |
I don't suppose that the redistributable C/C++ runtime library merge module has been packaged into an MSI script and is available for download somewhere? They are bloating up my distribution files and I would prefer to just provide a link.
|
| Programmatically determine DLL dependencies | 20 Jul 2006 21:17 GMT | 2 |
What's the "best" way to determine an EXE file's DLL dependencies from within a program? I basically need to figure out which DLL's are required by an EXE like Dependency Walker, from within a C++ application. Thanks
|
| Atomic reference counting | 20 Jul 2006 19:49 GMT | 3 |
I need to implement reference counting in a class hierarch, in a thread safe manner. (The classes are umanaged but I might want to compile them with the /clr option.) Some of the objects - atoms - are registered in a global hash
|