Re: Vista problems
- From: "Jeff Hamblin" <jeffhamblin@xxxxxxxxxxx>
- Date: Fri, 18 May 2007 18:35:56 -0700
"Ed Dressel":>I am having serious problems with Vista. Can't figure out
why--I have my own
machine and everything works fine. But a couple of my users have problems
when opening my app in Vista.
On one machine, that I have logged onto remotely, it seems that at least
one of the file I install (a database file whose data is owned by us--is
not edited at all by the end user) does not get updated--it always
installes the old version. He has allowed me to delete everything that I
know how to--but when I install, the new EXE is there, and the old
database get's installed. (This sounds like I simply am losing it).
Sounds like a VirtualStore problem. Put a Vista section into
an XP manifest in your app. That will disable the VirtualStore.
You might get some errors but at least you'll have some hard
info to work with.
You probably need to put your database file in a writeable
location.
Here is an example of how to create and embed a manifest:
In Main unit:
{$R WinManifest.RES}
Command to compile the resource:
brcc32 WinManifest.rc
"WinManifest.rc" file contents:
1 24 "Win.Manifest"
"Win.Manifest" file contents:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
<assemblyIdentity
name="CompanyName.AppName"
processorArchitecture="x86"
version="1.0.0.0"
type="win32"
/>
<description>AppName</description>
<dependency>
<dependentAssembly>
<assemblyIdentity
type="win32"
name="Microsoft.Windows.Common-Controls"
version="6.0.0.0"
processorArchitecture="x86"
publicKeyToken="6595b64144ccf1df"
language="*"
/>
</dependentAssembly>
</dependency>
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v3">
<security>
<requestedPrivileges>
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
</requestedPrivileges>
</security>
</trustInfo>
</assembly>
.
- Follow-Ups:
- Re: Vista problems
- From: Ed Dressel
- Re: Vista problems
- From: Ed Dressel
- Re: Vista problems
- From: Ed Dressel
- Re: Vista problems
- References:
- Vista problems
- From: Ed Dressel
- Vista problems
- Prev by Date: Re: BDS 2007 Date Release?
- Next by Date: Re: BDS 2007 Date Release?
- Previous by thread: Vista problems
- Next by thread: Re: Vista problems
- Index(es):
Relevant Pages
|