64bit

How to enable utility control point in SQL Server 'Standard Edition (64-bit)'?

I was trying to register a 64 bit machine under new Utility control point name, get the following "The SQL Server edition must support UCP creation. Validation failed. The specified instance of SQL Server cannot be used as a utility control point because the feature is not enabled in SQL Server 'Standard Edition (64-bit)'. For more info...

32 bit OLE DB driver on 64 bit windows 7

Hi. We are running 64 bit windows 7 with 64 bit office 2010. We have a custom 32 bit OLEDB driver installed but it doesn't show up in the list of data providers when trying to import data into Excel. I've heard that 64 bit and 32 bit don't go well together and that you need to run 32 bit drivers inside the wow64 emulator but how can w...

Error in running "select * from CIM_VideoControllerResolution" on windows server 2008

Hi, I cannot run following WMI query on Windows server 2008 64 bit select * from CIM_VideoControllerResolution tried verifying from WMI explorer plz hlp how can i run this query Abdul Khaliq ...

Open-source static code analysis tools for C++

Possible Duplicate: What open source C++ static analysis tools are available? Which open-source static C++ (not just C) code analysis tools are most suitable for porting code to 64-bit platforms? ...

How to build IccLib for 64 bit windows

I am trying to build IccLib for x64 bit windows but I am having problems finding any help to do so. Does anyone have experience with it? Thanks ...

.NET 3.5 Web Application - Porting to 64Bit - Potential issues

Hi, I have an existing ASP.net 3.5 web application. This is tested and working in a 32 bit environment. There is a plan to move this application to a 64 bit environment. As a first step, the plan is to compile the entire application in "Any CPU" Is anyone aware of any plan / checklists that can be used in porting from 32-bit to 64-bit...

Debugging 32 bit asp.net app in on Windows 7 64 bit

On my development machine I am running IIS7 on Windows 7 64 bit and enabled "Enable 32-bit Applications" so i could use Ionic rewrite module. The problem is that under this configuration even though I attach to the right process my breakpoints will not get hit. Taking a closer look at the "Attach to Process" dialog I noticed that all oth...

Does Lua make use of 64-bit integers?

Does Lua make use of 64-bit integers? How do I use it? ...

What development tools can build 64 bit programs for Windows x64 and/or Mac?

Delphi does not yet support building 64-bit applications. What common tools are there for building native 64 bit programs, especially with an IDE? For instance, I believe that Visual Studio supports this. Anything else? ...

Crystal Reports on Windows 7 64bit with C++

Hi, i have a qt application that opens a Crystal Reports window. this applications works in WindowsXP 32bit but does not work on Windows7 64bit. I see a blank/emty white screen. i even cant see the buttons of crystal reports. i make another project in C# that opens a Crystal Reports window on Windows7 64bit and it works fine. do you...

[C++] Skipping Incompatible Libraries at compile

When I try to compile a copy of my project on my local machine, I get an error stating that it 's skipping over incompatible libraries. This isn't the case when I'm messing around with the live version hosted on the server at work [it makes perfectly there]. Various other sites have lead me to believe that this might be an environment ...

Why is creating a 64bit Delphi so hard?

The Internet is full of developers requesting a 64bit Delphi, and users of Delphi software requesting 64 versions. delphi 32bit : 1.470.000 pages delphi 64bit : 2.540.000 pages :-) That's why I've been wondering why Embarcadero still doesn't offer such a version. If it was easy to do, I'm sure it would've been done a long time ago...

32-bit Java on 64-bit OS: is there a limit to number of JVMs?

I have a Solaris sparc (64-bit) server, which has 16 GB of memory. There are a lot of small Java processes running on it, but today I got the "Could not reserve enough space for object heap" error when trying to launch a new one. I was surprised, since there was still more than 4GB free on the server. The new process was able to succe...

How do I specify 64-bit machine architecture when building boost libraries with bjam on solaris?

That's the question. Thanks in advance. ...

COM Client/Server cross 64/32 bit processes

On a 64-bit machine: Can a 64-bit application call a COM server (out proc) which is running in 32-bit process? What about vice versa? (32 bit app calling 64-bit COM out proc server) Thanks! ...

Supporting 64bit OS which currently works in 32 bit OS.

I have an application which has many services and one UI module. All these are developed in VC++ 6.0. The total KLOC would be 560 KLOC. It uses Mutltithreading,MFC and all datatypes like word,int, long. Now we need to support 64bit OS. What would be the changes we would need to make to the product. By support i mean both like running...

Can I use an api for 64-bit drivers in a win32 C++ project?

So I'm trying to get this nuclear instrumentation hardware to work. I have installed 64 bit drivers (I'm using Windows 7 64 bit) and I have downloaded the dll's that go with it. When I add the dlls and try to use the functions in a win32 console application project in visual studios, it gives me a linker error: Error 1 error LNK2...

Which variation of Windows 7 (32/64) has a foreground window activation bug?

Recently I developed a program that should run a process and make it foreground. Everything was ok except for one case: when there's a full-screen application active currently, the one that due to non-captioned styles and screen dimensions hides tasbar and fills all the area of the screen. In this case in Windows 7 the running applicatio...

JVM configuration on 64-bit Linux

I have a server application that runs on 64-bit Ubuntu server with 4Gb RAM. When I set JVM (We use Sun JVM 1.6) configuration parameters like this: -Xms1024m -Xmx2560m, I see a strange memory allocation when starting the application (It runs on Tomcat 6). Ubuntu's "top" command shows that the virtual memory size is almost 3,2Gb. I don't ...

Java, 64-bit, JNI - compared to .Net CLR

.Net assembly PE Header has a target platform for 32-bit / 64-bit which is used when the assembly use native interop like p/invoke (other wise it would be Target=AnyCPU) Is there any equivalent for Java when the Java application has an interface to some native interface through JNI? The JNI has to be either compiled for 32 or 64 bit I...