|
What can be done in VC++ (native) that can't be done with VC#?
From what I can tell the only thing worth using VC++ native for is when you need to manage memory yourself instead of the CLR garbage collector, which I haven't seen a purpose in doing either...
Started by Phillip on
, 15 posts
by 15 people.
Answer Snippets (Read the full thread at stackoverflow):
You can screw things up much more....
Is C# in particular and .NET in general self compiling yet (this is not a troll, I genuinely don't know)? If not, you can use VC++ to write C# and .NET, but you can't...
By side instances of the runtime.
|
|
I am told that the .NET in VC++ 2010 will slow down the application compared to if the application is written in VC++ 6.0. Can you please comment on this?
Started by ajaxsql on
, 36 posts
by 3 people.
Answer Snippets (Read the full thread at microsoft):
Can you that the speed becomes slower ....
Maybe you want to compare two unmanaged applications? I am told that the .NET in VC++ 2010 will slow down the application compared to if the application is written in VC++ 6.0.
That doesn't add up.
|
|
I have a native VC++ project that uses a dll (which is not in a project). Now, I must to put the dll in one the "Search Path Used by Windows to Locate a DLL" link
but I don't want the dll to sit in the exectuable or current or windows or system directory...
Started by Hanan on
, 8 posts
by 8 people.
Answer Snippets (Read the full thread at stackoverflow):
When debugging in VS the appPath doesn't 'work' use properties->debug-&... .
If you know where the DLL is likely to be located, you could attempt to load it at runtime using that, changes the environment variable PATH only in this process.
|
Ask your Facebook Friends
|
I have an annoying problem which I might be able to somehow circumvent, but on the other hand would much rather be on top of it and understand what exactly is going on, since it looks like this stuff is really here to stay.
Here's the story: I have a ...
Started by Pukku on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
Since you've already applied to the DLL version of the MSVC ....
To a Boost DLL that itself links to the wrong C++ runtime (there's also this page , do a text search the boost::posix::time library links against the unpatched C++ runtime.
|
|
I'm migrating a solution from visual studio 2005 to visual studio 2008. When I build the solution in 2005, I don't have any issues. However, after I use devenv.exe /Upgrade and then use msbuild on the solution, I get the following warnings:
CSC : warning...
Started by Mike Caron on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
runtime libraries?
Refer to here and see if it helps: http://msdn.microsoft.com/en-us.
|
|
I have one std::list<> container and these threads:
One writer thread which adds elements indefinitely.
One reader/writer thread which reads and removes elements while available.
Several reader threads which access the SIZE of the container (by ...
Started by David Alfonso on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
It will come.
The STL in VC++ version 6 level for your version of thread library and C runtime, please do not code this way.
Concurrent / thread-safe containers for vectors, hash maps and queues .
|
|
Hi Ralf,
Thanks for the information. I have contacted the Windows fusion team to
investigate this issue. However, we created a test sample that worked on a
Windows Server 2008 machine:
*The sxstrace did show the config file being used.
*We were able...
Started by v-fengch@online.microsoft.com on
, 14 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
Application Configuration File for using CRT locally in
VC++ 9
| thread-index: Acjc8gVZFxsKGFtDR4;JroIcMN3IHA.1620@TK2MSFTNGHUB02.phx.gbl| Subject: RE: Application Configuration File for using CRT locally in VC++
9 in the
comments to....
|
|
On Tue, 8 Sep 2009 07:19:01 -0700, Rose B <RoseB@discussions.microsoft.com
Hi,
I am just starting to 'dip my toe in the water' with Access 2007 Runtime and
have come across two immediate problems - that I am sure someone out there
has an answer...
Started by Rose B on
, 6 posts
by 3 people.
Answer Snippets (Read the full thread at omgili):
A runtime and
tested (albeit onlt on my PC at the moment) in a different folder and it
worked great/AlbertKallal/RunTime/Index.html
And, for a good discussion of other ideas for deploying updates=&sb=5&o=&fpart=1&vc=1
--
Albert....
|
|
On Tue, 11 Nov 2008 05:57:39 -0800, Wyne <Wyne@discussions.microsoft.com
Hello,
I have a VB6 program shipped to a customer. He installed it on a XP Pro PC,
from an Administrator account, and run it from this account. Everything OK.
Then, when...
Started by Wyne on
, 8 posts
by 4 people.
Answer Snippets (Read the full thread at omgili):
In a limited
user environment and shows if you are writing to locations that only Power
Users and higher have download and use the following
tool regardless of whether you have VC or not:
Debugging Tools.
|
|
On Sun, 1 Feb 2009 04:54:58 -0800 (PST), alex_rp <a.tappe@googlemail.com
Hi everyone,
I wrote a small Win32 console application a couple of years ago,
at work, using Borland C++ Builder. I managed to make the *exe*
"self-contained", I can move ...
Started by alex_rp on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at omgili):
I regularly use ....
If you use a .NET language, your executables will be
dependent on the .NET runtime.
A.tappe@googlemail.com
clip
The IDE/build environment has little to do with whether an executable
will be stand
on that library.
|