| Thread | Last Post | Replies |
|
| memory options | 31 Oct 2005 21:09 GMT | 6 |
hi i am developing visual studio c++ application. basically i would like to give memory usage options for the runtime for running my programe? i know how to do it in jave but is dont know how to give for a c++ program? do any one of you know how to set these options?
|
| Beta 2005 linking with .NET 2003 libraries | 31 Oct 2005 20:51 GMT | 6 |
.NET version: Visual C++ 2005 Express Edition Beta OS: XP I have a set of dlls built with .NET 2003. They are unmanaged C++ and C code.
|
| Newbie question regarding data type casts. | 31 Oct 2005 19:43 GMT | 1 |
Folks, I've inherited some C++ code that I'm trying to convert from VC++ 6.0 to VC++ 2005 and was wondering if anyone could help as I haven't done any C++ programming in several years.
|
| VS2005 Compiler bug | 31 Oct 2005 18:56 GMT | 4 |
Is there a workaround for the code-snippet below? namespace A { template<class T> class Foo
|
| Write Operating System | 31 Oct 2005 18:37 GMT | 6 |
How can I write an Operating System in C or C++
 Signature Mateusz Rajca
|
| Performance Breakdown Writing to Memory Location | 31 Oct 2005 16:12 GMT | 3 |
For some reasons, this code:
> float tmp = 0.; > for (int i = 0; i < 2000; i++) { > for (int j = i; j < 2000; j++) { |
| .vcproj: how to regenerate | 31 Oct 2005 14:18 GMT | 5 |
I had thought that all VC compile/link options could be set from within Visual Studio but apparently that's not the case. The .vcproj file seems to hold refs to old files despite changes to project config.
|
| [C++/CLI] Determine struct layout from header file - reflection? | 31 Oct 2005 10:51 GMT | 2 |
I'm trying to figure out a way to do reflection on structs which are in a legacy c++ header file. Basically I want to write a C++/CLI program that lets me edit the binary data in the structs, but there are many of these structs so it has to be automated. Also I do not want to ...
|
| ODBC and VC++.net 2005 | 30 Oct 2005 23:44 GMT | 1 |
I'm writing a VC++.net 2005 application and i would like to use the ODBC connector. I would like to allow user to choose the DB he wants to have (MS SQL, PostgreSQl, MySQL, Oracle,...) by choosing the write ODBC driver.
|
| NET and VC6 DLLs | 29 Oct 2005 23:20 GMT | 1 |
Hello, I have some VC6 DLLs and I want to use them with NET EXEs (MFC 7.0), but the linker give me many errors, especially in functios with CStrings (parameters or return); How can I fix it? or have I to compile the VC6 DLLs in NET?
|
| [bug]Vc7\include\yvals.h(18) : fatal error C1017: invalid integer constant expression | 29 Oct 2005 11:35 GMT | 6 |
The following code snippet can be build in VC 6.0, but failed in VC 2003. //////////////save the following code in t.cpp #define _MT #define _WIN32_WINNT 0x0500
|
| Number of elements is an array | 29 Oct 2005 09:11 GMT | 11 |
Say I have a line in my code something like the following (NOTE: Point is __value class System::Drawing::Point): Point point[] = new Point[3] ; How do I now 'ask' 'point' how many elements it has (in this case the answer
|
| stdlib errors | 28 Oct 2005 19:43 GMT | 2 |
I am porting some code form vs2003 to vs2005 - it is unmanaged CPP. The solution consists of several library projects and a console project. The library projects all build fine but when I get to the console appliation, I get lots of errors in stdlib.h - C2733 and C2059 errors. ...
|
| Internet Explorer | 28 Oct 2005 18:51 GMT | 1 |
Hi I'm having an multithreaded MFC application with win32 interface VC++ 7. I need to add one more feature in this, so a particular web site can be opened with in a window of this application. I don't allow users to go out of this
|
| passing naitve function pointers to naitve code | 28 Oct 2005 10:58 GMT | 2 |
I have a strange problem: I need to wrap a C-function in a native DLL into a C#-class. This function expects one C-function pointer out of a set of some C-functions defined in the same DLL.
|