| Thread | Last Post | Replies |
|
| .NET MFC new class wizard problem | 05 Aug 2004 06:24 GMT | 3 |
Here's my senerio -- I create a dialog resource -- Then I do an 'Add Class' specifying an MFC class with a CDialog base class. Now the Wizard goes into a loop asking me to check out lots of my project files (maybe 50 files). And it won't let me quit this until it iterates thru this ...
|
| how to free object | 05 Aug 2004 05:53 GMT | 1 |
how do I release a reference to an object so that the GC will remove it from memory the next time it collects ? in C#: myObj = null;
|
| HOW: Including native DLL in assembly? | 04 Aug 2004 17:04 GMT | 5 |
I'm currently working in a mixed mode project where the exe is C#, there is a managed C++ (DLL) assembly, that in part, includes some calls into a native (unmamanged) DLL. I can build/link/run just fine, the question isn't about that.
|
| Simple managed app won't work... | 04 Aug 2004 13:49 GMT | 3 |
Excuse me if you consider this a cross post, however, it was originally destined for this group not the vc.atl group, but somehow it went there instead of here! (obviously it was something I did, but hey ho) ... now back to the problem in hand I've made what I consider to be the ...
|
| The developer world ready for .NET? | 04 Aug 2004 13:17 GMT | 6 |
I have the impression that about half of the questions posed here are .NET related. Does that mean that the world of C++ developers is finally moving to managed code and reducing the unmanaged code?
|
| VC++ namespace | 04 Aug 2004 12:37 GMT | 2 |
Am I right in assuming that a managed C++ namespace definition can't include the period, unlike C#? e.g. namespace myApp.Diagnostics -> causes syntax error whereas the above compiles ok in C# Thanks
|
| a.exe uses b.dll uses c.dll search path problem | 04 Aug 2004 08:47 GMT | 5 |
We have this situation: We have a unmanaged c++ executable located in a certain folder (a.exe) It loads a mixed mode managed/unmanaged dll using MFC dynamically from a completely different path (b.dll)
|
| properties and assignment | 04 Aug 2004 07:07 GMT | 1 |
I have been reading about the proposed changes for C++/CLI and they look great. There is one thing that currently does not work well that I would like clarified. A managed C++ property can be assigned or accessed using the get_ and
|
| LINK : warning LNK4243: DLL containing objects compiled with /clr is not linked with /NOENTRY; image may not run correctly | 03 Aug 2004 23:08 GMT | 1 |
When I compile my "mixed-mode" C++ dll in Release mode, I get these warnings - LINK : warning LNK4243: DLL containing objects compiled with /clr is not linked with /NOENTRY; image may not run correctly
|
| Linker error __argv, __argc, __mbctype | 03 Aug 2004 22:49 GMT | 2 |
I'm getting the following linker error when I try to build a library. nafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argv nafxcw.lib(appcore.obj) : error LNK2001: unresolved external symbol ___argc nafxcw.lib(apphelp.obj) : error LNK2001: unresolved external ...
|
| DOM object is string format | 03 Aug 2004 21:11 GMT | 2 |
I am using .NET2003 and have a question about XML DOM conversion. I have a XmlNode that I want to convert into a String respresentation including all its attributes and children. I see how to use a xmlTextwriter to output the data inot a file. Any ideas as to how to
|
| Using VC6.0 debugger to debug native application built with VC++ 2003 | 03 Aug 2004 15:40 GMT | 1 |
I have some projects (native - not managed code) in VC++ 2003. I'm trying to debug that stuff on Win98 system that has VC6.0 installed. Is it possible to use VC6.0 for debugging code built with VC++ 2003? I know that remote debugging with VS 2003 can be used in this scenario.
|
| String to char | 03 Aug 2004 13:19 GMT | 2 |
I am trying to convert a String to a char to save to a file using fwrite(), doing it this way because of some existing code that I am using. Is there a cast in .NET that will change the unicode to a char? Thanks
|
| evaluating a mathematical function | 03 Aug 2004 07:39 GMT | 1 |
Hi all; I want to have some utility that will evaluate an expression like: 7+sin(x*7)+x...and return the result...i think that i must build my own parser...if this is the case can any one show me where i can find some free code about parsers? thanks indeed for your help.
|
| Managed C++ & COM | 02 Aug 2004 23:18 GMT | 2 |
I wrote a managed C++ class that makes COM calls to INetConnectionManager to enable/disable network connections. Unfortunately, the following call seems to fail with a result of -2147417843 when calling this managed code from any .Net application. The line that fails is:
|