| Thread | Last Post | Replies |
|
| How to add system users and groups by programming? | 25 Mar 2005 04:49 GMT | 1 |
How to add system users and groups by programming? Thanks:-)
|
| peteroid@adelphia.net | 25 Mar 2005 02:41 GMT | 1 |
|
| Is there a simpler way? | 24 Mar 2005 23:27 GMT | 20 |
I am trying to learn VC.NET and convert some Borland C++ applications. The syntax differences are killing me... Is there an easy way to convert a hex string, entered by the user, to a binary string and back? This is the actual code I am trying to convert.
|
| Error switching mfc to mixed mode | 24 Mar 2005 14:36 GMT | 4 |
I have an existing MFC program consisting of an EXE and one DLL that I am trying to convert into a mixed mode program. I am using Visual Studio.NET 2003 Professional and I am compiling in the IDE. I set the "Use Managed Extensions" option to Yes in Configuration Properties ...
|
| Using dll in VC++ 1.52 | 24 Mar 2005 11:53 GMT | 7 |
I need to compile a DLL with VC++1.52 ( 16 bit ). My project must link to another 16 bit .dll ( PXENGWIN.DLL, paradox ). I can't find where to set this link...it seems that only .lib files are supported, and in this case, I'd need some tool to extract .lib file from a 16 bit .dll ...
|
| Converting Int32 * to int * for CLS compliancy. | 24 Mar 2005 07:24 GMT | 1 |
While I'm experienced with c# and regular c++, I'm very new to managed c++ so please bare with me. Here's the scenario: I have a function that wraps a pointer to an unmanaged function. I want
|
| How to compile project by makefile ? | 24 Mar 2005 04:29 GMT | 1 |
How to compile project by makefile ? I downloaded a VC package. There is not project file, but only a makefile. Could you tell me how to compile this makefile? Thanks
|
| Copying objects | 24 Mar 2005 03:02 GMT | 2 |
I do in fact feel rather stupid asking this question, but I will ask nonetheless: What is the correct way for performing a memberwise copy of an object under Managed C++?
|
| floating point inaccuracies | 24 Mar 2005 01:39 GMT | 1 |
Try putting this in your code: double x(.008) ; // 8/1000 double y(.064) ; // 64/1000 double z(x+y) ; // 72/1000 ?
|
| Newbie questions | 23 Mar 2005 23:55 GMT | 4 |
I'm a total VC++.NET newbie and I'm stuck with a couple of stupid problems. - I have a filled ListView. I'd like to select(or focus) an Item from code, but I can't find a way to do it. I
|
| Managed C++: The application failed to initialize properly (0xc000007b). Click on OK to terminate the application. | 23 Mar 2005 21:20 GMT | 4 |
I've been trying to convert a Standard C++/MFC application to Managed C++/Forms (the application is pretty complex but the GUI is just a simple status dialog). I created a new project shell and have been slowly adding in new code.
|
| "not the pdb file that was used when this precompiled header was created" | 23 Mar 2005 18:15 GMT | 2 |
I am working on a Managed C++ project and I get the following error: TestThread.cpp(3) : error C2859: c:\projects\ProjectName\debug\vc70.pdb is not the pdb file that was used when this precompiled header was created, recreate the precompiled header.
|
| Accessing raw values in a vector | 23 Mar 2005 11:25 GMT | 3 |
In unmanaged C++, I need to allocate an "array" of int values, put values into the array, then call a function and pass it the address and length of the array. The length of the array is only known at run-time, so I assume that my best course of action is to use a std::vector ...
|
| Intellisense and template functions | 23 Mar 2005 07:18 GMT | 2 |
I declared a templatized function in a .hpp file in Project_A. If I insert a reference to that function somewhere in Project_A, intellisense gives me the function signature. Now, in Project_B, I've included the path to Project_A's source files in the
|
| Can Mixed mode Be deployed w/ one touch? | 23 Mar 2005 01:06 GMT | 1 |
Can a program w/ managed and unmanaged code be deployed over the web w/ one touch (or is it no-touch) deployment. Ya know when you clink in a link to it and it runs on the client's machine from a web server.
|