Indigo Rose Software

Professional Software Development Tools

 
+ Reply to Thread
Results 1 to 4 of 4

Thread: Vista 32 vs 64

  1. #1
    Join Date
    May 2007
    Posts
    5

    Grin Vista 32 vs 64

    Hi,
    My company has upgraded an older program for Windows XP and Vista, but it still uses the old style help files tha Vista cant read. Microsoft has 2 files that adds back the capabilities of reading these help files. However one is 32 bit and the other is 64 bit. How can I dynamicly find out what the users system is 32 or 64? This will allow me to include a condition for installing the appropriate file. Additionally how can I check if their Vista has allready installed this feature?

  2. #2
    Join Date
    Jun 2000
    Location
    Indigo Rose Software
    Posts
    1,943
    Hi BigGuy,

    You can determine whether or not the operating system is 64-bit by using the System.Is64BitOS() action.

    As far as determining whether or not feature you are referring to is installed or now I'm not sure. Perhaps look at registry keys that are changed or added; or the versions of files that are installed.
    MSI Factory The Next Generation Intelligent Setup Builder

  3. #3
    Join Date
    Jun 2005
    Posts
    470
    If I correctly remember, HTML Help Workshop (free help authoring tool from Microsoft) can import & convert old help projects (.hlp) to the new format (which generates a .chm file).
    Not sure how good is the conversion, but if the result is OK it's maybe better to convert your help to .chm instead of installing files to support the long outdated .hlp format

  4. #4
    Join Date
    Oct 2007
    Location
    Gensokyo
    Posts
    1,324
    Quote Originally Posted by BigGuy View Post
    Hi,
    My company has upgraded an older program for Windows XP and Vista, but it still uses the old style help files tha Vista cant read. Microsoft has 2 files that adds back the capabilities of reading these help files. However one is 32 bit and the other is 64 bit. How can I dynamicly find out what the users system is 32 or 64? This will allow me to include a condition for installing the appropriate file. Additionally how can I check if their Vista has allready installed this feature?
    I would imagine something like this.

    Code:
    if (System.Is64BitOS()) then
      -- 64bit :)
    else
      -- 32bit :)
    end

  5. #5
    Join Date
    May 2007
    Posts
    5

    Star

    Unfortianatly the software is looking for the old file and not the newer help file format, and since the programming firm has exceded the budget twice it has been determined to not change it.

Similar Threads

  1. When will work LUAsocket in win Vista?
    By paul186 in forum AutoPlay Media Studio 7.5 Suggestions
    Replies: 13
    Last Post: 11-14-2009, 01:23 PM
  2. Setups not running on Windows Vista
    By JonK in forum Setup Factory 7.0
    Replies: 9
    Last Post: 01-21-2009, 02:14 AM
  3. Vista Headaches
    By wunder in forum Setup Factory 7.0
    Replies: 11
    Last Post: 03-21-2008, 10:51 PM
  4. Annoying Security and UAC prompts by Vista
    By kraigyb in forum AutoPlay Media Studio 6.0
    Replies: 4
    Last Post: 10-11-2007, 08:20 AM
  5. Vista Gold-RTM - confirm functions
    By Eagle in forum Setup Factory 7.0
    Replies: 10
    Last Post: 12-21-2006, 01:08 PM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts