version

Synchronizing Version Resources in Visual Studio C++ (Win32) Projects

I've got a solution with about 8 separate projects in it and every time I do a release build of the entire solution I need to make sure that the version string for the binary output of each project is the same. Is there an easy way to synchronize the VS_VERSION_INFO section of a project's resources file? ...

Can I detect the Java version from native c++

I'm writing a complex setup/installer application in native C++/MFC. I would very much like to be able to detect the version of Java that is installed (if any). Is this possible, and so, how? ...

How to find the version of a Crystal Report rpt file?

I have a Crystal Report file from an old version (unfortunately I don't know and cannot find out easily which version was used) and I need to do changes in that RPT file. I would like to find out which version is the RPT file so I can install the proper version of the editor. If I install the all new and latest version, when I save the ...

Question about SubSonic and a question about dateTimePicker control on a Windows Form

Question #1: Latest working Version I'm currently using SubSonic 2.1 built 491. Is there a later built? Where can I get it? I know 2.2 was released but it doesn't come with a Setup and I wouldn't know how to modify the App.Config/Web.Config to work with it. Question #2: Issue with dateTimePicker control on Windows Form. I keep getting ...

What version of .NET ships with what version of Windows?

Looking for a list of Windows versions (service packs included) and what version of .NET is natively1 available. Example: Windows A - .NET Framework Z Windows A Service Pack 1 - .NET Framework Z Windows A Service Pack 2 - .NET Framework Y 1 - Natively means that is there with no installs done. ...

How can I get the assembly file version

Hi Folk, The assembly version I can get with following loc: Version version = Assembly.GetEntryAssembly().GetName().Version; But how can I get the assembly file version? Thanks for help. ...

What does 4: mean in g++ apt-get install version string?

On EasyPeasy 1.1 (for mini notebooks) derived from Ubuntu I installed g++ using apt-get: $ apt-get install g++ One of the lines displayed was: Setting up g++ (4:4.3.1-1ubuntu2) ... What the does "4:" mean? $ g++ --version g++ (Ubuntu 4.3.2-1ubuntu12) 4.3.2 What is the relationship of the "4.3.1" in apt-get to the "4.3.2" g++ ver...

Next Full Release Date of ASP.NET MVC (MVC 1.1 / 1.5 / 2.0 anyone?)

Does anybody have an idea when the next version of ASP.NET MVC is scheduled for release? The Futures assembly has many features that are important (Asynchronous Controllers, invoke partial actions etc.), but I don't want to use beta/futures code in a production website - so, does anybody have an idea when the next version is about to co...

How do I programatically get the version of a dll or exe?

I need to get the product version and file version for a dll or exe using Win32 native APIs in C or C++. I'm not looking for the Windows version, but the version numbers that you see by right-clicking on a dll, selecting "Properties", then looking at the "Details" tab. This is usually a four-part dotted version number x.x.x.x. ...

Javadoc versioning

Hi I have a slight issue with the version numbering in my projects. Say for example that I have 4 classes One Two Three Four The first time that I release this software, it will be labeled as version 1.0.0 In my java doc comment, for all classes, I have it as @version 1.0.0 So now test sends it back with a bug in class Two I upda...

C# dll version conflict

I have a project like this: Test Solution Project TestApplication References: TestFunctions.dll(ver 1.0.0.0),Project TestDLL Project TestDLL References: TestFunctions.dll(ver 1.0.0.1) In the application when i make a call to TestDLL.Methodx() inside it calls TestFunctions.HelloWorld() but it gives a MissingMethodException because T...

Previous Versions/Builds of Internet Explorer

We write Web Applications. I have a client who is reporting an issue that seems that it may be related to a specific version of IE6. IE6.0.2900.2180 to be precise. Does anyone know where I can download specific historical builds of IE in order to test problems such as this? ...

increment version in .rc files

How I can automatic increment file version in my project. Is there any script for that (batch...)? Tnx ...

ASP.NET MVC: dealing with Version field.

I have a versioned model: public class VersionedModel { public Binary Version { get; set; } } Rendered using <%= Html.Hidden("Version") %> it gives: <input id="Version" name="Version" type="hidden" value="&quot;AQID&quot;" /> that looks a bit strange. Any way, when the form submitted, the Version field is always null. publi...

Preventing Installation of Lower Version over Higher Version

Greetings Friends, Coming straight to point; we have developed the project using InstallScript MSI Project in Installshield 2008 Premier Edition. In the project we have added a condition so that the older version should not be installed on Higher version and i got this info form the below link http://helpnet.acresso.com/robo/proj...Dow...

Eclipse plugin - wrong jar used on runtime

Hi, I have a serious probleam with my Eclipse Plugin.. My plugin depends on another two plugins. All of theese plugins (including my plugin) use Mozilla Rhino engine - two of them use js.jar (version 1.4). But my plugin uses new version, which is not released yet and is packed in MyRhino.jar. While developing, everything goes fine - c...

Incorporate Team Coherence version label into build

The accepted answer to this question suggests using an SVN revision number as part of the version number when building a release. I want to do something similar using Team Coherence, which doesn't do revision numbers quite the same way. For Delphi 2009 how can I set up a build script so that every release automatically includes a numbe...

WriteableBitmap unavailable?

I've discovered what may be the perfect answer to a question on buffered drawing, but for some reason my version of VS2008 doesn't seem to have a WriteableBitmap? I've tried including the relevent namespaces as per the documentation: using namespace System::Windows::Media; using namespace System::Windows::Media::Imaging; But that just...

SubSonic 2.2 "Version" Error

I have setup and configured to SubSonic to work with a C# application I am writing. I can generate the data wrapper classes and use them perfectly in my code, but whenever I get ready to script the schema out via the subcommander tool using the arguments "version \out FileLocation", I am getting an error (see error message below). It ...

A product release changes its library name, how to be compatible with old and new?

We have a product that uses a Reference from a 3rd party supplier. With the release of their new product they have renamed this Reference to a new name. What we want to do is have the one version of our application compiled so that it can run against both the old and new names of the library. There is basically no change, only 1 metho...