Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
3k views

Visual Studio Version Selector Doesn't open

I have Visual Studio 2008 and 2010 installed side by side, but trying to open either a 2008 or 2010 sln file results in nothing. The hour glass comes on for about a second and then it goes away and ...
6
votes
3answers
1k views

What are Side-by-side Assemblies?

I came across Side-by-side Assemblies for the first time today while trying to install a Debug install set to a test machine. I managed it in the end, but was left with several questions: Whare are ...
5
votes
3answers
18k views

Side-by-side configuration error (Microsoft.VC80.CRT v8.0.50608.0)

I have an assembly with the following manifest embedded: <assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0"> <dependency> <dependentAssembly> ...
4
votes
6answers
3k views

How can I target a specific version of the C++ runtime?

We have a very large project mostly written in C# that has some small, but important, components written in C++. We target the RTM of .NET 2.0 as the minimum required version. So far, in order to meet ...
3
votes
2answers
127 views

Can I safely remove ASP .NET MVC 2 from Visual Studio if I use ASP .NET MVC 3?

I'm trying to speed up my computer a little bit, and apart from these useful tips I'm trying to remove all Visual Studio extensions and add-ins that I don't use anymore. I noticed I have both ASP ...
3
votes
1answer
175 views

WiX project allowing side-by-side installation

I am in the process of creating an MSI for our product. I would like the product to be able to install side-by-side. So that I can install 1.0.0 first and later can add 1.0.1 so that the two versions ...
3
votes
1answer
1k views

Dependency Walker Error: The Side-by-Side configuration information for “ABC.DLL” contains errors

I am running a program that I built in Visual Studio 2010 which uses a third party DLL "ABC.DLL". I am on Windows 7 64-bits. However, it fails to run due to one DLL. When running Dependency walker on ...
3
votes
1answer
2k views

Problem using ‘useLegacyV2RuntimeActivationPolicy’ & supportedRuntime in an application

I've modified a couple of different applications' .config file like this: <startup useLegacyV2RuntimeActivationPolicy="true"> <supportedRuntime version="v4.0"/> </startup> ...
3
votes
1answer
748 views

Need insight into how manifest is being generated for C++ program

When I run an executable that I built, I get the following error: The system cannot execute the specified program My immediate thought was that it was a dependency problem with one of the VC8.0 ...
3
votes
1answer
631 views

Private Unmanaged Side by Side Assembly Problem

We have a large MFC application that uses a number of DLLs. So far we have been using vcredist_x86.exe to install MFC and the CRT into the unmanaged side by side assembly cache (C:\Windows\WinSxS). ...
3
votes
2answers
1k views

How to add manifest to a .NET DLL?

I have a c# class library project that uses a COM dll registered on the system. I now want to deploy the COM dll as a side-by-side assembly, so I don't have to register it, or interfere with other ...
3
votes
1answer
187 views

Can I install Sql Server 2008 on the same machine where Sql Server 2005 already installed

I have Sql Server 2005 Express installed on my computer, and I want to install Sql Server 2008 Express as well. What should I consider before doing this additional installation? thanks. bk
2
votes
3answers
114 views

R boxplot and stripchart side-by-side in 1 figure

Is it possible to plot a boxplot and a stripchart next to each other in the same figure? If I run this code, the stripchart overrides the boxplots. What i actually want is that they lay next to each ...
2
votes
0answers
704 views

Binary compiled for VS2008 needs DebugCRT side-by-side assembly, doesn't work in VS2010

Sorry for long post and bad english. I'm working with VS2010 on a project that uses Havok, and the latest release only has VS2008 and earlier binaries. The embedded manifest generated by VS contains ...
2
votes
4answers
798 views

How to get these two divs side-by-side?

I have two divs that are not nested, one below the other. They are both within one parent div, and this parent div repeats itself. So essentially: <div id='parent_div_1'> <div class ...
2
votes
1answer
401 views

Side-by-side (or registration free COM) and Delphi? [closed]

Possible Duplicate: Registration-free COM/DLL? I am supporting an application that uses a lot of ActiveX controls written in Delphi, primarily for aggregating applications together. These ...
2
votes
4answers
433 views

Side by side madness - running binaries on the same computer

