version

what is style.css?ver=1 tag??

Hi, I found out that some websites use css tag like style.css?ver=1. What is this?? What is purpose of ?ver=1 How do I do it in code? ...

how could i know the version of an another application using c#

hello, i need to write a program in c# to collect information about processes running on my computer. I successfuly get the processes's names and ID using this code: ... Process[] processlist; ... foreach (Process theprocess in processlist) { Console.WriteLine(theprocess.ProcessName + ...) ...

compile for 3.0 with optional support for 3.1 API

My app uses the camera, and I added the zoom function thanks to 3.1 API (cameraViewTransform most importantly). But I want my app to run also on 3.0 (without the zoom of course). The problem is that, I cannot compile the app in 3.0 due to this line which calls 3.1 properties: CGAffineTransform initialTransform = photoPicker.cameraViewTr...

How to determine installed Windows Edition using .net

System.Environment.OSVersion does not appear to indicate which Edition of Windows 2003 is installed (Standard, Enterprise, DataCenter). Is there any way to access this information using managed code only? I know I can use P/Invoke to call GetVersionEx and examine OSVERSIONINFOEX.wSuiteMask to get this info, but I'm looking for a simple...

What is the difference between the different Ruby 1.9 builds?

Hello, There are quite a few versions of Ruby 1.9 floating around. There are a few Ruby 1.9 builds for the different operating systems at the official Ruby language site here: http://www.ruby-lang.org/en/downloads/ There are also other 1.9 versions at Ruby Forge: http://rubyforge.org/frs/?group_id=167&release_id=38052 What are the...

Is it still Python 2.6 versus Python 3?

G'day, I'm wanting to go back to Python after not using it for a while and I saw this question "Python Version for a Newbie" while wondering about getting back into Python 2.6 or Python 3. Almost all of the questions' answers were along the lines that most of the code out there, libraries, legacy systems, etc., is 2.5 or 2.6 rather tha...

PHP - How to check a script version

Hello folks I have a small script and want to detect the script version from admin footer. On the admin footer.php I put this code. <?php define('VERSION', '1.0'); $fp = fopen("http://v.domain.com/version.txt", "r"); while ($line = fgets($fp)) { $line; if (VERSION != $line) { ?> <div id="upgrade"> <a href="http://doma...

Get Custom File Version Info from a Native binary using C#

I've got a bunch of native (C++) binaries that I want to scan and retrieve version information about from a C# console application. Using System.Diagnostics.FileVersionInfo I am able to get the actual version strings, company name, etc. However there is a "Build Date" string in there (which is shown by the Windows File Properties "Vers...

How to get a list of binaries located in particular folder with their versions (using command line in Win XP) ?

I would like to get a list like below: a.dll 1.0.0 b.dll 1.0.1 c.dll 1.0.2 ...

DllGetVersion not giving expected results under Windows 7

Hi, I have some code that attempts to test whether my application is running with the themes set. Here's the C# code: internal class NativeMethods { [DllImport("comctl32", CharSet = CharSet.Auto, SetLastError = true)] internal static extern uint DllGetVersion(ref DLLVERSIONINFO pdvi); [StructLayout(LayoutKind.Sequential)] ...

How do I retrieve the version of a file from a batch file on Windows Vista?

Binary files have a version embedded in them - easy to display in Windows Explorer. How can I retrieve that file version, from a batch file? ...

How to determine Delphi Application Version

Want to obtain Delphi Application build # and post into title bar ...

How do I get specific versions of the .NET runtime for use in windbg?

I am debugging an old process dump from one of our servers. It was created about a month ago. To work with SOS, I need version 2.0.50727.4016 of mscorwks.dll and mscordacwks.dll for the AMD64 architecture. Is there some official place to get these dlls? I found one question on StackOverflow that somewhat addresses the issue, but the sol...

How do I fix "no symbol version for module_layout"?

I'm trying to compile the nvidia driver and the VirtualBox drives on openSUSE 11.2. Both compile fine (after the usual make oldconfig plus a partial build of the kernel) but when I try to load the modules, I get this error: vboxdrv: no symbol version for module_layout What's wrong? How do I fix this? ...

ASP.NET 2.0 or 3.5?

There was a time that I thought the current non-beta ASP.NET claimed the version number of the current .NET CLR (2.0), even though the .NET Framework was version 3.5. Whenever I saw "ASP.NET 3.5", I felt that whomever had written it was incorrect. However, I'm starting to feel that I'm incorrect. Has the official ASP.NET version number ...

Python2.x to 3.x conversion

Is there any tool available to automatically convert Python 2.x scripts to Python 3.x? Or do you still have to convert it manually? 2.x-3.x auto-converter would be really helpful (to everyone else too, I guess). Ofcourse I'm not looking to convert large programs, just about 8-10 modules. Thanks ...

How do I find out which JAXP implementation is in use and where it was loaded from?

I would like to provide diagnostic information about what JAXP implementation is in use, and which JAR file it was loaded from. One way to achieve this is to create in instance of, for example, a DocumentBuilderFactory, and then inspect the properties of that class: private static String GetJaxpImplementation() { DocumentBuilderFac...

Finding the version of OSX inside java

I need to test if the version of osx is < 10.5 inside java is this possible? ...

What version of Java is realistic to expect on a client/browser?

I'm planning to develop an applet-based application that will be used by "average Jill" non-technical users (classical musicians, to be precise). What version of Java can I realistically expect those users to have installed in their browsers? Is 1.5 safe? I know Microsoft hasn't bundled Java with Windows in years, but do most OEM Windows...

Why does version number header not get read in Visual C++?

I want to have a version number string in my source files to keep track of the source version used for the build. I thought I had a solution for this, but it doesn't work consistently and I cannot figure out why. The number I want to use is the subversion version as output by the svnversion command. I have written a Python script whic...