0
votes
2answers
3k views
WinDbg, with minidump from native 32-bit app crashing on 64-bit Windows, won’t load symbols for system DLLs
I've got a minidump file from a crash in one of our apps. It's a 32-bit native app, and it was running on 64-bit Windows.
If I load the minidump file into WinDbg, WinDbg won't load the symbols for …
1
vote
3answers
2k views
How do I resolve “%1 is not a valid Win32 application”?
Environment:
Windows Server 2003 R2 Enterprise 64bit, SP2
.NET framework is supposedly installed (2.0 SP2, 3.0 SP2, 3.5 SP1)
I say "supposedly" because they are listed as installed under Add/Remove …
2
votes
2answers
44 views
Exceptions ignored in form_load for x64
When I throw an exception from form_load in my C# application it doesn't work when the platform is x64. (it acts as expected for x86)
When I step through the code, I get to the line where the …
0
votes
2answers
161 views
How to get environment variable in 64 bit Windows?
Is there any way to retrieve the environment variable in 64 bit machine.
I already have %abc% which returns me variable in 32 bit machine, but doesn't work in 64 bit.
My Mistake:
How can I get …
0
votes
2answers
71 views
how to fix the error c2118: negative subscript
Again, porting 32-bit app to 64-bit. I get the negative subscript error on the C_ASSERT statement mentioned below..
C_ASSERT (sizeof(somestruct) == some#define);
I also read the …
1
vote
1answer
53 views
VC++ CLI application 32 - 64 bit CString question
SO, I am in the process of resolving the port of a 32bit app to 64 bit. When I compile for x64 I see a warning come up for the line
`
CString sig;
sig = "something";
sig = sig.left(strlen(something …
1
vote
3answers
137 views
How can my Perl script know it is running under Win64?
How can I have my Perl script detect it's running on a 64-bit Windows machine, even if it's a 32-bit perl?
0
votes
2answers
172 views
SHGetSpecialFolderPath, how to access 64bit CSIDL from 32bit application
Is there a way from a 32bit application running on a 64bit system to have access to the default folders for 64bit applications?
For example, using SHGetSpecialFolderPath with CSIDL_PROGRAM_FILES from …
2
votes
2answers
83 views
x64 va_list in Visual Studio 2005
I have a class non-static member function, and it has variable arguments, I'm compiling on Visual Studio 2005, with the 64-bit runtime, on 64-bit Windows.
void Class::Foo(void* ptr,...)
{
va_list …
5
votes
6answers
480 views
How to use “GS:” in 64-bit Windows Assembly (eg, porting TLS code)
How can an user-space program configure "GS:" under 64-bit Windows (currently XP-64)?
(By configure, set GS:0 at an arbitrary 64-bit linear address).
I am trying to port a "JIT" environment to X86-64 …
0
votes
1answer
99 views
Reliably detecting OS architecture in a Windows Desktop Gadget
I have some Javascript code that will programmatically register an COM interop assembly by writing all the necessary keys and values to the registry. An older version of this COM object was written …
0
votes
2answers
146 views
Running a Data Synapse Win32 DLL Grid Node on a Windows 64 Machine?
We are developing a Data Synapse calc node process in C# that requires functionality in a Win32 DLL. We have no problems building this.
The question is it has to run on a Windows 64 bit system, with …
1
vote
3answers
547 views
Compiling with Delphi 2009 from a command line under Windows Vista 64-bit
Has anyone succeeded to compile a Win32 GUI app with the command line dcc32.exe compiler, under 64-bit Windows Vista, without installing Delphi 2009? On our system it fails, with a message that the …
2
votes
4answers
461 views
Using ImageList from VB6 application causes crash on Windows 7.0 64-bit
I have an old VB6 application that uses an ImageList control from COMCTL32.OCX ("Microsoft Windows Common Controls 5.0 (SP2)") to provide icons for TreeViews and ListViews.
The app won't even launch …
3
votes
3answers
474 views
Loading a 32-bit process in a 64-bit environment.
I have a couple of questions as below. CHM is (Compiled HTML File)
My CHM file has a link to launch a 32-bit application. The CHM file is coded in Javascript.This works fine in a 32-bit OS …