Here's my configuration: Computer A - Windows 7, MS Visual Studio 2005 patched for Win7 compatibility (8.0.50727.867) Computer B - Windows XP SP2, MS Visual Studio 2005 installed (8.0.50727.42) My ...
2
votes
1answer
305 views

Loading a 32-bit or 64-bit side-by-side COM DLL depending on the bitness with which the application runs

I have a .NET application that uses a COM DLL, of which there is both a 32bit and a 64bit version. I have written two application manifests that make side-by-side COM interop work on either 32 Bit or ...
2
votes
5answers
1k views

CSS: How to get two DIVs side by side with automatic height, to the height of their container?

I am designing a website for a client, and I am trying to get two side-by-side DIVs to adjust to 100% of their container. I've got the side-by-side done, but I can't get the right DIV to be the same ...
2
votes
2answers
512 views

FSharp.Compiler.CodeDom for VS2008 and VS2010 side-by-side

I'm using FSharp.Compiler.CodeDom (from the PowerPack) to dynamically create F# classes. The problem is, that I have both VS2008 and VS2010 on my computer side-by-side (they works fine), and using F# ...
2
votes
2answers
2k views

Migrating legacy ASP.NET to MVC 2 (RC): HttpApplication events not firing, User principal is null

Problem I am trying to take an existing ASP.NET web application and manually migrate it over to use MVC 2 (I am currently running the RC). I followed several steps (I'll list in a moment) and seemed ...
2
votes
1answer
2k views

Side-by-side assemblies, Windows 7, and Visual Studio 2005

I have a Windows 7 machine with Visual Studio 2005 SP1 installed. Using this, I build an application which loads a DLL at runtime compiled with VS2005 SP1 but on Windows XP. This fails, with the ...
2
votes
1answer
1k views

Howto: Multiple versions of msvcrt9 as private SxS assemblies?

I have a project that comprises pre-build Dll modules, built some time in the past, using Visual Studio 9. The EXE of the project is built now, using SP1 of Visual Studio 9. When we deploy the EXE ...
2
votes
2answers
733 views

Registration-free COM not working on Windows Server 2003

I have created the necessary manifests for my COM server DLL and a client application to work registration-free in Windows XP. I've tested all kinds of combinations (with and without a registration) ...
2
votes
2answers
2k views

Windows path searching in LoadLibrary with manifest

If you call LoadLibrary without a path (e.g., LoadLibrary("whatever.dll"), Windows will generally follow its standard search algorithm, the same one it uses to find EXEs. My question is this: suppose ...
1
vote
1answer
208 views

Install Shield- Merge module dependency issues. Dll is not registering

My Issue: I have created two merge modules. Lets call them A and B. Merge Module B is dependent on A. A installs aaa.dll to windows side-by-side. B contains bbb.dll which registers during ...
1
vote
2answers
90 views

How to fit two divs side by side horizontally?

How to sit two divs side by side horizontally using css, where the direction of the container DIV is from right to left ?
1
vote
1answer
201 views

Format SVN diff as a side-by-side comparison

I wanted to produce a side by side SVN diff instead of the usual SVN diff output. Is there any way to get this sort of output ?
1
vote
1answer
81 views

How to install unmanaged shared side-by-side assembly [closed]

As a proof of concept I am trying to install dummy DLL as a shared side-by-side assembly. I have created a .dll vith embedded version info resource, created manifest and .cat file, and used sxs.dll ...
1
vote
1answer
43 views

How can I force to use specific version of Xcode or opening project/workspace file?

I installed Xcode 4.2 beta side-by-side, and now all project/workspace files are linked to newer version of Xcode. So beta Xcode opens when I click the project file by double-clicking in Finder. I ...
1
vote
2answers
294 views

side by side multiply histogram in matlab

I would like to produce a plot like the following in matlab. Or may be something like this
1
vote
1answer
110 views

Deploying Visual C++ library DLLs as private assemblies

This page has instructions how to deploy a local copy of VC++ 2008 libraries with your app, to avoid having to install 3rd-party vcredist. This is useful to me because it would let me send a zipped ...
1
vote
1answer
93 views

How to layout two ios UITableViews, side by side?

I have a customer who wants a view layout that contains both the typical full-width grouped-style rows, but then also another section on the same view that contains two side by side table views. So, ...
1
vote
2answers
226 views

Visual c# project fails to run due to different versions of the same assembly

My c# application uses two different pre-packaged parsers, that each use a different strong version of Antlr.Runtime.dll. The application throws a FileLoadException, apparently because it correctly ...
1
vote
4answers
207 views

.Net 'Any Framework' configuration

I built a program in C# .NET 2.0 that works great also under framework 3.0 and 3.5. But if .NET Framework 4.0 is the only framework installed, it does not working, it requires the user to install ...
1
vote
1answer
490 views

OLE Error 80131522 when trying to access a .NET assembly side by side from a native application

I have an application (Delphi Native code) that needs to access a .NET assembly (exposes a few COM classes. I want to do this using side by side assemblies and manifests. I have done this with a test ...
1
vote
3answers
409 views

How to cope with “the application has failed to start because its side-by-side configuration is incorrect” error in vmware?

When I try to open released .exe file (which I wrote in Visual Studio 2008) in VMWare Workstation 6.5 with Windows Server 2008 32bit OS, got "The application has failed to start because its ...
1
vote
2answers
985 views

msvcp90d.dll is missing msvcr90d.dll

I had a DLL project on one machine, and copied it to another with freshly installed VS2008. The project builds, but I cannot debug it. Dependecy Walker shows that my DLL sees msvcr90d.dll, but ...
1
vote
1answer
602 views

Use Manifest Tool (mt.exe) to Change “Version” of “Unmanaged Assembly”

Now that native code can have assemblies (e.g. "unmanaged assembly") for side-by-side cache usage, I'm interested in changing the version of a DLL after it is built (as part of an incremental build ...
1
vote
2answers
2k views

.NET 3.5 runtime and .NET 4 runtime compatibility

Is it possible to run an application built on .NET 3.5 with a plug-in built with .NET 4? Cheers, Christian
1
vote
1answer
83 views

What happens if a .NET 1.1 and .NET 2.0 COM object are used in the same process?

If a process loads both a .NET 1.1 COM object and a .NET 2.0 COM object, both using an in-process server, what happens? Does anything break with this configuration? Or would it be safer to make one of ...
1
vote
2answers
202 views

Any drawbacks in using LoadLibraryEx() instead of CoCreateInstance() for reg-free COM component consumption?

Our program needs to consume the COM server which is also made by us. The scenario is the following: the installer will copy both the program files and the COM server files into the same folder on ...
1
vote
1answer
36 views

Can I use manifests to consume a COM server without specifying its version?

Two of our programs use the same COM server (also made by us) with the same class ids. Each program when installing copies the COM server files into its folder and regsvr32s the COM server. The ...
1
vote
1answer
237 views

.NET 4 side by side problem

If the host program is compiled with .NET 4, but a referenced dll is .net 3.5. Then the target deploy machine need to install both .net 4 framework and .net 3.5 framework runtime?
1
vote
0answers
754 views

Is possible to make mt.exe embed manifest files correctly in Visual Studio 2008?

I found that mt.exe fails to correctly create and embed manifest files into executables when run inside a VCPROJ. For example the same executable load well on Windows 7 but failed to load on Windows ...
1
vote
1answer
145 views

Wordpress Posting News Items Side By Side, Not Stacked

I am designing a site with wordpress. My index page keeps posting news items side by side, and nomatter how I try to modify my code, it will not place a break between the two. To see what I mean, ...
1
vote
4answers
264 views

SideBySide error on another computer with MSVC++ 2005 installed

I'm having some strange issues building and running a project on another computer. It's a side-by-side error. Usually the cause is that c++ redistributable is not installed on the machine etc. ...
1
vote
2answers
274 views

website intermittently available - application pool 1.1 and 2.0 issue

I was having a problem with my .NET 1.1 website which was hard to track down. The default page would show up but when the user entered credentials, it would just be as if nothing happened and the ...
1
vote
1answer
481 views

Registration-Free Activation of COM Components

Does this example for Registration Free Activation still work in VS2008 and Windows Vista/7? http://msdn.microsoft.com/en-us/library/ms973913.aspx I haven't been able to get it to work. But I was ...
1
vote
2answers
789 views

ruby openssl.so: 14001 error

When trying to run a simple ruby program I wrote, I am getting this error. Just reinstalled everything the other day, before the code was working fine. ruby/1.8/i386-mswin32/openssl.so: 14001: The ...

1 2